diff --git a/0x0B-ssh/README.md b/0x0B-ssh/README.md index f48a033..7054266 100644 --- a/0x0B-ssh/README.md +++ b/0x0B-ssh/README.md @@ -6,4 +6,4 @@ - What is SSH - How to create an SSH RSA key pair - How to connect to a remote host using an SSH RSA key pair -- The advantage of using #!/usr/bin/env bash instead of /bin/bash \ No newline at end of file +- The advantage of using #!/usr/bin/env bash instead of /bin/b \ No newline at end of file diff --git a/0x14-mysql/4-mysql_configuration_primary b/0x14-mysql/4-mysql_configuration_primary index c330089..113b8b8 100644 --- a/0x14-mysql/4-mysql_configuration_primary +++ b/0x14-mysql/4-mysql_configuration_primary @@ -1,6 +1,15 @@ +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License, version 2.0, for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + # # The MySQL Server configuration file. # +# For explanations see +# http://dev.mysql.com/doc/mysql/en/server-system-variables.html [mysqld] pid-file = /var/run/mysqld/mysqld.pid @@ -8,12 +17,10 @@ socket = /var/run/mysqld/mysqld.sock datadir = /var/lib/mysql log-error = /var/log/mysql/error.log # By default we only accept connections from localhost -bind-address = 0.0.0.0 -# Disabling symbolic-links is recommended to prevent assorted security risks -symbolic-links=0 -# Distinguish servers in a replication setup +#bind-address = 127.0.0.1 server-id = 1 -# MySQL's Binary Log File log_bin = /var/log/mysql/mysql-bin.log -# Database we want to replicate +# Disabling symbolic-links is recommended to prevent assorted security risks +symbolic-links=0 + binlog_do_db = tyrell_corp diff --git a/0x14-mysql/4-mysql_configuration_replica b/0x14-mysql/4-mysql_configuration_replica index 00dbaaf..ed3393d 100644 --- a/0x14-mysql/4-mysql_configuration_replica +++ b/0x14-mysql/4-mysql_configuration_replica @@ -1,6 +1,7 @@ -# # The MySQL Server configuration file. # +# For explanations see +# http://dev.mysql.com/doc/mysql/en/server-system-variables.html [mysqld] pid-file = /var/run/mysqld/mysqld.pid @@ -8,14 +9,10 @@ socket = /var/run/mysqld/mysqld.sock datadir = /var/lib/mysql log-error = /var/log/mysql/error.log # By default we only accept connections from localhost -bind-address = 127.0.0.1 -# Disabling symbolic-links is recommended to prevent assorted security risks -symbolic-links=0 -# Distinguish servers in a replication setup +# bind-address = 127.0.0.1 server-id = 2 -# MySQL's Binary Log File log_bin = /var/log/mysql/mysql-bin.log -# Database we want to replicate +# Disabling symbolic-links is recommended to prevent assorted security risks +symbolic-links=0 binlog_do_db = tyrell_corp -# Defines the location of the replica's relay log relay-log = /var/log/mysql/mysql-relay-bin.log diff --git a/0x14-mysql/5-mysql_backup b/0x14-mysql/5-mysql_backup index ce204ee..4e42ca6 100755 --- a/0x14-mysql/5-mysql_backup +++ b/0x14-mysql/5-mysql_backup @@ -1,11 +1,5 @@ #!/usr/bin/env bash -# backup and compress my databases +# This script generates a MySQL dump and creates a compressed archive of it -# variables -day=$(date +"%d") -month=$(date +"%m") -year=$(date +"%Y") -file_name="$day-$month-$year.tar.gz" - -mysqldump --all-databases -u root --password="$1" > backup.sql -tar -czvf "$file_name" backup.sql +mysqldump -uroot -p"$1" --all-databases > backup.sql +tar -czf $(date +%d-%m-%Y).tar.gz backup.sql diff --git a/0x14-mysql/README.md b/0x14-mysql/README.md index 6892900..35e8a57 100644 --- a/0x14-mysql/README.md +++ b/0x14-mysql/README.md @@ -1,138 +1 @@ -# 0x14. MySQL - -

- - -## Resource - -- [What is a database](https://searchdatamanagement.techtarget.com/definition/database) -- [What is a database primary/replicate cluster](https://www.digitalocean.com/community/tutorials/how-to-choose-a-redundancy-plan-to-ensure-high-availability#sql-replication) -- [MySQL primary/replicate setup](https://www.digitalocean.com/community/tutorials/how-to-set-up-replication-in-mysql) -- [Build a robust database backup strategy](https://www.databasejournal.com/ms-sql/developing-a-sql-server-backup-strategy/) -- [Privileges Provided by MySQL](https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_replication-client) (***Replication Client***) -- [Creating User for Replication](https://dev.mysql.com/doc/refman/8.0/en/replication-howto-repuser.html) -- [Setting up replicas](https://dev.mysql.com/doc/refman/5.7/en/replication-setup-replicas.html) (***MySQL 5.7.x***) - -## Tasks - -

-0. Install MySQL
-image -
- -
-1. Let us in!
- -image -```sh -mysql> CREATE USER 'holberton_user'@'localhost' IDENTIFIED BY 'projectcorrection280hbtn'; -mysql> GRANT REPLICATION CLIENT ON *.* to 'holberton_user'@'localhost'; -mysql> FLUSH PRIVILEGES; -``` - -
- -
-2. If only you could see what I've seen with your eyes
- -image -```sh -mysql> CREATE DATABASE tyrell_corp; -mysql> USE tyrell_corp; -mysql> CREATE TABLE nexus6 (id INT, name VARCHAR(256)); -mysql> INSERT INTO nexus6 (id, name) VALUES ('1', 'Leon'); -mysql> GRANT SELECT ON tyrell_corp.nexus6 TO 'holberton_user'@'localhost'; -``` - -
- -
-3. Quite an experience to live in fear, isn't it?
- -image -```sh -msql> CREATE USER 'replica_user'@'%' IDENTIFIED BY 'password'; -mysql> GRANT SELECT ON mysql.user TO 'holberton_user'@'localhost'; -mysql> GRANT REPLICATION SLAVE ON *.* TO 'replica_user'@'%'; -``` - -
- -
-4. Setup a Primary-Replica infrastructure using MySQL
- -09e83e914f0d6865ce320a47f2f14837a5b190b6 -image -image -image - -+ [MySQL primary configuration](./4-mysql_configuration_primary) -+ [MySQL replica configuration](./4-mysql_configuration_replica) - -
- -
-5. MySQL backup
- -[![IMAGE ALT TEXT HERE](https://i.postimg.cc/3NtKg0gR/verizon.jpg)](https://www.youtube.com/watch?v=ANU-oSE5_hU) -image - -```sh -ubuntu@03-web-01:~$ ls -5-mysql_backup -ubuntu@03-web-01:~$ ./5-mysql_backup mydummypassword -backup.sql -ubuntu@03-web-01:~$ ls -01-03-2017.tar.gz 5-mysql_backup backup.sql -ubuntu@03-web-01:~$ more backup.sql --- MySQL dump 10.13 Distrib 5.7.25, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: --- ------------------------------------------------------ --- Server version 5.7.25-0ubuntu0.14.04.1 - -/*!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 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!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 */; - --- --- Current Database: `tyrell_corp` --- - -CREATE DATABASE /*!32312 IF NOT EXISTS*/ `tyrell_corp` /*!40100 DEFAULT CHARACTER SET latin1 */; - -USE `tyrell_corp`; - --- --- Table structure for table `nexus6` --- - -DROP TABLE IF EXISTS `nexus6`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `nexus6` ( - `id` int(6) unsigned NOT NULL AUTO_INCREMENT, - `firstname` varchar(30) NOT NULL, - `lastname` varchar(30) NOT NULL, - `email` varchar(50) DEFAULT NULL, - `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; -ubuntu@03-web-01:~$ -ubuntu@03-web-01:~$ file 01-03-2017.tar.gz -01-03-2017.tar.gz: gzip compressed data, from Unix, last modified: Wed Mar 1 23:38:09 2017 -ubuntu@03-web-01:~$ -``` - -+ [Backup script](./5-mysql_backup) - -
+# Solutions to tasks on MySQL diff --git a/0x15-api/0-gather_data_from_an_API.py b/0x15-api/0-gather_data_from_an_API.py old mode 100644 new mode 100755 index 9ab98b2..6f6d8b0 --- a/0x15-api/0-gather_data_from_an_API.py +++ b/0x15-api/0-gather_data_from_an_API.py @@ -1,30 +1,31 @@ #!/usr/bin/python3 -'''A script that gathers employee name completed -tasks and total number of tasks from an API -''' +"""Accessing a REST API for todo lists of employees""" -import re import requests import sys -REST_API = "https://jsonplaceholder.typicode.com" if __name__ == '__main__': - if len(sys.argv) > 1: - if re.fullmatch(r'\d+', sys.argv[1]): - id = int(sys.argv[1]) - emp_req = requests.get('{}/users/{}'.format(REST_API, id)).json() - task_req = requests.get('{}/todos'.format(REST_API)).json() - emp_name = emp_req.get('name') - tasks = list(filter(lambda x: x.get('userId') == id, task_req)) - completed_tasks = list(filter(lambda x: x.get('completed'), tasks)) - print( - 'Employee {} is done with tasks({}/{}):'.format( - emp_name, - len(completed_tasks), - len(tasks) - ) - ) - if len(completed_tasks) > 0: - for task in completed_tasks: - print('\t {}'.format(task.get('title'))) + employeeId = sys.argv[1] + baseUrl = "https://jsonplaceholder.typicode.com/users" + url = baseUrl + "/" + employeeId + + response = requests.get(url) + employeeName = response.json().get('name') + + todoUrl = url + "/todos" + response = requests.get(todoUrl) + tasks = response.json() + done = 0 + done_tasks = [] + + for task in tasks: + if task.get('completed'): + done_tasks.append(task) + done += 1 + + print("Employee {} is done with tasks({}/{}):" + .format(employeeName, done, len(tasks))) + + for task in done_tasks: + print("\t {}".format(task.get('title'))) diff --git a/0x15-api/1-export_to_CSV.py b/0x15-api/1-export_to_CSV.py new file mode 100755 index 0000000..6b2ffb7 --- /dev/null +++ b/0x15-api/1-export_to_CSV.py @@ -0,0 +1,24 @@ +#!/usr/bin/python3 +"""Accessing a REST API for todo lists of employees""" + +import requests +import sys + + +if __name__ == '__main__': + employeeId = sys.argv[1] + baseUrl = "https://jsonplaceholder.typicode.com/users" + url = baseUrl + "/" + employeeId + + response = requests.get(url) + username = response.json().get('username') + + todoUrl = url + "/todos" + response = requests.get(todoUrl) + tasks = response.json() + + with open('{}.csv'.format(employeeId), 'w') as file: + for task in tasks: + file.write('"{}","{}","{}","{}"\n' + .format(employeeId, username, task.get('completed'), + task.get('title'))) diff --git a/0x15-api/2-export_to_JSON.py b/0x15-api/2-export_to_JSON.py new file mode 100755 index 0000000..bd7fb2f --- /dev/null +++ b/0x15-api/2-export_to_JSON.py @@ -0,0 +1,29 @@ +#!/usr/bin/python3 +"""Accessing a REST API for todo lists of employees""" + +import json +import requests +import sys + + +if __name__ == '__main__': + employeeId = sys.argv[1] + baseUrl = "https://jsonplaceholder.typicode.com/users" + url = baseUrl + "/" + employeeId + + response = requests.get(url) + username = response.json().get('username') + + todoUrl = url + "/todos" + response = requests.get(todoUrl) + tasks = response.json() + + dictionary = {employeeId: []} + for task in tasks: + dictionary[employeeId].append({ + "task": task.get('title'), + "completed": task.get('completed'), + "username": username + }) + with open('{}.json'.format(employeeId), 'w') as filename: + json.dump(dictionary, filename) diff --git a/0x15-api/2.csv b/0x15-api/2.csv new file mode 100644 index 0000000..fb6be51 --- /dev/null +++ b/0x15-api/2.csv @@ -0,0 +1,20 @@ +"2","Antonette","False","suscipit repellat esse quibusdam voluptatem incidunt" +"2","Antonette","True","distinctio vitae autem nihil ut molestias quo" +"2","Antonette","False","et itaque necessitatibus maxime molestiae qui quas velit" +"2","Antonette","False","adipisci non ad dicta qui amet quaerat doloribus ea" +"2","Antonette","True","voluptas quo tenetur perspiciatis explicabo natus" +"2","Antonette","True","aliquam aut quasi" +"2","Antonette","True","veritatis pariatur delectus" +"2","Antonette","False","nesciunt totam sit blanditiis sit" +"2","Antonette","False","laborum aut in quam" +"2","Antonette","True","nemo perspiciatis repellat ut dolor libero commodi blanditiis omnis" +"2","Antonette","False","repudiandae totam in est sint facere fuga" +"2","Antonette","False","earum doloribus ea doloremque quis" +"2","Antonette","False","sint sit aut vero" +"2","Antonette","False","porro aut necessitatibus eaque distinctio" +"2","Antonette","True","repellendus veritatis molestias dicta incidunt" +"2","Antonette","True","excepturi deleniti adipisci voluptatem et neque optio illum ad" +"2","Antonette","False","sunt cum tempora" +"2","Antonette","False","totam quia non" +"2","Antonette","False","doloremque quibusdam asperiores libero corrupti illum qui omnis" +"2","Antonette","True","totam atque quo nesciunt" diff --git a/0x15-api/3-dictionary_of_list_of_dictionaries.py b/0x15-api/3-dictionary_of_list_of_dictionaries.py new file mode 100755 index 0000000..a2acb3a --- /dev/null +++ b/0x15-api/3-dictionary_of_list_of_dictionaries.py @@ -0,0 +1,31 @@ +#!/usr/bin/python3 +"""Accessing a REST API for todo lists of employees""" + +import json +import requests +import sys + + +if __name__ == '__main__': + url = "https://jsonplaceholder.typicode.com/users" + + response = requests.get(url) + users = response.json() + + dictionary = {} + for user in users: + user_id = user.get('id') + username = user.get('username') + url = 'https://jsonplaceholder.typicode.com/users/{}'.format(user_id) + url = url + '/todos/' + response = requests.get(url) + tasks = response.json() + dictionary[user_id] = [] + for task in tasks: + dictionary[user_id].append({ + "task": task.get('title'), + "completed": task.get('completed'), + "username": username + }) + with open('todo_all_employees.json', 'w') as file: + json.dump(dictionary, file) diff --git a/0x15-api/README.md b/0x15-api/README.md index 2f2670b..a5250f1 100644 --- a/0x15-api/README.md +++ b/0x15-api/README.md @@ -1,17 +1 @@ -# 0x15. API - -## Resource - -- [Friends don’t let friends program in shell script](https://www.turnkeylinux.org/blog/friends-dont-let-friends-program-shell-script) -- [What is an API](https://www.webopedia.com/definitions/api/) -- [What is an API? In English, please](https://www.freecodecamp.org/news/what-is-an-api-in-english-please-b880a3214a82/) -- [What is a REST API](https://www.sitepoint.com/rest-api/) -- [What are microservices](https://smartbear.com/solutions/microservices/) -- [PEP8 Python style - having a clean code respecting style guide is really appreciated in the industry](https://www.python.org/dev/peps/pep-0008/) - -## Tasks - -
-0. Gather data from an API
-image -
+# Solutions to tasks on 0x15. API diff --git a/0x16-api_advanced/0-subs.py b/0x16-api_advanced/0-subs.py old mode 100644 new mode 100755 index 38874ce..2a5ff5e --- a/0x16-api_advanced/0-subs.py +++ b/0x16-api_advanced/0-subs.py @@ -1,17 +1,27 @@ #!/usr/bin/python3 """ -Contains the number_of_subscribers function +number of subscribers for a given subreddit """ -import requests +from requests import get def number_of_subscribers(subreddit): - """returns the number of subscribers for a given subreddit""" - if subreddit is None or type(subreddit) is not str: + """ + function that queries the Reddit API and returns the number of subscribers + (not active users, total subscribers) for a given subreddit. + """ + + if subreddit is None or not isinstance(subreddit, str): + return 0 + + user_agent = {'User-agent': 'Google Chrome Version 81.0.4044.129'} + url = 'https://www.reddit.com/r/{}/about.json'.format(subreddit) + response = get(url, headers=user_agent) + results = response.json() + + try: + return results.get('data').get('subscribers') + + except Exception: return 0 - r = requests.get('http://www.reddit.com/r/{}/about.json'.format(subreddit), - headers={'User-Agent': '0x16-api_advanced:project:\ -v1.0.0 (by /u/firdaus_cartoon_jr)'}).json() - subs = r.get("data", {}).get("subscribers", 0) - return subs diff --git a/0x16-api_advanced/1-top_ten.py b/0x16-api_advanced/1-top_ten.py old mode 100644 new mode 100755 index 23ab6cc..b1ae443 --- a/0x16-api_advanced/1-top_ten.py +++ b/0x16-api_advanced/1-top_ten.py @@ -1,22 +1,33 @@ #!/usr/bin/python3 -"""Contains top_ten function""" -import requests + +""" +prints the titles of the first 10 hot posts listed for a given subreddit +""" + +from requests import get def top_ten(subreddit): - """Print the titles of the 10 hottest posts on a given subreddit.""" - url = "https://www.reddit.com/r/{}/hot/.json".format(subreddit) - headers = { - "User-Agent": "0x16-api_advanced:project:\ -v1.0.0 (by /u/firdaus_cartoon_jr)" - } - params = { - "limit": 10 - } - response = requests.get(url, headers=headers, params=params, - allow_redirects=False) - if response.status_code == 404: + """ + function that queries the Reddit API and prints the titles of the first + 10 hot posts listed for a given subreddit + """ + + if subreddit is None or not isinstance(subreddit, str): + print("None") + + user_agent = {'User-agent': 'Google Chrome Version 81.0.4044.129'} + params = {'limit': 10} + url = 'https://www.reddit.com/r/{}/hot/.json'.format(subreddit) + + response = get(url, headers=user_agent, params=params) + results = response.json() + + try: + my_data = results.get('data').get('children') + + for i in my_data: + print(i.get('data').get('title')) + + except Exception: print("None") - return - results = response.json().get("data") - [print(c.get("data").get("title")) for c in results.get("children")] diff --git a/0x16-api_advanced/100-count.py b/0x16-api_advanced/100-count.py old mode 100644 new mode 100755 index cc50b04..12963b4 --- a/0x16-api_advanced/100-count.py +++ b/0x16-api_advanced/100-count.py @@ -1,43 +1,54 @@ #!/usr/bin/python3 -"""Contains the count_words function""" +""" raddit api""" + +import json import requests -def count_words(subreddit, word_list, found_list=[], after=None): - '''Prints counts of given words found in hot posts of a given subreddit. - - Args: - subreddit (str): The subreddit to search. - word_list (list): The list of words to search for in post titles. - found_list (obj): Key/value pairs of words/counts. - after (str): The parameter for the next page of the API results. - ''' - user_agent = {'User-agent': 'test45'} - posts = requests.get('http://www.reddit.com/r/{}/hot.json?after={}' - .format(subreddit, after), headers=user_agent) - if after is None: - word_list = [word.lower() for word in word_list] - - if posts.status_code == 200: - posts = posts.json()['data'] - aft = posts['after'] - posts = posts['children'] - for post in posts: - title = post['data']['title'].lower() - for word in title.split(' '): - if word in word_list: - found_list.append(word) - if aft is not None: - count_words(subreddit, word_list, found_list, aft) +def count_words(subreddit, word_list, after="", count=[]): + """count all words""" + + if after == "": + count = [0] * len(word_list) + + url = "https://www.reddit.com/r/{}/hot.json".format(subreddit) + request = requests.get(url, + params={'after': after}, + allow_redirects=False, + headers={'user-agent': 'bhalut'}) + + if request.status_code == 200: + data = request.json() + + for topic in (data['data']['children']): + for word in topic['data']['title'].split(): + for i in range(len(word_list)): + if word_list[i].lower() == word.lower(): + count[i] += 1 + + after = data['data']['after'] + if after is None: + save = [] + for i in range(len(word_list)): + for j in range(i + 1, len(word_list)): + if word_list[i].lower() == word_list[j].lower(): + save.append(j) + count[i] += count[j] + + for i in range(len(word_list)): + for j in range(i, len(word_list)): + if (count[j] > count[i] or + (word_list[i] > word_list[j] and + count[j] == count[i])): + aux = count[i] + count[i] = count[j] + count[j] = aux + aux = word_list[i] + word_list[i] = word_list[j] + word_list[j] = aux + + for i in range(len(word_list)): + if (count[i] > 0) and i not in save: + print("{}: {}".format(word_list[i].lower(), count[i])) else: - result = {} - for word in found_list: - if word.lower() in result.keys(): - result[word.lower()] += 1 - else: - result[word.lower()] = 1 - for key, value in sorted(result.items(), key=lambda item: item[1], - reverse=True): - print('{}: {}'.format(key, value)) - else: - return + count_words(subreddit, word_list, after, count) diff --git a/0x16-api_advanced/2-recurse.py b/0x16-api_advanced/2-recurse.py old mode 100644 new mode 100755 index a113c96..af39549 --- a/0x16-api_advanced/2-recurse.py +++ b/0x16-api_advanced/2-recurse.py @@ -1,31 +1,28 @@ #!/usr/bin/python3 -"""Contains recurse function""" +""" +Using reddit's API +""" import requests +after = None -def recurse(subreddit, hot_list=[], after="", count=0): - """Returns a list of titles of all hot posts on a given subreddit.""" - url = "https://www.reddit.com/r/{}/hot/.json".format(subreddit) - headers = { - "User-Agent": "0x16-api_advanced:project:\ -v1.0.0 (by /u/firdaus_cartoon_jr)" - } - params = { - "after": after, - "count": count, - "limit": 100 - } - response = requests.get(url, headers=headers, params=params, - allow_redirects=False) - if response.status_code == 404: - return None +def recurse(subreddit, hot_list=[]): + """returning top ten post titles recursively""" + global after + user_agent = {'User-Agent': 'api_advanced-project'} + url = "https://www.reddit.com/r/{}/hot.json".format(subreddit) + parameters = {'after': after} + results = requests.get(url, params=parameters, headers=user_agent, + allow_redirects=False) - results = response.json().get("data") - after = results.get("after") - count += results.get("dist") - for c in results.get("children"): - hot_list.append(c.get("data").get("title")) - - if after is not None: - return recurse(subreddit, hot_list, after, count) - return hot_list + if results.status_code == 200: + after_data = results.json().get("data").get("after") + if after_data is not None: + after = after_data + recurse(subreddit, hot_list) + all_titles = results.json().get("data").get("children") + for title_ in all_titles: + hot_list.append(title_.get("data").get("title")) + return hot_list + else: + return (None) diff --git a/0x16-api_advanced/README.md b/0x16-api_advanced/README.md index f140b5b..3cdc06e 100644 --- a/0x16-api_advanced/README.md +++ b/0x16-api_advanced/README.md @@ -1,12 +1 @@ -# 0x16. API advanced -In this project, I practice with the [Reddit API](https://www.reddit.com/dev/api/)'s many endpoints. There’s a lot of endpoints available, many that don’t require any form of authentication, and there’s tons of information to be parsed out and presented. - -## Learned -- How to read API documentation to find the endpoints you’re looking for -- How to use an API with pagination -- How to parse JSON results from an API -- How to make a recursive API call -- How to sort a dictionary by value - -## Resources -+ [Reddit API](https://www.reddit.com/dev/api/) \ No newline at end of file +# Solutions to tasks on 0x16. API advanced diff --git a/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp b/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp old mode 100644 new mode 100755 index 1971a17..1607328 --- a/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp +++ b/0x17-web_stack_debugging_3/0-strace_is_your_friend.pp @@ -1,6 +1,10 @@ -# Fixes bad `phpp` extensions to `php` +# A puppet manuscript to replace a line in a file on a server -exec { 'fix-wordpress': - command => 'sed -i s/phpp/php/g /var/www/html/wp-settings.php', - path => '/usr/local/bin/:/bin/' +$file_to_edit = '/var/www/html/wp-settings.php' + +#replace line containing "phpp" with "php" + +exec { 'replace_line': + command => "sed -i 's/phpp/php/g' ${file_to_edit}", + path => ['/bin','/usr/bin'] } diff --git a/0x17-web_stack_debugging_3/README.md b/0x17-web_stack_debugging_3/README.md index 72c784f..ea2bff5 100644 --- a/0x17-web_stack_debugging_3/README.md +++ b/0x17-web_stack_debugging_3/README.md @@ -1,3 +1 @@ -# 0x17. Web stack debugging #3 -This was the fourth project in a series of web stack debugging projects. In these projects, I was given broken/bugged webstacks in isolated containers, and asked to fix them to a working state. For each task, I wrote a script automating the commands necessary to fix the -web stack. +# Solution to tasks on 0x17. Web stack debugging #3 diff --git a/0x18-webstack_monitoring/.gitignore b/0x18-webstack_monitoring/.gitignore new file mode 100644 index 0000000..2eea525 --- /dev/null +++ b/0x18-webstack_monitoring/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/0x18-webstack_monitoring/2-setup_datadog b/0x18-webstack_monitoring/2-setup_datadog new file mode 100644 index 0000000..18128cf --- /dev/null +++ b/0x18-webstack_monitoring/2-setup_datadog @@ -0,0 +1 @@ +2uj-4wb-rx8 diff --git a/0x18-webstack_monitoring/README.md b/0x18-webstack_monitoring/README.md index e69de29..7d3a48e 100644 --- a/0x18-webstack_monitoring/README.md +++ b/0x18-webstack_monitoring/README.md @@ -0,0 +1 @@ +# Solutions to tasks on 0x18. Webstack monitoring diff --git a/alx-system_engineering-devops-main/.gitignore b/alx-system_engineering-devops-main/.gitignore deleted file mode 100644 index e4e5f6c..0000000 --- a/alx-system_engineering-devops-main/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*~ \ No newline at end of file diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory b/alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory deleted file mode 100755 index 1cc8df5..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/0-current_working_directory +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -pwd diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/1-listit b/alx-system_engineering-devops-main/0x00-shell_basics/1-listit deleted file mode 100755 index 98bee2d..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/1-listit +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/10-back b/alx-system_engineering-devops-main/0x00-shell_basics/10-back deleted file mode 100755 index fdccc55..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/10-back +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cd - diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move b/alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move deleted file mode 100755 index 713084d..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/100-lets_move +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mv [[:upper:]]* /tmp/u/ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs b/alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs deleted file mode 100755 index aaea1e2..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/101-clean_emacs +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rm *~ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/102-tree b/alx-system_engineering-devops-main/0x00-shell_basics/102-tree deleted file mode 100755 index ff13cac..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/102-tree +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mkdir -p welcome/to/holberton diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/103-commas b/alx-system_engineering-devops-main/0x00-shell_basics/103-commas deleted file mode 100755 index 7485eee..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/103-commas +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -amp | sort -d diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/11-lists b/alx-system_engineering-devops-main/0x00-shell_basics/11-lists deleted file mode 100755 index bc6c4fc..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/11-lists +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -la . .. /boot diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/12-file_type b/alx-system_engineering-devops-main/0x00-shell_basics/12-file_type deleted file mode 100755 index 6787573..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/12-file_type +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -file /tmp/iamafile diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link b/alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link deleted file mode 100755 index 4bec017..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/13-symbolic_link +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ln -s /bin/ls __ls__ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html b/alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html deleted file mode 100755 index 0576c4d..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/14-copy_html +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cp -un *.html ../ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home b/alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home deleted file mode 100755 index b1e4921..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/2-bring_me_home +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cd ~ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles b/alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles deleted file mode 100755 index 8f1e103..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/3-listfiles +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -l diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles b/alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles deleted file mode 100755 index 681d1f0..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/4-listmorefiles +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -la diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly b/alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly deleted file mode 100755 index d2ab274..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/5-listfilesdigitonly +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -lan diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory b/alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory deleted file mode 100755 index 31fbd3b..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/6-firstdirectory +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mkdir /tmp/holberton diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile b/alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile deleted file mode 100755 index 7e716fc..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/7-movethatfile +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mv /tmp/betty /tmp/holberton/ diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete b/alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete deleted file mode 100755 index b112870..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/8-firstdelete +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rm /tmp/holberton/betty diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion b/alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion deleted file mode 100755 index c27d72b..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/9-firstdirdeletion +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rmdir /tmp/holberton diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/README.md b/alx-system_engineering-devops-main/0x00-shell_basics/README.md deleted file mode 100644 index 42d2b59..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# 0x00 Shell Basics - -## Resources - -- LinuxCommand.org [What is "the Shell"?](http://linuxcommand.org/lc3_lts0010.php). -- [Read the Manual](http://linuxcommand.org/lc3_man_pages/man1.html). -- [Keyboard Shortcuts for Bash](https://www.howtogeek.com/howto/ubuntu/keyboard-shortcuts-for-bash-command-shell-for-ubuntu-debian-suse-redhat-linux-etc/). - -## Tasks - -0. [Where am I?](./0-current_working_directory) : A script that prints the absolute path of the current working directory. -1. [What's in there?](./1-listit) : A script that displays the contents of your current directory. -2. [There is no place like home](./2-bring_me_home) : A script that changes the working directory to the user's home directory. -3. [The long format](./3-listfiles) : A script that displays the current directory contents in a long format. -4. [Hidden files](./4-listmorefiles) : A script that displays the current directory contents including hidden files. -5. [I loce numbers](./5-listfilesdigitonly) : A script that displays the current directory contents, using long format, while displaying group IDs in numeral and show hidden files. -6. [Welcome holberton](./6-firstdirectory) : A script that will create a directory named `holberton` in the `/tmp/` directory. -7. [Betty in Holberton](./7-movethatfile) : A scipt that will move a file called `betty` from home to the new directory created above. -8. [Bye bye Betty](./8-firstdelete) : A script that will delete file `betty` from the new location. -9. [Bye bye Holberton](./9-firstdirdeletion) : A script that will delete the directory `holberton` that is in the `/tmp/` directory path. -10. [Back to the future](./10-back) Change working directory to the previous one. -11. [Lists](./11-lists) List all files (*even ones with names beginning with a period character, which are normally hidden*) in the current directory and the parent of the working directory and the /boot directory (in this order), in long format. -12. [File type](./12-file_type) A script that prints the type of the named file `iamafile`. The `iamafile` will be in the `/tmp/` directory when we will run your script. -13. [We are symbols, and inhabit symbols](./13-symbolic_link) Create a symbolic link to `/bin/ls`, named `__ls__`. The symbolic link should be created in the current working directory. -14. [Copy HTML files](./14-copy_html) Create a script that copies all `html` files from the current working directory to the parent working directory while only copying files that did not exist. -15. [Let's move](./100-lets_move) A script that moves all files beginning with an uppercase letter to the directory `/tmp/u`. -16. [Clean Emacs](./101-clean_emacs) A script that deletes all files in the current directory that end with the character `~`. -17. [Tree](./102-tree) A script that creates the directory `welcome/`, `welcome/to/` and `welcome/to/holberton`. -18. [Life is a series of commas, not periods](./103-commas) A script that lists all the files and directories of the current directory separated by commas `,`. -19. [File type: Holberton](./holberton.mgc) Create a magic file `holberton.mgc` that can be used with the command `file` to detect `Holberton` data files always contain the string `HOLBERTON` at offset 0. diff --git a/alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc b/alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc deleted file mode 100644 index 9411df5..0000000 --- a/alx-system_engineering-devops-main/0x00-shell_basics/holberton.mgc +++ /dev/null @@ -1,2 +0,0 @@ -0 string HOLBERTON Holberton data -!:mime Holberton \ No newline at end of file diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty b/alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty deleted file mode 100755 index 6498dd1..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/0-iam_betty +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -su betty diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i b/alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i deleted file mode 100755 index de2c513..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/1-who_am_i +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -whoami diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions deleted file mode 100755 index e4e179d..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/10-mirror_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod --reference=olleh hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group b/alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group deleted file mode 100755 index 19c9c7e..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/100-change_owner_and_group +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown betty:holberton * diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions deleted file mode 100755 index 58b5dff..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/101-symbolic_link_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown -h betty:holberton _hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only b/alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only deleted file mode 100755 index 1ce0748..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/102-if_only +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown --from=guillaume betty hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars b/alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars deleted file mode 100755 index 9438403..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/103-Star_Wars +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -telnet towel.blinkenlights.nl diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions deleted file mode 100755 index d874e3d..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/11-directories_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod -R +X . diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions deleted file mode 100755 index 46d9641..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/12-directory_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -mkdir -m 751 dir_holberton diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group b/alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group deleted file mode 100755 index 83c35d4..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/13-change_group +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chgrp holberton hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/2-groups b/alx-system_engineering-devops-main/0x01-shell_permissions/2-groups deleted file mode 100755 index 287fd07..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/2-groups +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -groups diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner b/alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner deleted file mode 100755 index 4a0f10c..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/3-new_owner +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chown betty hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/4-empty b/alx-system_engineering-devops-main/0x01-shell_permissions/4-empty deleted file mode 100755 index 81a2af0..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/4-empty +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -touch hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/5-execute b/alx-system_engineering-devops-main/0x01-shell_permissions/5-execute deleted file mode 100755 index fe1c51a..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/5-execute +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod u+x hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions b/alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions deleted file mode 100755 index ff570ab..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/6-multiple_permissions +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod ug+x,o+r hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody b/alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody deleted file mode 100755 index 71c316b..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/7-everybody +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod +x hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond b/alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond deleted file mode 100755 index e0a2c60..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/8-James_Bond +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod 007 hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe b/alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe deleted file mode 100755 index 255b32c..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/9-John_Doe +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -chmod 753 hello diff --git a/alx-system_engineering-devops-main/0x01-shell_permissions/README.md b/alx-system_engineering-devops-main/0x01-shell_permissions/README.md deleted file mode 100644 index a72bad1..0000000 --- a/alx-system_engineering-devops-main/0x01-shell_permissions/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# 0x01 Shell Permissions - -## Resources - -- LinuxCommand.org [Permissions](http://linuxcommand.org/lc3_lts0090.php). - -## Tasks - -0. [My name is Betty](./0-iam_betty) : A script that switches the current user to the user betty. -1. [Who am I](./1-who_am_i) : A script that prints the effective username of the current user. -2. [Groups](./2-groups) : A script that prints all the groups the current user is part of. -3. [New owner](./3-new_owner) : A script that changes the owner of the file `hello` to the user `betty`. -4. [Empty!](./4-empty) : A script that creates an empty file called `hello`. -5. [Execute](./5-execute) : A script that adds execute permission to the owner of the file `hello`. -6. [Multiple permissions](./6-multiple_permissions) : A script that adds execute permission to the owner and the group owner, and read permission to the other users, to the file `hello`. -7. [Everybody!](./7-everybody) : A script that adds execution permissions to the owner, the group owner and the other users, to the file `hello`. -8. [James Bond](./8-James_Bond) : A script that gives the gives the rest of the users permission and removes all permission for the owner and the group owner. -9. [John Doe](./9-John_Doe) : A script that sets the mode of the file `hello`; where owner has all the permissions set, group owner has execute permissions set and others have only write and read permissions set. -10. [Look in the mirror](./10-mirror_permissions) : A script that sets the mode of the file `hello` the same as `olleh`'s mode. -11. [Directories](./11-directories_permissions) : A script that adds execute permission to all subdirectories of the current directory for the owner, the group owner and all other users. (**NB:** *Regular files should not be changed.*) -12. [More directories](./12-directory_permissions) : A script that creates a directory called `dir_holberton` with permissions **751** in the working directory. -13. [Change group](./13-change_group) : A script that changes the group owner to `holberton` for the file `hello`. -14. [Owner and group](./100-change_owner_and_group) : A script that changes the owner to `betty` and the group owner to `holberton` for all the files and directories in the working directory. -15. [Symbolic links](./101-symbolic_link_permissions) : A script that changes the owner and the group owner of `_hello` to `betty` and `holberton` respectively. -16. [If only](./102-if_only) : A script that changes the owner of the file `hello` to `betty` only if it is owned by the user `guillaume`. -17. [Star Wars](./103-Star_Wars) : A script that will play the StarWars IV episode in the terminal. diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world b/alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world deleted file mode 100755 index 49374d2..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/0-hello_world +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "Hello, World" diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley b/alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley deleted file mode 100755 index 390d0dc..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/1-confused_smiley +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "\"(Ôo)'" diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js b/alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js deleted file mode 100755 index ebc652d..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/10-no_more_js +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find . -name '*.js' -type f -delete diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks b/alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks deleted file mode 100755 index e0499ab..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/100-empty_casks +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find . -empty -printf '%f\n' diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs b/alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs deleted file mode 100755 index 8220d84..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/101-gifs +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find -type f -name "*.gif" | rev | cut -d "/" -f 1 | cut -d '.' -f 2- | rev | LC_ALL=C sort -f diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic b/alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic deleted file mode 100755 index 631604a..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/102-acrostic +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cut -c 1 | paste -s -d '' diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan b/alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan deleted file mode 100755 index 40d2824..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/103-the_biggest_fan +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tail -n +2 | cut -f -1 | sort -k 1 | uniq -c | sort -rnk 1 | head -n 11 | rev | cut -d ' ' -f -1 | rev diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/11-directories b/alx-system_engineering-devops-main/0x02-shell_redirections/11-directories deleted file mode 100755 index 02299ab..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/11-directories +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -find . -mindepth 1 -type d | wc -l diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files b/alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files deleted file mode 100755 index 6a6a461..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/12-newest_files +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -t | head -n 10 diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/13-unique b/alx-system_engineering-devops-main/0x02-shell_redirections/13-unique deleted file mode 100755 index 00b10f2..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/13-unique +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -sort | uniq -u diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword b/alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword deleted file mode 100755 index 6b55880..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/14-findthatword +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep root /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword b/alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword deleted file mode 100755 index 61394c6..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/15-countthatword +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep bin /etc/passwd | wc -l diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext b/alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext deleted file mode 100755 index 9ee01aa..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/16-whatsnext +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep -A 3 'root' /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword b/alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword deleted file mode 100755 index 71d8734..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/17-hidethisword +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep -v bin /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly b/alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly deleted file mode 100755 index 2df0ed6..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/18-letteronly +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -grep '^[[:upper:]]\|^[[:lower:]]' /etc/ssh/sshd_config diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ b/alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ deleted file mode 100755 index 4bf04da..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/19-AZ +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tr Ac Ze diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile b/alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile deleted file mode 100755 index 20d5e78..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/2-hellofile +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago b/alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago deleted file mode 100755 index 476c997..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/20-hiago +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tr -d cC diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse b/alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse deleted file mode 100755 index e7693b4..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/21-reverse +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -rev diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes b/alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes deleted file mode 100755 index 16eff19..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/22-users_and_homes +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cut -d':' -f1,6 /etc/passwd | sort diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles b/alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles deleted file mode 100755 index 8884376..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/3-twofiles +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat /etc/{passwd,hosts} diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines b/alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines deleted file mode 100755 index b945269..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/4-lastlines +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tail -n 10 /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines b/alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines deleted file mode 100755 index b90c1ed..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/5-firstlines +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -head -n 10 /etc/passwd diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line b/alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line deleted file mode 100755 index 3680acd..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/6-third_line +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat iacta | head -n 3 | tail -n 1 diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/7-file b/alx-system_engineering-devops-main/0x02-shell_redirections/7-file deleted file mode 100755 index b0727e7..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/7-file +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "Holberton School" > "\*\\\'\"Holberton School\"\'\\\*$\?\*\*\*\*\*:)" diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state b/alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state deleted file mode 100755 index 3297f82..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/8-cwd_state +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ls -la > ls_cwd_content diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line b/alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line deleted file mode 100755 index a62cfaf..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/9-duplicate_last_line +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tail -n 1 iacta >> iacta diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/README.md b/alx-system_engineering-devops-main/0x02-shell_redirections/README.md deleted file mode 100644 index 78ac851..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/README.md +++ /dev/null @@ -1,65 +0,0 @@ -# 0x002 Shell, I/O Redirections and Filters - -## Resources - -- LinuxCommand.Org [I/O Redirection](http://linuxcommand.org/lc3_lts0070.php). -- BashGuide [SpecialCharacters](http://mywiki.wooledge.org/BashGuide/SpecialCharacters). - -## Tasks - -0. [Hello World](./0-hello_world) : A script that prints `Hello, World`, followed by a new line to the standard output. -1. [Confused smiley](./1-confused_smiley) : A script that displays a confused smiley: `"(Ôo)'`. -2. [Let's display a file](./2-hellofile) : A script that displays the content of the `/etc/passwd` file. -3. [What about 2?](./3-twofiles) : A scipt that displays content of `/etc/passwd` and `/etc/hosts`. -4. [Last lines of a file](./4-lastlines) : A script that displays the last 10 lines of `/etc/passwd`. -5. [I'd prefer the first ones actually](./5-firstlines) : A scipt that displays the first 10 lines of `etc/passwd`. -6. [Line #2](./6-third_line) : A script that displays the third line of the file `iacta`. - - The file `iacta` will be in the working directory and you are not allowed to use `sed`. -7. [It is a good file that cuts iron without making a noise](./7-file) : A script that creates a file named exactly `\*\\'"Holberton School"\'\\*$\?\*\*\*\*\*:)` containing the text `Holberton School` ending by a new line. - - For this challenge, remember to use a single backslash `\` to escape special characters and double backslash `\\` to escape the backslash itself. -8. [Save current state of directory](./8-cwd_state) : A script that writes into the file `ls_cwd_content` the result of the command `ls -la`. If the file `ls_cwd_content` already exists, it should be overwritten. If the file `ls_cwd_content`does not exist, create it. -9. [Duplicate last line](./9-duplicate_last_line) : A script that duplicates the last line of the file `iacta`. -10. [No more javascript](./10-no_more_js) : A script that deletes all the regular files (not the directories) with a `.js` extension that are present in the current directory and all its subfolders. -11. [Don't just count your directories, make your directories count](./11-directories) : A script that counts the number of directories and sub-directories in the current directory. - - The current and present directories should not be taken into account. - - Hidden directories should be counted. - - **Solution:** `mindepth 1` ; To exclude root directory - - **Others:** `maxdepth 1` ; To avoid parsing sub directories. (*you may need this in future.*) -12. [Whats12's new](./12-newest_files) : A script that prints the 10 newest files in the current directory. - - The output should be; one file per line and sorted from the newest to the oldest. -13. [Being unique is better than being perfect](./13-unique) : A script that takes a list of words as input and prints only words that appear exactly once. - - Input and Output format is; `One word per line`. - - Words should be sorted. (use this [list](./list) as your input to see if the challenge will work. 😊) `cat list | ./13-unique` -14. [It must be in that file](./14-findthatword) : A script that prints lines containing the pattern `"root"` from the file `/etc/passwd`. -15. [Count that word](./15-countthatword) : A script that displays the number of lines that contain the pattern `"bin"` in the file `/etc/passwd`. -16. [What's next?](./16-whatsnext) : A script that containing the pattern `"root"` and 3 lines after them in the file `/etc/passwd`. - - `B` : This shows the lines before your pattern match. - - `A` : This shows the lines after your pattern match. -17. [I hate bins](./17-hidethisword) : A script that displays all the lines in the file `/etc/passwd` that do not contain the pattern `"bin"`. -18. [Letters only please](./18-letteronly) : A script that displays all lines of the file `/ect/ssh/sshd_config` starting with a letter, including capital letters as well. - - This also works : `grep ^[[:alpha:]] /etc/ssh/sshd_config` -19. [A to Z](./19-AZ) : A script that replaces all characters `A` and `C` from input to `Z` and `E` respectively. -20. [Without C, you would live in hiago](./20-hiago) : A script that removes all letters `c` and `C` from input. -21. [esreveR](./21-reverse) : A script that reverse its input. -22. [DJ Cut Killer](./22-users_and_homes) : A scipt that displays all users and their home directories, sorted by users, based on the `/etc/passwd` file. -23. [Empty casks make the most noise](./100-empty_casks) : A script that finds all empty files and directories in the current directory and all sub-directories. - - Only names of the files and directories should be displayed (not the entire path.) - - Hidden files should be listed also, one file name per line and the listing should end with a new line. - - You are not allowed to use `basename`, `grep`, `egrep`, `fgrep` or `rgrep`. -24. [A gif is worth ten thousand words](./101-gifs) : A script that lists all the files with a `.gif` extension in the current directory and all its sub-directories. - - Hidden files should be listed. - - Only regular files (not directories) should be listed. - - The names of the files should be displayed without their extensions. - - The files should be sorted by byte values, but case-insensitive (file `aaa` should be listed before file `bbb`, file `.b` should be listed before file `a`, and file `Rona` should be listed after file `jay`) - - One file name per line. - - The listing should end with a new line. - - You are not allowed to use `basename`, `grep`, `egrep`, `fgrep` or `rgrep`. -25. [Acrostic](./102-acrostic) : A script that decodes acrostics that use the first letter of each line. - - What to decode: `An acrostic is a poem (or other form of writing) in which the first letter (or syllable, or word) of each line (or paragraph, or other recurring feature in the text) spells out a word, message or the alphabet. The word comes from the French acrostiche from post-classical Latin acrostichis). As a form of constrained writing, an acrostic can be used as a mnemonic device to aid memory retrieval.` [Read more here](https://en.wikipedia.org/wiki/Acrostic) - - The **‘decoded’** message has to end with a new line. - - You are not allowed to use `grep`, `egrep`, `fgrep` or `rgrep`. -26. [The biggest fan](./103-the_biggest_fan) : A script that parses web servers logs in TSV format as input and displays the 11 hosts or IP addresses which did the most requests. - - Download this file: `wget http://indeedeng.github.io/imhotep/files/nasa_19950801.tsv` - - Run command this way: `./103-the_biggest_fan < nasa_19950801.tsv`. - - Order by number of requests, most active host or IP at the top. - - You are not allowed to use `grep`, `egrep`, `fgrep` or `rgrep`. diff --git a/alx-system_engineering-devops-main/0x02-shell_redirections/list b/alx-system_engineering-devops-main/0x02-shell_redirections/list deleted file mode 100644 index ac0cdc8..0000000 --- a/alx-system_engineering-devops-main/0x02-shell_redirections/list +++ /dev/null @@ -1,26 +0,0 @@ -C# -C -Javascript -Perl -PHP -PHP -ASP -R -Go -C# -C++ -R -Perl -Javascript -Javascript -Python -Javascript -Javascript -Javascript -Java -Java -Python -Javascript -Javascript -Javascript -ASP diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias deleted file mode 100755 index 73a0817..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/0-alias +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -alias ls="rm *" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you deleted file mode 100755 index 43db6b7..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/1-hello_you +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo "hello $USER" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath deleted file mode 100755 index 3066f64..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/10-love_exponent_breath +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $(($BREATH ** $LOVE)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal deleted file mode 100755 index 95a64a2..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/100-decimal_to_hexadecimal +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printf "%x\n" $DECIMAL diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 deleted file mode 100755 index 3879ef6..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/101-rot13 +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -tr 'A-Za-z' 'N-ZA-Mn-za-m' diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd deleted file mode 100755 index ee135d0..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/102-odd +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -paste -d, - - | cut -d, -f1 diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir deleted file mode 100755 index a24b73e..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/103-water_and_stir +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printf "%o\n" $(( $((5#$(echo $WATER | tr water 01234))) + $((5#$(echo $STIR | tr stir. 01234))) )) | tr 01234567 behlnort diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal deleted file mode 100755 index 8fe10be..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/11-binary_to_decimal +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $((2#$BINARY)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations deleted file mode 100755 index a46d40f..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/12-combinations +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo {a..z}{a..z} | tr ' ' '\n' | grep -v 'oo' diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float deleted file mode 100755 index 9216256..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/13-print_float +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printf "%.2f\n" $NUM diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path deleted file mode 100755 index d49d8eb..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/2-path +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -export PATH=${PATH}:/action diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths deleted file mode 100755 index f6b3350..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/3-paths +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $PATH | tr ":" "\n" | wc -l diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables deleted file mode 100755 index bcca9bc..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/4-global_variables +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -printenv diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables deleted file mode 100755 index deebf45..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/5-local_variables +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -declare diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable deleted file mode 100755 index 2981bb8..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/6-create_local_variable +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -BETTY="Holberton" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable deleted file mode 100755 index 2b76fd0..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/7-create_global_variable +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -export HOLBERTON="Betty" diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge deleted file mode 100755 index 064983f..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/8-true_knowledge +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $(($TRUEKNOWLEDGE + 128)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule deleted file mode 100755 index 9cc10ce..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/9-divide_and_rule +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -echo $(($POWER / $DIVIDE)) diff --git a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md b/alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md deleted file mode 100644 index e53a90e..0000000 --- a/alx-system_engineering-devops-main/0x03-shell_variables_expansions/README.md +++ /dev/null @@ -1,58 +0,0 @@ -# 0x03 Shell, init files, variables and expansions - -## Resources - -- Shell [Expansion](http://linuxcommand.org/lc3_lts0080.php). -- Shell [Arithmetic](https://www.gnu.org/software/bash/manual/html_node/Shell-Arithmetic.html). -- Bash [Variable](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_02.html). -- Bash [Shell initialization files](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_01.html). -- [The alias Command](http://www.linfo.org/alias.html). - -## Tasks - -0. [\](./0-alias) : A script that creates an alias. - - Name of alias: `ls` - - Value: `rm *` -1. [Hello you](./1-hello_you) : A script that prints `hello user`, where user is the current Linux user. -2. [The path to success is to take massive, determined action](./2-path) : A script that adds `/action` to the `PATH`. `/action` should be the last directory the shell looks into when looking for a program. -3. [If the path be beautiful, let us not ask where it leads](./3-paths) : A script that counts the number of directories in the `PATH`. -4. [Global variables](./4-global_variables) : A script that prints all the enviroment variables. -5. [Local variables ](./5-local_variables) : A script that lists all local variables and enviroment variables, and functions. - - Name of variable : `HOLBERTON` - - Value : `Betty` -6. [Local variable](./6-create_local_variable) : A script that creates a new local variable. -7. [Global variable](./7-create_global_variable) : A script that creates a new global variable. - - Name of variable : `HOLBERTON` - - Value : `Betty` -8. [Every addition to true knowledge is an addition to human power](./8-true_knowledge) : A script that prints the results of the addition of 128 with the value stored in the enviroment variable `TRUEKNOWLEDGE`, followed by a new line. - - Remember to export variable TRUEKNOWLEDGE : `export TRUEKNOWLEDGE=1209` - - Run command this way: `./8-true_knowledge | cat -e` -9. [Divide and rule](./9-divide_and_rule) : A script that prints the result of `POWER` divide by `DIVIDE`, followed by a new line. - - `POWER` and `DIVIDE` are environment variables. - - Variables values; - - export POWER=42784 - - export DIVIDE=32 - - Run command this way: `./9-divide_and_rule | cat -e` -10. [Love is anterior to life, posterior to death, initial of creation, and the exponent of breath](./10-love_exponent_breath) : A script that displays the result of `BREATH` to the power of `LOVE`. - - `BREATH` and `LOVE` are enviroment variables. - - The script should display the result, followed by a new line. -11. [There are 10 types of people in the world -- Those who understand binary, and those who don't](./11-binary_to_decimal) : A script that converts a number from base 2 to base 10. - - The number in base 2 is stored in the enviroment variable `BINARY`. - - The script should display the number in base 10, followed by a new line. -12. [Combination](./12-combinations) : A script that prints all possible combinations of two letters, except `oo`. - - Letters are lower cases, from `a` to `z`. - - One combination per line. - - The output should be alpha ordered, starting with `aa`. - - Do not print `oo`. - - Your script file should contain maximum 64 characters. -13. [Floats](./13-print_float) : A script that prints a number with two decimal places, followed by a new line. - - The number will be stored in the enviroment variable `NUM`. -14. [Decimal to Hexadecimal](./100-decimal_to_hexadecimal) : A script that converts a number from base 10 to base 16. - - The number is base 10 is stored in the enviroment variable `DECIMAL`. - - The script should display the number in base 16, followed by a new line. -15. [Everyone is a proponent of strong encryption](./101-rot13) : A script that encodes and decodes text using the rot13 encryption. Assume ASCII. -16. [The eggs of the brood need to be an odd number](./102-odd) : A script that prints every other line from the input, starting with the first line. -17. [I'm an instant star. Just add water and stir.](./103-water_and_stir) : A script that adds the two numbers stored in the enviroment variables `WATER` and `STIR` and prints the results. - - `WATER` is in base `water`. - - `STIR` is in base `stir`. - - The result should be in base `behlnort`. diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub deleted file mode 100644 index a8ec255..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/0-RSA_public_key.pub +++ /dev/null @@ -1 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDjr22fiOaHPnXe4Nhlw+E/vZS5Pq7Y4LhaBWtcsXmxQjeTLy4KwdCyuZ2SALk9cS38sv6uMRTM3CVaC18O4AVylN7bAM8nPwVoIBqAr9ML75Q9qj+Abm8Vg8tSfYP4QS8MTbGeeyZdiq6nXWlLYVk/Jdf+ux+riHyW31mkpJyoQw/NU8I7psoa6xAS2c37oMKepi6lmYEnA7oZDE2PWt1oC8dqAqsC4Gyrz7veCj6xbGutpuo9cmuaoYmLnjdUr9n1gcsRWzrJhBYD6RRzLtSkDI8Qpd2pG5Bo9TFJg2stBkTYr9co4IuPrdSn2alB/Nl4laY9nzPD20FKDaRYfTiDMX6j64bkYWdeS3QYy/LzP7J5a4DrSxD/Gs5LOpUy0b4tk0OcgdsGeWHS3fJhlJvPyKyCLoJTqujGX7lc20CRD7DxPyWObQAbmXB74HcwuY+l0RsI/dyk8hCQTpyGlhudIM8em7LDFm9g+GN4FWeDAdfG1JduV5isGiu1ayOZPf0= th3_lab@th3d3n diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school deleted file mode 100755 index 2026b39..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/1-for_best_school +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -# prints a string 10 times using for loop - -for ((i = 1; i <= 10; i++)); do - echo "Best School" -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz deleted file mode 100755 index f53a7a9..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/10-fizzbuzz +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash -# Fizzbuzz - -n=1 - -while [ "$n" -le 100 ]; do - - - if ! (( n % 3 )) && ! (( n % 5 )); then - echo "FizzBuzz" - elif ! (( n % 3 )); then - echo "Fizz" - elif ! (( n % 5 )); then - echo "Buzz" - else - echo "$n" - fi - - ((n++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut deleted file mode 100755 index 2492ed7..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/100-read_and_cut +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash -# read and cat - -file="/etc/passwd" - -while IFS= read -r line; do - echo "$line" | cut -d ':' -f1,3,6 -done < "$file" diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd deleted file mode 100755 index 3cc3ae1..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/101-tell_the_story_of_passwd +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -# Tell the story of passwd - -file="/etc/passwd" - -while IFS= read -r line; do - user=$(echo "$line" | cut -d ':' -f1) - gid=$(echo "$line" | cut -d ':' -f4) - dir=$(echo "$line" | cut -d ':' -f6) - shell=$(echo "$line" | cut -d ':' -f7) - uid=$(echo "$line" | cut -d ':' -f3) - pass=$(echo "$line" | cut -d ':' -f2) - info=$(echo "$line" | cut -d ':' -f5) - - echo "The user $user is part of the $gid gang, lives in $dir and rides $shell. $uid's place is protected by the passcode $pass, more info about the user here: $info" -done < "$file" diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs deleted file mode 100755 index 01b42e0..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/102-lets_parse_apache_logs +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# parse apache logs and show ip and status code - -awk '{print $1,$9}' apache-access.log diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data deleted file mode 100755 index 41fe48a..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/103-dig_the-data +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Dig the data - -awk '{print $1,$9}' apache-access.log | sort | uniq -c | sort -r diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school deleted file mode 100755 index 7aec305..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/2-while_best_school +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# prints a string 10 times using while loop - -i=0 - -while [ "$i" -lt 10 ]; do - echo "Best School" - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school deleted file mode 100755 index 7931ab9..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/3-until_best_school +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# print a string 10 times using until loop - -i=0 - -until false; do - echo "Best School" - ((i++)) - if [[ $i -lt 10 ]]; then - continue - else - break - fi -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi deleted file mode 100755 index 6ac29c6..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/4-if_9_say_hi +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -# prints a string 10 times using while loop and on the ninth iteration it prints hi - -i=1 - -while [ "$i" -lt 11 ]; do - echo "Best School" - - # if statement to print Hi when i is 9 - if [ "$i" -eq 9 ]; then - echo "Hi" - fi - - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance deleted file mode 100755 index 38293b8..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/5-4_bad_luck_8_is_your_chance +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -# 4 bad luck, 8 is your chance - -i=1 - -while [ "$i" -lt 11 ]; do - - # if 4 bad luck elif 8 good luck - if [ "$i" -eq 4 ]; then - echo "bad luck" - elif [ "$i" -eq 8 ]; then - echo "good luck" - else - echo "Best School" - fi - - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers deleted file mode 100755 index f669ac1..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/6-superstitious_numbers +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash -# cultures with numbers ... - -i=1 - -while [ "$i" -lt 21 ]; do - - case "$i" in - 4) - echo "$i" - echo "bad luck from China" - ;; - 9) - echo "$i" - echo "bad luck from Japan" - ;; - 17) - echo "$i" - echo "bad luck from Italy" - ;; - *) - echo "$i" - ;; - esac - - ((i++)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock deleted file mode 100755 index 3d812a9..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/7-clock +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# display time for 12 hours and 59 minutes - -hour=0 - -while [ "$hour" -le 12 ]; do - echo "Hour: $hour" - - minute=1 - - while [ "$minute" -lt 60 ]; do - echo "$minute" - minute=$((minute + 1)) - done - - hour=$((hour + 1)) -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls deleted file mode 100755 index 9f158d6..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/8-for_ls +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -# ls using for loop - -for file in *; do - echo "$file" | cut -d '-' -f 2; -done diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file deleted file mode 100755 index 97d9412..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/9-to_file_or_not_to_file +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash -# alx school file checker - -file="school" - -# checks if file exists -if [ -e "$file" ]; then - - echo "school file exists" - - # checks if file is empty - if [ ! -s "$file" ]; then - echo "school file is empty" - - # checks if file is a regular file - if [ -f "$file" ]; then - echo "school is a regular file" - fi - - else - - echo "school file is not empty" - - # checks if file is a regular file - if [ -f "$file" ]; then - echo "school is a regular file" - fi - - fi - -else - - echo "school file does not exist" - -fi diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md deleted file mode 100644 index 5cb41e3..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/README.md +++ /dev/null @@ -1,120 +0,0 @@ -# 0x04. Loops, conditions and parsing - -## Resource - -- [Loops sample](https://tldp.org/LDP/Bash-Beginners-Guide/html/sect_09_01.html) -- [Variable assignment and arithmetic](https://tldp.org/LDP/abs/html/ops.html) -- [Comparison operators](https://tldp.org/LDP/abs/html/comparison-ops.html) -- [File test operators](https://tldp.org/LDP/abs/html/fto.html) -- [Make your scripts portable](https://www.cyberciti.biz/tips/finding-bash-perl-python-portably-using-env.html) - -## Tasks - -
-0. Create a SSH RSA key pair
-image
- -
- -
-1. For Best School loop
-image -
- -
-2. While Best School loop
-image -
- -
-3. Until Best School loop
-image -
- -
-4. If 9, say Hi!
-image -
- -
-5. 4 bad luck, 8 is your chance
-image
- -
- -
-6. Superstitious numbers
-image -
- -
-7. Clock
-image -
- -
-8. For ls
-image -
- -
-9. To file, or not to file
-image -
- -
-10. FizzBuzz
-image -
- -
-11. Read and cut
-image -
- -
-12. Tell the story of passwd
-image - -
- -
-13. Let's parse Apache logs
-image - -
- -
-14. Dig the data
-image -
diff --git a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log b/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log deleted file mode 100644 index 3a41afe..0000000 --- a/alx-system_engineering-devops-main/0x04-loops_conditions_and_parsing/apache-access.log +++ /dev/null @@ -1,3459 +0,0 @@ -81.65.217.135 - - [07/Feb/2016:07:22:16 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -81.65.217.135 - - [07/Feb/2016:07:22:16 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -178.137.93.235 - - [07/Feb/2016:07:27:24 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29286 "http://jm-aj.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; TheFreeDictionary.com; .NET CLR 1.1.4322; .NET CLR 1.0.3705; .NET CLR 2.0.50727)" -178.137.93.235 - - [07/Feb/2016:07:28:33 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29452 "http://alborzan.com/" "Mozilla/4.0 (compatible; MSIE 6.0; America Online Browser 1.1; rev1.2; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" -178.255.215.65 - - [07/Feb/2016:07:31:02 -0800] "GET /robots.txt HTTP/1.1" 200 386 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:07:32:07 -0800] "GET /comments/feed/ HTTP/1.1" 200 1442 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -86.246.217.7 - - [07/Feb/2016:07:36:48 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -41.214.40.213 - - [07/Feb/2016:07:38:19 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:19 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:20 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:21 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n5su4nS9Fe1sa6hof-50x50.jpg HTTP/1.1" 200 1897 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -41.214.40.213 - - [07/Feb/2016:07:38:24 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.245.148.227 - - [07/Feb/2016:07:39:00 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -82.245.148.227 - - [07/Feb/2016:07:39:00 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17.6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_n9u925ynzx1spe2e1-50x50.png HTTP/1.1" 200 7248 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:25 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:07:39:34 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1" 200 309 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -83.155.173.169 - - [07/Feb/2016:07:43:04 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:05 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -83.155.173.169 - - [07/Feb/2016:07:43:07 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/?cf_action=sync_comments&post_id=13 HTTP/1.1" 200 308 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -198.58.102.96 - - [07/Feb/2016:07:52:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.0.228.136 - - [07/Feb/2016:07:57:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:21 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:22 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:24 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:25 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -192.0.228.136 - - [07/Feb/2016:07:57:35 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/author/phil/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/author/phil/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.235.197.66 - - [07/Feb/2016:08:02:25 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-300x225.jpg HTTP/1.1" 200 13168 "http://techmeup.co/author/phil/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.155 - - [07/Feb/2016:08:03:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.255.215.65 - - [07/Feb/2016:08:05:29 -0800] "GET /feed/ HTTP/1.1" 200 20950 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -50.116.28.209 - - [07/Feb/2016:08:12:03 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.117 - - [07/Feb/2016:08:22:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.93.235 - - [07/Feb/2016:08:29:09 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 307 "http://hspline.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)" -62.210.162.19 - - [07/Feb/2016:08:33:05 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (linux; u; android 4.1.1; ja-jp; sgpt12 build/tjs0166) applewebkit/534.30 (khtml, like gecko) version/4.0 safari/534.30 yjapp-android jp.co.yahoo.android.yjtop/2.1.8" -62.210.162.19 - - [07/Feb/2016:08:33:07 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (linux; u; android 4.1.1; ja-jp; sgpt12 build/tjs0166) applewebkit/534.30 (khtml, like gecko) version/4.0 safari/534.30 yjapp-android jp.co.yahoo.android.yjtop/2.1.8" -209.51.197.34 - - [07/Feb/2016:08:34:58 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "-" "Java/1.7.0_10" -173.244.168.226 - - [07/Feb/2016:08:34:58 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "-" "Java/1.7.0_10" -180.76.15.30 - - [07/Feb/2016:08:39:24 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -40.77.167.6 - - [07/Feb/2016:08:51:13 -0800] "GET /john-sheehan-ceo-et-co-fondateur-de-runscope/ HTTP/1.1" 200 10673 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [07/Feb/2016:08:51:15 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8890 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:08:51:19 -0800] "GET /10-questions-a-arnaud-ruiz-le-plus-frenchie-des/ HTTP/1.1" 200 9353 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:08:51:21 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:08:51:23 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10506 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:08:51:29 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:08:51:31 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9793 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.41 - - [07/Feb/2016:08:51:42 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8057 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.41 - - [07/Feb/2016:08:51:44 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9368 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -104.236.89.109 - - [07/Feb/2016:09:01:44 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" -62.210.142.23 - jez [07/Feb/2016:09:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.255.215.65 - - [07/Feb/2016:09:08:10 -0800] "GET /?p=47 HTTP/1.1" 301 407 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -104.131.170.67 - - [07/Feb/2016:09:09:42 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)" -141.8.132.38 - - [07/Feb/2016:09:18:16 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [07/Feb/2016:09:21:33 -0800] "GET /2014/04/apple-touch-icon.png HTTP/1.1" 404 4924 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -213.245.234.126 - - [07/Feb/2016:09:24:39 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.245.234.126 - - [07/Feb/2016:09:24:51 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.245.234.126 - - [07/Feb/2016:09:24:52 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -54.144.69.96 - - [07/Feb/2016:09:27:43 -0800] "GET /brice-favre-la-soif-de-creer/ HTTP/1.1" 200 9290 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -84.14.175.8 - - [07/Feb/2016:09:34:29 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -86.246.217.7 - - [07/Feb/2016:09:36:50 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -90.50.41.35 - - [07/Feb/2016:09:43:23 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.50.41.35 - - [07/Feb/2016:09:43:36 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -180.76.15.27 - - [07/Feb/2016:09:46:23 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9713 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -198.58.103.92 - - [07/Feb/2016:09:52:56 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:45 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 200 2286 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:46 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -176.183.100.98 - - [07/Feb/2016:09:53:51 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0 Chrome/38.0.2125.102 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:10 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:11 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:12 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:12 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -105.154.148.42 - - [07/Feb/2016:09:54:35 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:09:58:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1102 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:23 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:24 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.218.16.172 - - [07/Feb/2016:09:59:28 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.143.8.207 - - [07/Feb/2016:10:00:06 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:06 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:07 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1" 200 2073 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:08 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -92.143.8.207 - - [07/Feb/2016:10:00:21 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -88.191.110.221 - - [07/Feb/2016:10:01:32 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -88.191.110.221 - - [07/Feb/2016:10:01:45 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -88.191.110.221 - - [07/Feb/2016:10:01:47 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -31.38.46.44 - - [07/Feb/2016:10:06:14 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:15 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:15 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15441 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] "GET /wp-content/uploads/2015/06/unnamed-50x50.jpg HTTP/1.1" 200 2395 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:16 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -31.38.46.44 - - [07/Feb/2016:10:06:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T800 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -86.246.217.7 - - [07/Feb/2016:10:06:49 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -91.69.215.105 - - [07/Feb/2016:10:08:43 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15468 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:45 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:46 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -91.69.215.105 - - [07/Feb/2016:10:08:46 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -84.99.100.217 - - [07/Feb/2016:10:10:23 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15525 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:25 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:25 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:26 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:26 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:27 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -84.99.100.217 - - [07/Feb/2016:10:10:28 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/12B435 Safari/600.1.4" -88.162.129.6 - - [07/Feb/2016:10:13:21 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15571 "https://www.google.fr/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.162.129.6 - - [07/Feb/2016:10:13:23 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -88.162.129.6 - - [07/Feb/2016:10:13:25 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -83.200.134.37 - - [07/Feb/2016:10:13:25 -0800] "GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1" 200 2745 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:26 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:27 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -83.200.134.37 - - [07/Feb/2016:10:13:28 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13D15 Safari/600.1.4" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:27 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -80.12.63.146 - - [07/Feb/2016:10:14:28 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:03 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:05 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -89.83.89.49 - - [07/Feb/2016:10:18:24 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1684 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; STARXTREM II Build/JLS36C) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 010 11" -93.76.54.179 - - [07/Feb/2016:10:18:59 -0800] "POST /wp-login.php HTTP/1.0" 200 3823 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36" -148.66.106.243 - - [07/Feb/2016:10:21:34 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.106.243 - - [07/Feb/2016:10:21:48 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -86.246.29.117 - - [07/Feb/2016:10:26:25 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.246.29.117 - - [07/Feb/2016:10:26:25 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:51 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:52 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -77.148.67.218 - - [07/Feb/2016:10:27:52 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 5.0; fr-fr; LG-D855/V21a Build/LRX21R.A1446038723) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.1847.118 Mobile Safari/537.36" -162.243.175.211 - - [07/Feb/2016:10:28:33 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:14 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -93.4.63.78 - - [07/Feb/2016:10:29:23 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:48 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:49 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:31:49 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.64.43.181 - - [07/Feb/2016:10:32:11 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64; Trident/7.0; rv:11.0) like Gecko" -86.249.233.236 - - [07/Feb/2016:10:34:09 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.249.233.236 - - [07/Feb/2016:10:34:10 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:25 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:26 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:34:31 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -37.174.205.227 - - [07/Feb/2016:10:35:21 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -86.246.217.7 - - [07/Feb/2016:10:36:50 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:04 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e11-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:05 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -95.157.148.31 - - [07/Feb/2016:10:39:15 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.2; LG-V500 Build/KOT49I.V50020f) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:10:40:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -86.202.238.245 - - [07/Feb/2016:10:44:08 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15543 "https://www.google.fr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:07 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15518 "https://www.google.fr/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -86.202.238.245 - - [07/Feb/2016:10:44:08 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:08 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -86.202.238.245 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -86.202.238.245 - - [07/Feb/2016:10:44:09 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:10 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -86.202.238.245 - - [07/Feb/2016:10:44:11 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36" -176.182.45.208 - - [07/Feb/2016:10:44:11 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -176.182.45.208 - - [07/Feb/2016:10:44:12 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -62.210.250.66 - - [07/Feb/2016:10:44:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -78.226.100.156 - - [07/Feb/2016:10:48:46 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15536 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -199.16.156.126 - - [07/Feb/2016:10:48:46 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -78.226.100.156 - - [07/Feb/2016:10:48:47 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -199.16.156.126 - - [07/Feb/2016:10:48:47 -0800] "GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 301 310 "-" "Twitterbot/1.0" -199.16.156.126 - - [07/Feb/2016:10:48:49 -0800] "GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -195.81.235.66 - - [07/Feb/2016:10:50:08 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "https://www.google.fr" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:09 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:09 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:10 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:11 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -195.81.235.66 - - [07/Feb/2016:10:50:13 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -207.46.13.30 - - [07/Feb/2016:10:54:37 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -78.248.123.50 - - [07/Feb/2016:10:55:08 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.248.123.50 - - [07/Feb/2016:10:55:13 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:11:00:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:11 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:11 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:12 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:12 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:13 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:14 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1" 200 2106 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.103.122.246 - - [07/Feb/2016:11:01:18 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:21 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 777 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:22 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:22 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -92.149.162.218 - - [07/Feb/2016:11:01:31 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; U; Android 4.1.2; fr-fr; GT-P5110 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30" -198.58.102.155 - - [07/Feb/2016:11:05:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -41.79.217.139 - - [07/Feb/2016:11:05:37 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:37 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -41.79.217.139 - - [07/Feb/2016:11:05:38 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.142.23 - jez [07/Feb/2016:11:06:12 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [07/Feb/2016:11:07:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_ngwo89J1MF1r1bjfi-50x50.jpg HTTP/1.1" 200 2412 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -80.12.58.108 - - [07/Feb/2016:11:07:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4" -69.171.230.98 - - [07/Feb/2016:11:09:13 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21481 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -168.63.56.246 - - [07/Feb/2016:11:11:47 -0800] "GET /feed HTTP/1.1" 301 474 "-" "Rome Client (http://tinyurl.com/64t5n) Ver: UNKNOWN" -68.180.228.42 - - [07/Feb/2016:11:15:23 -0800] "GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1" 301 300 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -66.220.156.123 - - [07/Feb/2016:11:16:10 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9569 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -69.171.230.117 - - [07/Feb/2016:11:16:10 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16096 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -50.116.28.209 - - [07/Feb/2016:11:22:27 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.255.215.65 - - [07/Feb/2016:11:24:25 -0800] "GET /marketing-pour-developpeurs-partie-1/feed/ HTTP/1.1" 200 884 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:30:58 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1" 200 2773 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 664 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -98.109.81.194 - - [07/Feb/2016:11:31:00 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 15494 "-" "Mozilla/5.0 (Linux; U; Android 4.3; fr-fr; SGH-T999 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -50.116.30.23 - - [07/Feb/2016:11:31:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.160 - - [07/Feb/2016:11:40:42 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.0.101.203 - - [07/Feb/2016:11:43:00 -0800] "HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0" 200 342 "-" "WordPress.com; https://entreprendrememepaspeur.wordpress.com" -80.215.173.201 - - [07/Feb/2016:11:46:12 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15508 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:13 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:15 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3422 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:16 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4483 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:23 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:46:45 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -80.215.173.201 - - [07/Feb/2016:11:47:07 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.1.2; GT-S6790N Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.94 Mobile Safari/537.36" -108.174.5.117 - - [07/Feb/2016:11:49:01 -0800] "HEAD /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 448 "-" "LinkedInBot/1.0 (compatible; Mozilla/5.0; Jakarta Commons-HttpClient/3.1 +http://www.linkedin.com)" -199.16.156.125 - - [07/Feb/2016:11:53:09 -0800] "GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 301 310 "-" "Twitterbot/1.0" -213.245.234.126 - - [07/Feb/2016:11:54:42 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.245.234.126 - - [07/Feb/2016:11:54:54 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.245.234.126 - - [07/Feb/2016:11:54:56 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.14.140.166 - - [07/Feb/2016:11:57:22 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:23 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:25 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -90.14.140.166 - - [07/Feb/2016:11:57:41 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -80.12.42.19 - - [07/Feb/2016:11:59:12 -0800] "GET /favicon.ico HTTP/1.1" 200 238 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -91.196.50.33 - - [07/Feb/2016:12:02:36 -0800] "GET http://testp2.czar.bielawa.pl/testproxy.php HTTP/1.1" 301 502 "-" "Mozilla/5.0 (Windows NT 5.1; rv:32.0) Gecko/20100101 Firefox/31.0" -188.138.17.205 - - [07/Feb/2016:12:03:08 -0800] "GET /sitemap.xml HTTP/1.1" 200 2928 "-" "-" -80.12.63.146 - - [07/Feb/2016:12:08:13 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4483 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -62.210.250.66 - - [07/Feb/2016:12:12:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [07/Feb/2016:12:21:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -180.76.15.6 - - [07/Feb/2016:12:25:04 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -213.245.234.126 - - [07/Feb/2016:12:27:12 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.245.234.126 - - [07/Feb/2016:12:27:24 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [07/Feb/2016:12:27:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -209.133.111.211 - - [07/Feb/2016:12:32:10 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -198.58.102.155 - - [07/Feb/2016:12:37:55 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -93.76.54.179 - - [07/Feb/2016:12:44:01 -0800] "POST /wp-login.php HTTP/1.0" 200 3816 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36" -178.255.215.65 - - [07/Feb/2016:12:51:48 -0800] "GET /2014/04/ HTTP/1.1" 200 6133 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:12:52:41 -0800] "GET /2014/08/ HTTP/1.1" 200 6266 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:01 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n43vwqRZpY1r792z4-50x50.jpg HTTP/1.1" 200 2491 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.190.38.63 - - [07/Feb/2016:12:56:02 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:32 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:42 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15508 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:44 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:47 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:50 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -88.167.87.4 - - [07/Feb/2016:13:00:53 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.4; TF300T Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -178.137.17.196 - - [07/Feb/2016:13:01:37 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29341 "http://guruofcasino.com/" "Opera/9.00 (Windows NT 5.1; U; en)" -178.137.17.196 - - [07/Feb/2016:13:01:39 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29425 "http://guruofcasino.com/" "Opera/9.00 (Windows NT 5.1; U; en)" -2.1.72.179 - - [07/Feb/2016:13:06:24 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [07/Feb/2016:13:08:37 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -199.16.156.125 - - [07/Feb/2016:13:12:26 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 381 "-" "Twitterbot/1.0" -82.237.33.174 - - [07/Feb/2016:13:13:01 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [07/Feb/2016:13:13:13 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -178.255.215.65 - - [07/Feb/2016:13:16:00 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/feed/ HTTP/1.1" 200 888 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:13:16:13 -0800] "GET /textme-cest-de-la-bombe HTTP/1.1" 301 383 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [07/Feb/2016:13:16:21 -0800] "GET /textme-cest-de-la-bombe/ HTTP/1.1" 200 8612 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -54.90.112.11 - - [07/Feb/2016:13:24:50 -0800] "GET /category/europe/feed/ HTTP/1.1" 200 27874 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:41 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 200 9484 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -90.41.103.221 - - [07/Feb/2016:13:29:42 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7" -66.249.64.137 - - [07/Feb/2016:13:35:38 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.132 - - [07/Feb/2016:13:40:17 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.138 - - [07/Feb/2016:13:40:19 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.132 - - [07/Feb/2016:13:40:21 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.250 - - [07/Feb/2016:13:40:23 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.103.92 - - [07/Feb/2016:13:49:51 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -54.219.246.6 - - [07/Feb/2016:13:52:06 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -78.194.25.109 - - [07/Feb/2016:13:55:13 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -78.194.25.109 - - [07/Feb/2016:13:55:13 -0800] "HEAD /apple-touch-icon-precomposed.png HTTP/1.1" 404 447 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:19 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1" 200 1592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:20 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -92.158.139.3 - - [07/Feb/2016:14:01:26 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1" 404 4872 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; GT-N5100 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -85.27.50.18 - - [07/Feb/2016:14:06:16 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25163 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -85.27.50.18 - - [07/Feb/2016:14:07:08 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -85.27.50.18 - - [07/Feb/2016:14:08:21 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nfgbauhtUn1r1bjfi-300x225.png HTTP/1.1" 200 80082 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -85.27.50.18 - - [07/Feb/2016:14:09:02 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53" -68.180.228.42 - - [07/Feb/2016:14:13:36 -0800] "GET /2014/08/ HTTP/1.1" 200 6247 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:35 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:36 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:37 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -80.118.5.210 - - [07/Feb/2016:14:29:41 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2638.0 Safari/537.36" -66.249.64.132 - - [07/Feb/2016:14:37:26 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1" 200 12281 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:08 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:09 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -92.136.54.206 - - [07/Feb/2016:14:39:14 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:57 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 200 2286 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -217.86.68.105 - - [07/Feb/2016:14:46:58 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -107.21.155.8 - - [07/Feb/2016:14:58:57 -0800] "GET /category/how-to/feed/ HTTP/1.1" 200 25451 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -89.156.5.207 - - [07/Feb/2016:15:01:12 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -198.58.102.156 - - [07/Feb/2016:15:01:52 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -84.14.175.8 - - [07/Feb/2016:15:05:05 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 304 189 "-" "Mozilla/4.0 (compatible;)" -92.222.20.166 - - [07/Feb/2016:15:13:33 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -78.247.224.206 - - [07/Feb/2016:15:17:29 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1" 200 2115 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:30 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.247.224.206 - - [07/Feb/2016:15:17:34 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/?cf_action=sync_comments&post_id=14 HTTP/1.1" 200 308 "http://techmeup.co/faut-il-apprendre-a-coder-a-lecole-ou-bien/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -180.76.15.18 - - [07/Feb/2016:15:19:15 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -78.192.99.105 - - [07/Feb/2016:15:19:42 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; ASU2JS)" -141.8.132.38 - - [07/Feb/2016:15:21:13 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -207.46.13.30 - - [07/Feb/2016:15:22:52 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:15:22:54 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9788 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:15:22:59 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8042 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:15:23:01 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9421 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [07/Feb/2016:15:23:06 -0800] "GET /blake-haggerty-evangeliste-startups-developpeurs/ HTTP/1.1" 200 9912 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -89.156.5.207 - - [07/Feb/2016:15:23:11 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -89.156.5.207 - - [07/Feb/2016:15:23:11 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -157.55.39.27 - - [07/Feb/2016:15:23:12 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9043 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:15:23:14 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 9408 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [07/Feb/2016:15:23:16 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10474 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -103.243.26.232 - - [07/Feb/2016:15:33:50 -0800] "GET / HTTP/1.1" 200 7218 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:33:53 -0800] "GET /admin/images/admin_submit.jpg HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:33:56 -0800] "GET /js/close.gif HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:33:58 -0800] "GET /admin/_Style/_notes/dwsync.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:01 -0800] "GET /inc/_notes/dwsync.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:03 -0800] "GET /administrator/includes/page_default.txt HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:06 -0800] "GET /install/data/themes/handshakes_neo/gfx/boxes/blueTop/top.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:08 -0800] "GET /data/sessions/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:11 -0800] "GET /include/alert.htm HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:13 -0800] "GET /setup/license.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:15 -0800] "GET /plus/img/wbg.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:17 -0800] "GET /member/images/base.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:20 -0800] "GET /dede/templets/article_coonepage_rule.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:22 -0800] "GET /templets/default/style/dedecms.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:24 -0800] "GET /templets/default/style/dedecms.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:26 -0800] "GET /favicon.ico HTTP/1.1" 200 183 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:28 -0800] "GET /favicon.ico HTTP/1.1" 200 183 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:30 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:33 -0800] "GET /u2upopup.js HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:36 -0800] "GET /include/javascript/ajax.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:38 -0800] "GET /static/js/admincp.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:41 -0800] "GET /themes/README.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:43 -0800] "GET /themes/garland/images/menu-expanded.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:46 -0800] "GET /.htaccess HTTP/1.1" 403 443 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:49 -0800] "GET /example.gitignore HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:51 -0800] "GET /profiles/README.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:54 -0800] "GET /.editorconfig HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:57 -0800] "GET /INSTALL.pgsql.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:34:59 -0800] "GET /UPGRADE.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:02 -0800] "GET /modules/user/user.info HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:04 -0800] "GET /Admin/images/admin.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:07 -0800] "GET /boke/Script/Dv_form.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:09 -0800] "GET /Css/cndw/pub_cndw.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:12 -0800] "GET /Css/yellow/style.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:14 -0800] "GET /Dv_plus/IndivGroup/js/Dv_form.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:17 -0800] "GET /images/manage/admin.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:20 -0800] "GET /Plus_popwan/CacheFile/sn.config HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:22 -0800] "GET /Resource/Template_1/boardhelp_html4.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:24 -0800] "GET /admin/help/zh_cn/database.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:26 -0800] "GET /admin/js/validator.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:29 -0800] "GET /data/flashdata/default/cycle_image.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:32 -0800] "GET /themes/default/library/member.lbi HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:34 -0800] "GET /install/data/demo/zh_cn.sql HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:37 -0800] "GET /mobile/templates/article.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:40 -0800] "GET /wap/templates/article.wml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:42 -0800] "GET /content/cache/options HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:45 -0800] "GET /admin/views/style/green/style.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:48 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:50 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:53 -0800] "GET /d/js/class/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:56 -0800] "GET /d/txt/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:35:58 -0800] "GET /e/admin/user/data/certpage.txt HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:01 -0800] "GET /e/data/template/gbooktemp.txt HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:03 -0800] "GET /e/tasks/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:06 -0800] "GET /install/data/empiredown.com.sql HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:09 -0800] "GET /adminsoft/templates/images/login_line.png HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:11 -0800] "GET / HTTP/1.1" 200 7218 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:14 -0800] "GET /adminsoft/js/control.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:15 -0800] "GET /install/lan_inc.php HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:18 -0800] "GET /templates/wap/cn/public/footer.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:20 -0800] "GET /Tags.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:23 -0800] "GET /Admin/News/lib/vssver2.scc HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:26 -0800] "GET /FS_Inc/vssver2.scc HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:28 -0800] "GET /Templets/about/index.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:31 -0800] "GET /Users/Mall/OrderPrint.Asp HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:33 -0800] "GET /js/api.js HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:36 -0800] "GET /js/jqeditor/hdwiki.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:38 -0800] "GET /plugins/mwimport/view/admin_mwimport.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:41 -0800] "GET /style/default/desc.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:44 -0800] "GET /libraries/joomla/filesystem/meta/language/en-GB/en-GB.lib_joomla_filesystem_patcher.ini HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:47 -0800] "GET /joomla.xml HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:49 -0800] "GET /web.config.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:52 -0800] "GET /installation/language/en-GB/en-GB.ini HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:55 -0800] "GET /language/en-GB/en-GB.com_contact.ini HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:36:57 -0800] "GET /media/editors/tinymce/templates/template_list.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:00 -0800] "GET /page/system/inc/fun.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:02 -0800] "GET /Admin/Include/version.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:05 -0800] "GET /czfy/template/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:08 -0800] "GET /Space/js/ks.space.page.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:10 -0800] "GET /install.sql HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:13 -0800] "GET /ad.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:15 -0800] "GET /create.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:18 -0800] "GET /main.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:20 -0800] "GET /webftp.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:23 -0800] "GET /admin/webftp/index.asp HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:25 -0800] "GET /collect/index.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:28 -0800] "GET /download/index.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:30 -0800] "GET /inc/config.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:33 -0800] "GET /movie/index.asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:35 -0800] "GET /page/Tools/fun.asp HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:38 -0800] "GET /system/js/jquery.kc.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:40 -0800] "GET /user/ HTTP/1.1" 404 4816 "http://techmeup.co/user/index.php" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:43 -0800] "GET /Admin/MasterPage/Default.Master HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:45 -0800] "GET /en/Module/AboutDetail.ascx HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:49 -0800] "GET /Module/AboutDetail.ascx HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:52 -0800] "GET /Ch/Memberphoto.Asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:54 -0800] "GET /ewebeditor/KindEditor.js HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:56 -0800] "GET /install/ HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:37:59 -0800] "GET /help/main.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:01 -0800] "GET /skin/admin/style.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:03 -0800] "GET /images/admin/login/logo.png HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:06 -0800] "GET /AUTHORS HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:08 -0800] "GET /wind/http/mime/mime HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:11 -0800] "GET /api/agent.html HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:13 -0800] "GET /apps/weibo/template/m_weibo_bottom.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:16 -0800] "GET /html/js/index.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:18 -0800] "GET /mode/area/js/adminview.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:21 -0800] "GET /src/extensions/demo/Manifest.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:23 -0800] "GET /themes/forum/default/css/dev/forum.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:26 -0800] "GET /rss.xsl HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:28 -0800] "GET /Web.config HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:31 -0800] "GET /Temp/ajaxnote.txt HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:34 -0800] "GET /API/Request.xml HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:36 -0800] "GET /Admin/Common/HelpLinks.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:39 -0800] "GET /Editor/Lable/PE_Annouce.htm HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:41 -0800] "GET /Language/Gb2312.xml HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:44 -0800] "GET /Template/Default/Skin/default.css HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:47 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:50 -0800] "GET /LiveServer/Configuration/UrlRewrite.config HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:52 -0800] "GET /SiteFiles/bairong/TextEditor/eWebEditor/language/zh-cn.js HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:55 -0800] "GET /SiteServer/Installer/EULA.html HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:38:57 -0800] "GET /SiteServer/Themes/Language/en.xml HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:00 -0800] "GET /DatePicker/skin/datePicker.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:02 -0800] "GET /images/QQ/qqon5.gif HTTP/1.1" 404 4868 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:05 -0800] "GET /Inc/NoSqlHack.Asp HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -103.243.26.232 - - [07/Feb/2016:15:39:07 -0800] "GET /Css/Style.css HTTP/1.1" 404 4816 "-" "Go 1.1 package http" -75.126.174.67 - - [07/Feb/2016:15:40:34 -0800] "POST /xmlrpc.php HTTP/1.0" 200 407 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:40 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:40:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:15 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:21 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:28 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:34 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:42 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:48 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:41:59 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:06 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:12 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:25 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:31 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:38 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:44 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:50 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:42:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:00 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:10 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -75.126.174.67 - - [07/Feb/2016:15:43:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -95.211.238.110 - - [07/Feb/2016:15:47:02 -0800] "\x15\x03\x03" 200 33076 "-" "-" -198.58.102.155 - - [07/Feb/2016:15:53:33 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [07/Feb/2016:16:06:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -31.13.110.116 - - [07/Feb/2016:16:11:26 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21481 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -75.57.9.117 - - [07/Feb/2016:16:11:55 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -75.57.9.117 - - [07/Feb/2016:16:12:07 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -198.58.103.102 - - [07/Feb/2016:16:12:11 -0800] "GET / HTTP/1.1" 200 7274 "-" "Superfeedr bot/2.0 http://superfeedr.com - Checking HTML reverse link." -207.46.13.30 - - [07/Feb/2016:16:16:35 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -37.162.199.102 - - [07/Feb/2016:16:19:19 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:20 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1" 200 1592 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:21 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -37.162.199.102 - - [07/Feb/2016:16:19:30 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (Linux; Android 5.1; XT1039 Build/LPB23.13-17) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -175.111.117.3 - - [07/Feb/2016:16:19:46 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "-" "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:49 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:50 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.42.83 - - [07/Feb/2016:16:19:50 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.3; GT-I9505 Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -175.111.117.3 - - [07/Feb/2016:16:19:52 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "-" "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7" -95.211.238.110 - - [07/Feb/2016:16:21:32 -0800] "\x15\x03\x03" 200 33076 "-" "-" -192.0.99.238 - - [07/Feb/2016:16:22:39 -0800] "HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0" 200 342 "-" "WordPress.com; https://entreprendrememepaspeur.wordpress.com" -95.211.238.110 - - [07/Feb/2016:16:27:35 -0800] "\x15\x03\x03" 200 33076 "-" "-" -37.9.118.28 - - [07/Feb/2016:16:33:12 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -2.1.72.179 - - [07/Feb/2016:16:36:58 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -41.66.51.253 - - [07/Feb/2016:16:40:36 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -41.66.51.253 - - [07/Feb/2016:16:40:36 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -64.246.165.140 - - [07/Feb/2016:16:42:03 -0800] "GET / HTTP/1.1" 200 7237 "http://whois.domaintools.com/techmeup.co" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.13) Gecko/2009073022 Firefox/3.5.2 (.NET CLR 3.5.30729) SurveyBot/2.3 (DomainTools)" -66.249.64.132 - - [07/Feb/2016:16:44:27 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?utm_content=buffer01771&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer HTTP/1.1" 200 10144 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -199.16.156.124 - - [07/Feb/2016:16:45:22 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1" 200 12222 "-" "Twitterbot/1.0" -194.187.168.216 - - [07/Feb/2016:16:56:52 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.0" 200 9972 "-" "Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*" -145.249.150.209 - - [07/Feb/2016:17:04:33 -0800] "GET /category/how-to/' HTTP/1.1" 404 4835 "http://pesochnaya-ceremoniya.ru/category/how-to/'" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -145.249.150.209 - - [07/Feb/2016:17:04:35 -0800] "GET /' HTTP/1.1" 404 4835 "http://pesochnaya-ceremoniya.ru/'" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -2.1.72.179 - - [07/Feb/2016:17:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [07/Feb/2016:17:12:06 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -148.251.234.184 - - [07/Feb/2016:17:15:09 -0800] "GET /tagged/Tech HTTP/1.0" 301 466 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -136.243.16.102 - - [07/Feb/2016:17:15:10 -0800] "GET /tagged/San-Francisco HTTP/1.1" 404 15438 "nt" "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Thunderbird/1.0.6 - WebCrawler http://cognitiveseo.com/bot.html" -136.243.16.102 - - [07/Feb/2016:17:15:11 -0800] "GET /archive HTTP/1.0" 404 15416 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -136.243.16.102 - - [07/Feb/2016:17:15:12 -0800] "GET /archive HTTP/1.1" 404 15438 "nt" "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.10) Gecko/20050716 Thunderbird/1.0.6 - WebCrawler http://cognitiveseo.com/bot.html" -188.40.97.23 - - [07/Feb/2016:17:15:28 -0800] "GET /tagged/Tech HTTP/1.0" 301 466 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -148.251.151.4 - - [07/Feb/2016:17:15:43 -0800] "GET /feed/ HTTP/1.0" 200 63874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -192.0.99.119 - - [07/Feb/2016:17:17:21 -0800] "HEAD /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.0" 200 342 "-" "WordPress.com; https://entreprendrememepaspeur.wordpress.com" -24.193.63.69 - - [07/Feb/2016:17:29:01 -0800] "GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.1" 200 11601 "https://www.google.com/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:03 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -24.193.63.69 - - [07/Feb/2016:17:29:04 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_3 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E5191d Safari/601.1" -199.16.156.124 - - [07/Feb/2016:17:30:02 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_ne4zzxKVb01sa6hof-50x50.png HTTP/1.1" 200 4330 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:28 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -176.184.68.218 - - [07/Feb/2016:17:35:29 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -207.241.229.149 - - [07/Feb/2016:17:38:33 -0800] "GET /apple-touch-icon.png HTTP/1.0" 404 15416 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -144.76.100.237 - - [07/Feb/2016:17:40:39 -0800] "GET /john-sheehan-ceo-et-co-fondateur-de-runscope/ HTTP/1.0" 200 32030 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 - James BOT - WebCrawler http://cognitiveseo.com/bot.html" -180.76.15.145 - - [07/Feb/2016:17:56:01 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -92.222.20.166 - - [07/Feb/2016:18:11:36 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -91.224.140.223 - - [07/Feb/2016:18:18:09 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -162.243.175.105 - - [07/Feb/2016:18:22:10 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -162.144.66.10 - - [07/Feb/2016:18:47:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 407 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:11 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:30 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:37 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:44 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:47:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:05 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:14 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:22 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:29 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:36 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:44 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:48:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:05 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:13 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:20 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:34 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:41 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:49:54 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:50:01 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -162.144.66.10 - - [07/Feb/2016:18:50:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -50.116.28.209 - - [07/Feb/2016:18:56:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -67.169.93.143 - - [07/Feb/2016:19:00:42 -0800] "HEAD /apple-touch-icon-precomposed.png HTTP/1.1" 404 447 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -2.1.72.179 - - [07/Feb/2016:19:06:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -148.66.108.167 - - [07/Feb/2016:19:07:27 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.108.167 - - [07/Feb/2016:19:07:40 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -91.224.140.223 - - [07/Feb/2016:19:14:03 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -198.58.96.215 - - [07/Feb/2016:19:28:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.49 - - [07/Feb/2016:19:36:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.138 - - [07/Feb/2016:19:39:21 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8616 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -209.133.111.211 - - [07/Feb/2016:19:46:26 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" -66.249.64.250 - - [07/Feb/2016:19:55:09 -0800] "GET /sitemap-misc.xml HTTP/1.1" 200 836 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -68.180.228.42 - - [07/Feb/2016:20:01:21 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1" 200 10165 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -92.222.20.166 - - [07/Feb/2016:20:06:17 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -178.137.17.196 - - [07/Feb/2016:20:08:26 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29402 "http://izhevsk.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; APC; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 2.0.50215; InfoPath.1)" -91.217.1.98 - - [07/Feb/2016:20:15:13 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead.jpg HTTP/1.1" 200 378804 "https://www.google.pl/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -96.41.45.70 - - [07/Feb/2016:20:18:04 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -96.41.45.70 - - [07/Feb/2016:20:18:08 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -96.41.45.70 - - [07/Feb/2016:20:18:21 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.14.124.182 - - [07/Feb/2016:20:20:28 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10110 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:30 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -213.14.124.182 - - [07/Feb/2016:20:20:31 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53" -50.116.28.209 - - [07/Feb/2016:20:32:25 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -160.33.66.122 - - [07/Feb/2016:20:40:53 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 304 189 "-" "Mozilla/4.0 (compatible;)" -178.137.17.196 - - [07/Feb/2016:20:47:39 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29436 "http://flprog.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" -198.58.103.28 - - [07/Feb/2016:20:56:18 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -68.180.228.42 - - [07/Feb/2016:21:06:47 -0800] "GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1" 301 287 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -198.58.102.155 - - [07/Feb/2016:21:12:24 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.160 - - [07/Feb/2016:21:28:19 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -148.66.108.167 - - [07/Feb/2016:21:29:05 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.108.167 - - [07/Feb/2016:21:29:26 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.72.179 - - [07/Feb/2016:21:36:13 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.102.155 - - [07/Feb/2016:21:44:38 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -83.219.216.33 - - [07/Feb/2016:21:52:20 -0800] "POST /xmlrpc.php HTTP/1.0" 200 407 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:35 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:45 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:52:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -207.46.13.30 - - [07/Feb/2016:21:53:17 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -83.219.216.33 - - [07/Feb/2016:21:53:26 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:36 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:53:57 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:08 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:35 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:54:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:17 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:28 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:37 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:55:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:01 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -83.219.216.33 - - [07/Feb/2016:21:56:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -54.172.78.212 - - [07/Feb/2016:21:58:55 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10125 "-" "Kerrigan/2.0 (kerrigan@mashable.com)" -207.46.13.147 - - [07/Feb/2016:22:00:58 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10130 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -54.177.7.2 - - [07/Feb/2016:22:12:17 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -91.228.196.139 - - [07/Feb/2016:22:24:01 -0800] "GET /wp-login.php?action=register HTTP/1.1" 302 537 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/400.27 (KHTML, like Gecko) Chrome/1604.0.1604.134 Safari/400.27" -198.58.102.155 - - [07/Feb/2016:22:26:44 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.49 - - [07/Feb/2016:22:34:54 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -167.114.156.198 - - [07/Feb/2016:22:37:50 -0800] "GET /xmlrpc.php HTTP/1.1" 200 235 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:37:57 -0800] "GET /xmlrpc.php?rsd HTTP/1.1" 200 915 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:03 -0800] "GET /category/europe/ HTTP/1.1" 200 32299 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:10 -0800] "GET /category/portraits/ HTTP/1.1" 200 33167 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:16 -0800] "GET /author/herve/ HTTP/1.1" 200 31847 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:24 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 30795 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:30 -0800] "GET /les-francais-genies-de-la-silicon-valley/ HTTP/1.1" 200 25352 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:35 -0800] "GET /adieu-tumblr/ HTTP/1.1" 200 23111 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:42 -0800] "GET /author/laetitia/ HTTP/1.1" 200 32420 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:49 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 28357 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:38:57 -0800] "GET /author/sylvain/ HTTP/1.1" 200 23320 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:04 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 28209 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:11 -0800] "GET /category/how-to/feed/ HTTP/1.1" 200 77382 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:18 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1" 200 35190 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:26 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 28410 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:33 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 29237 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:40 -0800] "GET /de-la-nasa-a-checkr-comment-daniel-yanisse/ HTTP/1.1" 200 28382 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:47 -0800] "GET /le-jour-ou-les-startups-tech-nauront-plus-de/ HTTP/1.1" 200 26996 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:39:55 -0800] "GET /guillaume-decugis-le-monde-de-la-tech-sous-tous/ HTTP/1.1" 200 30206 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:00 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 336 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:04 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 301 273 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:10 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 29621 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:16 -0800] "GET /michael-ferranti-responsable-marketing-a-mailgun/ HTTP/1.1" 200 31810 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:23 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/feed/ HTTP/1.1" 200 1242 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:29 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja HTTP/1.1" 301 260 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:33 -0800] "GET /author/julienbarbier/feed/ HTTP/1.1" 200 86021 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:41 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/feed/ HTTP/1.1" 200 1384 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:48 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/feed/ HTTP/1.1" 200 1369 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:40:55 -0800] "GET /guillaume-charmes-meilleur-developpeur-du-monde/ HTTP/1.1" 200 25759 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:00 -0800] "GET /du-side-project-a-google-le-fabuleux-parcours/ HTTP/1.1" 200 33378 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -66.249.64.138 - - [07/Feb/2016:22:41:04 -0800] "GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1" 301 433 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -167.114.156.198 - - [07/Feb/2016:22:41:07 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au/feed/ HTTP/1.1" 200 1245 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:13 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/feed/ HTTP/1.1" 200 1237 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:20 -0800] "GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1" 301 255 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:23 -0800] "GET /marketing-pour-developpeurs-partie-2 HTTP/1.1" 301 332 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:26 -0800] "GET /marketing-pour-developpeurs-partie-3-le-site/ HTTP/1.1" 200 33728 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:30 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 265 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:33 -0800] "GET /florent-crivello-ingenieur-ios-a-kwarter HTTP/1.1" 301 336 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:38 -0800] "GET /marketing-pour-developpeurs-partie-1/feed/ HTTP/1.1" 200 1187 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:44 -0800] "GET /textme-cest-de-la-bombe/feed/ HTTP/1.1" 200 1151 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:50 -0800] "GET /nicolas-hazard-en-tete-de-file-de/feed/ HTTP/1.1" 200 1206 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:41:58 -0800] "GET /post/89732798888/john-sheehan-ceo-et-co-fondateur-de-runscope HTTP/1.1" 301 263 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:02 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/feed/ HTTP/1.1" 200 1211 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:08 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 27994 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:15 -0800] "GET /brice-favre-la-soif-de-creer/ HTTP/1.1" 200 28641 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:22 -0800] "GET /john-sheehan-ceo-et-co-fondateur-de-runscope/feed/ HTTP/1.1" 200 1207 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:28 -0800] "GET /blake-haggerty-evangeliste-startups-developpeurs/feed/ HTTP/1.1" 200 1234 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:34 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/feed/ HTTP/1.1" 200 1220 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:40 -0800] "GET /michael-ortali-ingenieur-informaticien-a/feed/ HTTP/1.1" 200 1207 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -167.114.156.198 - - [07/Feb/2016:22:42:47 -0800] "GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/feed/ HTTP/1.1" 200 1240 "-" "Domain Re-Animator Bot (http://domainreanimator.com) - support@domainreanimator.com" -198.58.102.158 - - [07/Feb/2016:22:43:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -207.46.13.30 - - [07/Feb/2016:22:50:20 -0800] "GET /tagged/pinterest HTTP/1.1" 301 523 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:22:50:57 -0800] "GET /post/104056058258 HTTP/1.1" 301 524 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.102.95 - - [07/Feb/2016:22:58:57 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.142.23 - jez [07/Feb/2016:23:06:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.138 - - [07/Feb/2016:23:08:35 -0800] "GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1" 200 8763 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.158 - - [07/Feb/2016:23:15:42 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.93.235 - - [07/Feb/2016:23:18:01 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29379 "http://piter.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -180.76.15.137 - - [07/Feb/2016:23:19:28 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -207.46.13.30 - - [07/Feb/2016:23:25:38 -0800] "GET /category/portraits/page/2/ HTTP/1.1" 200 7583 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [07/Feb/2016:23:25:41 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9700 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:23:25:46 -0800] "GET /les-francais-genies-de-la-silicon-valley/ HTTP/1.1" 200 8248 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [07/Feb/2016:23:25:48 -0800] "GET /nicolas-hazard-en-tete-de-file-de/ HTTP/1.1" 200 9492 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:23:26:05 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9112 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:23:26:08 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 9439 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.134 - - [07/Feb/2016:23:26:10 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10488 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.103.115 - - [07/Feb/2016:23:39:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 7090 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 373 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 1186 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1" 200 18764 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32895 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:17 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:18 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -197.253.4.10 - - [07/Feb/2016:23:46:18 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -141.8.184.15 - - [07/Feb/2016:23:48:42 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -130.193.51.3 - - [07/Feb/2016:23:48:48 -0800] "GET /category/canada/ HTTP/1.1" 200 5229 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [07/Feb/2016:23:48:53 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [07/Feb/2016:23:48:59 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 6861 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [07/Feb/2016:23:49:04 -0800] "GET /category/how-to/ HTTP/1.1" 200 6081 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [07/Feb/2016:23:49:09 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1" 200 2351 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -92.103.168.238 - - [07/Feb/2016:23:49:14 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -141.8.132.38 - - [07/Feb/2016:23:49:14 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -199.16.156.126 - - [07/Feb/2016:23:49:15 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -5.255.253.78 - - [07/Feb/2016:23:49:17 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 6861 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -62.210.250.66 - - [07/Feb/2016:23:51:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -193.49.247.169 - - [07/Feb/2016:23:57:31 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -193.49.247.169 - - [07/Feb/2016:23:57:31 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -198.58.102.158 - - [08/Feb/2016:00:03:50 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -2.1.72.179 - - [08/Feb/2016:00:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -91.103.43.50 - - [08/Feb/2016:00:17:05 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 212 "-" "Mozilla/4.0 (compatible;)" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:07 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:08 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -93.21.77.54 - - [08/Feb/2016:00:24:08 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1" -80.13.10.184 - - [08/Feb/2016:00:26:40 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15483 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:00:26:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.13.10.184 - - [08/Feb/2016:00:26:54 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.103.102 - - [08/Feb/2016:00:36:08 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.49 - - [08/Feb/2016:00:44:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.194.84.106 - - [08/Feb/2016:00:49:31 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -199.119.124.44 - - [08/Feb/2016:00:49:42 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=cab69af8d42b04c85d91e979)" -122.169.127.89 - - [08/Feb/2016:00:50:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -88.187.8.139 - - [08/Feb/2016:00:51:18 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9317 "https://www.google.fr" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:19 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1" 200 2773 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:20 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:21 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.8.139 - - [08/Feb/2016:00:51:29 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9912 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -122.169.127.89 - - [08/Feb/2016:00:51:42 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:00 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:14 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:24 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:41 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:52:57 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:23 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:38 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:53:52 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:17 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:30 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:54:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:01 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:17 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:32 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:55:46 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:56:04 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:56:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:56:29 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -66.249.64.132 - - [08/Feb/2016:00:56:44 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1" 200 10049 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -122.169.127.89 - - [08/Feb/2016:00:56:54 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:57:11 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -122.169.127.89 - - [08/Feb/2016:00:57:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -62.210.142.23 - jez [08/Feb/2016:01:06:19 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [08/Feb/2016:01:10:14 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -91.103.43.50 - - [08/Feb/2016:01:16:29 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -148.66.108.167 - - [08/Feb/2016:01:24:01 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -148.66.108.167 - - [08/Feb/2016:01:24:14 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -146.185.234.48 - - [08/Feb/2016:01:26:53 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1" 200 31264 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:00 -0800] "GET /category/how-to/ HTTP/1.1" 200 25303 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:06 -0800] "GET /category/canada/ HTTP/1.1" 200 16838 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:20 -0800] "GET /2015/01/ HTTP/1.1" 200 19821 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:29 -0800] "GET /2014/09/ HTTP/1.1" 200 21675 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -146.185.234.48 - - [08/Feb/2016:01:27:49 -0800] "GET /2014/05/ HTTP/1.1" 200 23145 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -144.76.80.55 - - [08/Feb/2016:01:31:15 -0800] "HEAD /site.zip HTTP/1.1" 404 348 "-" "Go-http-client/1.1" -50.116.30.23 - - [08/Feb/2016:01:33:31 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.82.148.10 - - [08/Feb/2016:01:40:59 -0800] "GET /feed/ HTTP/1.1" 200 63896 "-" "Scoop" -195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1" 200 2073 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:00 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:40:59 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803659 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2457 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:02 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:03 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 9688 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:04 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9099 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:06 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:01:41:07 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1" 200 2115 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:01:41:11 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z.jpg HTTP/1.1" 200 44181 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:12 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:01:41:13 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:01:41:16 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1" 200 768386 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-50x50.jpg HTTP/1.1" 200 1825 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:01:41:18 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -198.58.103.92 - - [08/Feb/2016:01:41:37 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:34 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:01:43:38 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:01:48:32 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15476 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:01:48:46 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:01:49:06 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:09 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:10 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:10 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:11 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -178.18.180.78 - - [08/Feb/2016:01:52:12 -0800] "GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1" 200 2745 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:48 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1" 200 2074 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -91.207.208.113 - - [08/Feb/2016:01:52:49 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -193.164.197.233 - - [08/Feb/2016:01:56:16 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.180.206.196 - - [08/Feb/2016:01:56:22 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01g.yandex.ru)" -193.164.197.233 - - [08/Feb/2016:01:56:30 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:42 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:43 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:43 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:01:59:46 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -205.167.7.244 - - [08/Feb/2016:02:06:31 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36" -70.211.135.194 - - [08/Feb/2016:02:08:20 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1" 200 20280 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:21 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:22 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -70.211.135.194 - - [08/Feb/2016:02:08:22 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -77.34.218.205 - - [08/Feb/2016:02:14:34 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Linux; Android 4.1.2; GT-I8552 Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.00 Yowser/2.5.3 Mobile Safari/537.36" -42.156.136.53 - - [08/Feb/2016:02:24:08 -0800] "GET / HTTP/1.1" 200 7274 "-" "YisouSpider" -206.214.15.241 - - [08/Feb/2016:02:33:02 -0800] "GET /wp-login.php HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0" -2.1.72.179 - - [08/Feb/2016:02:36:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.138 - - [08/Feb/2016:02:49:14 -0800] "GET /2015/01/ HTTP/1.1" 200 5314 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -89.251.61.141 - - [08/Feb/2016:02:52:17 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.58.99.82 - - [08/Feb/2016:02:54:04 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:13 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:14 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:14 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:15 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n5su4nS9Fe1sa6hof-50x50.jpg HTTP/1.1" 200 1897 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.69.188.61 - - [08/Feb/2016:02:54:22 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -193.48.4.6 - - [08/Feb/2016:02:55:52 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.246.217.7 - - [08/Feb/2016:02:56:17 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 36582 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 14285 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 7529 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 788 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:40 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-50x50.jpg HTTP/1.1" 200 2376 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.83.207.33 - - [08/Feb/2016:03:00:41 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:03:01:14 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15528 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:03:01:27 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:03:01:45 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -207.46.13.30 - - [08/Feb/2016:03:05:23 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -202.39.169.163 - - [08/Feb/2016:03:06:02 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -202.39.169.163 - - [08/Feb/2016:03:06:16 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 446 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -62.210.142.23 - jez [08/Feb/2016:03:06:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -162.243.175.194 - - [08/Feb/2016:03:11:42 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -180.76.15.144 - - [08/Feb/2016:03:19:23 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -46.118.116.135 - - [08/Feb/2016:03:20:11 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29314 "http://owohho.com/" "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0 ; .NET CLR 2.0.50215; SL Commerce Client v1.0; Tablet PC 2.0" -192.99.150.96 - - [08/Feb/2016:03:34:40 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -198.58.102.95 - - [08/Feb/2016:03:42:45 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -188.165.224.104 - - [08/Feb/2016:03:47:44 -0800] "GET /?author=2 HTTP/1.0" 200 31297 "-" "-" -198.58.103.115 - - [08/Feb/2016:03:50:46 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -54.158.4.90 - - [08/Feb/2016:04:03:14 -0800] "GET /category/how-to/feed/ HTTP/1.1" 200 25451 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:16 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:17 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -86.195.218.224 - - [08/Feb/2016:04:05:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.158 - - [08/Feb/2016:04:06:56 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.151.86.197 - - [08/Feb/2016:04:14:02 -0800] "GET /florent-crivello-ingenieur-ios-a-kwarter/ HTTP/1.1" 200 8644 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:03 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:04 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb0xb4FLj01sygmpd-50x50.jpg HTTP/1.1" 200 2535 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:08 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/florent-crivello-ingenieur-ios-a-kwarter/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -92.151.86.197 - - [08/Feb/2016:04:14:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36" -79.143.142.234 - - [08/Feb/2016:04:24:34 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -79.143.142.234 - - [08/Feb/2016:04:24:35 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.16.156.126 - - [08/Feb/2016:04:27:21 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9305 "https://www.google.fr" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:33 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:34 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -159.180.230.34 - - [08/Feb/2016:04:33:34 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0" -2.1.72.179 - - [08/Feb/2016:04:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:36 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:37 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2457 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:37:37 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.233.138.2 - - [08/Feb/2016:04:38:03 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -68.180.228.42 - - [08/Feb/2016:04:42:56 -0800] "GET /marketing-pour-developpeurs-partie-2 HTTP/1.1" 301 377 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -77.34.17.95 - - [08/Feb/2016:04:56:07 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.1.6475 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:04:56:33 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:04:56:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -176.189.254.114 - - [08/Feb/2016:04:59:43 -0800] "GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/ HTTP/1.1" 200 8898 "https://www.google.fr" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:45 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:46 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:46 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -176.189.254.114 - - [08/Feb/2016:04:59:47 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/arnaud-barbier-un-bidouilleur-haute-voltige-au/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0" -203.162.15.233 - - [08/Feb/2016:05:03:20 -0800] "POST /cgi-bin/php-cgi?%2D%64+%61%6C%6C%6F%77%5F%75%72%6C%5F%69%6E%63%6C%75%64%65%3D%6F%6E+%2D%64+%73%61%66%65%5F%6D%6F%64%65%3D%6F%66%66+%2D%64+%73%75%68%6F%73%69%6E%2E%73%69%6D%75%6C%61%74%69%6F%6E%3D%6F%6E+%2D%64+%64%69%73%61%62%6C%65%5F%66%75%6E%63%74%69%6F%6E%73%3D%22%22+%2D%64+%6F%70%65%6E%5F%62%61%73%65%64%69%72%3D%6E%6F%6E%65+%2D%64+%61%75%74%6F%5F%70%72%65%70%65%6E%64%5F%66%69%6C%65%3D%70%68%70%3A%2F%2F%69%6E%70%75%74+%2D%64+%63%67%69%2E%66%6F%72%63%65%5F%72%65%64%69%72%65%63%74%3D%30+%2D%64+%63%67%69%2E%72%65%64%69%72%65%63%74%5F%73%74%61%74%75%73%5F%65%6E%76%3D%30+%2D%6E HTTP/1.1" 404 15457 "-" "Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26(KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25" -109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 304 211 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 304 211 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:12 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 187 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:13 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 212 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:13 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 304 188 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:15 -0800] "GET /welcome-phil-jeudy/ HTTP/1.1" 200 7850 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:17 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1" 200 2463 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -109.26.209.86 - - [08/Feb/2016:05:05:19 -0800] "GET /welcome-phil-jeudy/ HTTP/1.1" 200 7902 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0" -62.210.142.23 - jez [08/Feb/2016:05:06:19 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.96.215 - - [08/Feb/2016:05:14:59 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.70.18.196 - - [08/Feb/2016:05:15:43 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -193.201.227.130 - - [08/Feb/2016:05:19:28 -0800] "GET /wp-admin/admin-ajax.php?action=revolution-slider_show_image&img=../wp-config.php HTTP/1.1" 200 448 "http://techmeup.co/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:30 -0800] "GET /wp-content/themes/echelon/lib/scripts/dl-skin.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/awake/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:33 -0800] "GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/elegance/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:36 -0800] "GET /wp-content/plugins/wp-filemanager/incl/libfile.php?&path=../../&filename=wp-config.php&action=download HTTP/1.1" 301 552 "http://techmeup.co/wp-content/themes/method/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:38 -0800] "GET /wp-content/themes/myriad/lib/scripts/dl-skin.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/modular/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:45 -0800] "GET /wp-content/themes/lote27/download.php?download=../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/parallelus-mingle/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:49 -0800] "GET /wp-content/themes/parallelus-salutation/framework/utilities/download/getfile.php?file=../../../../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/fusion/lib/scripts/dl-skin.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:52 -0800] "GET /wp-content/plugins/pica-photo-gallery/picadownload.php?imgname=../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-admin/admin-ajax.php?action=kbslider_show_image&img=../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:19:58 -0800] "GET /wp-content/themes/infocus2/lib/scripts/dl-skin.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:20:00 -0800] "GET /wp-content/themes/urbancity/lib/scripts/download.php?file=../../../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/themes/epic/includes/download.php?file=../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -193.201.227.130 - - [08/Feb/2016:05:20:01 -0800] "GET /wp-content/plugins/simple-download-button-shortcode/simple-download-button_dl.php?file=../../../../wp-config.php HTTP/1.1" 404 4868 "http://techmeup.co/wp-content/plugins/plugin-newsletter/preview.php?data=../../../../wp-config.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6 Chrome 19.0.1084.9" -162.243.175.75 - - [08/Feb/2016:05:23:06 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:34 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -193.5.240.1 - - [08/Feb/2016:05:25:35 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/michael-ferranti-responsable-marketing-a-mailgun/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9" -40.77.167.6 - - [08/Feb/2016:05:25:44 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1" 200 10008 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [08/Feb/2016:05:25:46 -0800] "GET /blake-haggerty-evangeliste-startups-developpeurs/ HTTP/1.1" 200 9957 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [08/Feb/2016:05:25:50 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8122 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [08/Feb/2016:05:25:53 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9306 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:05:25:57 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:05:26:00 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9752 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:05:26:06 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15506 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:05:26:09 -0800] "GET /marketing-pour-developpeurs-partie-2/ HTTP/1.1" 200 9429 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:05:26:11 -0800] "GET /category/portraits/page/4/ HTTP/1.1" 200 7296 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -5.39.17.245 - - [08/Feb/2016:05:27:45 -0800] "GET /rss HTTP/1.1" 301 418 "http://techmeup.co/rss" "SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914" -193.164.197.233 - - [08/Feb/2016:05:32:24 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [08/Feb/2016:05:32:35 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -37.9.118.28 - - [08/Feb/2016:05:36:10 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -83.193.62.96 - - [08/Feb/2016:05:36:56 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:37:08 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:38:22 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:38:34 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -51.255.65.60 - - [08/Feb/2016:05:39:30 -0800] "GET / HTTP/1.1" 200 7218 "-" "Mozilla/5.0 (compatible; AhrefsBot/5.0; +http://ahrefs.com/robot/)" -83.193.62.96 - - [08/Feb/2016:05:40:06 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:40:18 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:40:43 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -83.193.62.96 - - [08/Feb/2016:05:40:55 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -54.161.123.107 - - [08/Feb/2016:05:48:41 -0800] "GET /category/europe/feed/ HTTP/1.1" 200 27874 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -80.11.221.97 - - [08/Feb/2016:05:54:28 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1" 200 768387 "http://www.bing.com/images/search?q=suivez+nous+sur+facebook&view=detailv2&&id=CBBE7E8391E68472CA1923D98F6EFCE7709F8EF6&selectedIndex=0&ccid=k3%2bT1B3b&simid=607990219777050871&thid=OIP.M937f93d41ddbfa9fb7c4b9eafcbe1ce8o0" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:01 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb1bncXtIP1r792z4-50x50.jpg HTTP/1.1" 200 2531 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:02 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MMB29T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/44.0.2403.119 Mobile Safari/537.36 ACHEETAHI/2100502020" -85.69.109.184 - - [08/Feb/2016:05:57:08 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Dalvik/2.1.0 (Linux; U; Android 6.0.1; A0001 Build/MMB29T)" -199.16.156.124 - - [08/Feb/2016:05:58:07 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -80.13.10.184 - - [08/Feb/2016:06:03:20 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15507 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [08/Feb/2016:06:03:33 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15543 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.13.10.184 - - [08/Feb/2016:06:03:39 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.72.179 - - [08/Feb/2016:06:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -202.39.169.163 - - [08/Feb/2016:06:11:35 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1" 200 11364 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -202.39.169.163 - - [08/Feb/2016:06:12:00 -0800] "GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 370 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -202.39.169.163 - - [08/Feb/2016:06:12:10 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -185.46.214.61 - - [08/Feb/2016:06:16:39 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/crowdfunding-kickstarter-startup/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -212.195.42.141 - - [08/Feb/2016:06:18:48 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -212.195.42.141 - - [08/Feb/2016:06:18:50 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9351 "http://www.google.be/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&ved=0ahUKEwijt5W3rejKAhXLuhoKHVPPDxMQFggtMAU&url=http%3A%2F%2Ftechmeup.co%2Frostom-cheikh-aissa-de-gdf-suez-complexity-is%2F&usg=AFQjCNEhzyKRXoeuskF6upCjq9-M-mi-kA&bvm=bv.113370389,d.d2s" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:14 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:22:15 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -176.31.67.99 - - [08/Feb/2016:06:22:56 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15528 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:22:58 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:23:00 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.31.67.99 - - [08/Feb/2016:06:23:01 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1" 200 2099 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -194.7.114.2 - - [08/Feb/2016:06:24:34 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is/ HTTP/1.1" 200 9385 "http://www.google.be/url?sa=t&rct=j&q=&esrc=s&source=web&cd=6&ved=0ahUKEwijt5W3rejKAhXLuhoKHVPPDxMQFggtMAU&url=http%3A%2F%2Ftechmeup.co%2Frostom-cheikh-aissa-de-gdf-suez-complexity-is%2F&usg=AFQjCNEhzyKRXoeuskF6upCjq9-M-mi-kA&bvm=bv.113370389,d.d2s" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -194.7.114.2 - - [08/Feb/2016:06:24:42 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2458 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko" -198.58.102.155 - - [08/Feb/2016:06:27:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -207.241.237.221 - - [08/Feb/2016:06:32:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.0" 200 5107 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -86.199.111.82 - - [08/Feb/2016:06:36:48 -0800] "GET /post/107320013813/marketing-pour-developpeurs-partie-1 HTTP/1.1" 301 356 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -46.218.58.106 - - [08/Feb/2016:06:38:58 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:43.0) Gecko/20100101 Firefox/43.0" -46.218.58.106 - - [08/Feb/2016:06:38:58 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:43.0) Gecko/20100101 Firefox/43.0" -52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] "GET /2014/04/ HTTP/1.1" 200 6114 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] "GET /2014/12/ HTTP/1.1" 200 5966 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:12 -0800] "GET /2015/02/ HTTP/1.1" 200 7127 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:13 -0800] "GET /category/portraits/ HTTP/1.1" 200 7285 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:14 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9902 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:15 -0800] "GET /category/usa/ HTTP/1.1" 200 7424 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.90.30.177 - - [08/Feb/2016:06:41:15 -0800] "GET /category/europe/ HTTP/1.1" 200 7313 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36(KHTML,like Gecko) Chrome/40.0.2214.115 Safari/537.36" -52.91.89.233 - - [08/Feb/2016:06:42:00 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9041 "-" "-" -52.91.89.233 - - [08/Feb/2016:06:42:00 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9958 "-" "-" -50.116.28.209 - - [08/Feb/2016:06:47:22 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:19 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:06:55:20 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -66.249.64.132 - - [08/Feb/2016:07:00:00 -0800] "GET /2015/02/ HTTP/1.1" 200 7183 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -212.51.165.254 - - [08/Feb/2016:07:01:42 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4816 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -212.51.165.254 - - [08/Feb/2016:07:01:56 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4816 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.103.160 - - [08/Feb/2016:07:03:17 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 304 211 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 304 212 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -185.32.100.228 - - [08/Feb/2016:07:03:22 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0" -90.63.244.202 - - [08/Feb/2016:07:08:02 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15531 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:03 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.63.244.202 - - [08/Feb/2016:07:08:04 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:40 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10006 "https://www.google.nl/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:41 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -37.74.212.178 - - [08/Feb/2016:07:09:42 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -176.146.36.48 - - [08/Feb/2016:07:12:34 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -176.146.36.48 - - [08/Feb/2016:07:12:34 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.102.228.73 - - [08/Feb/2016:07:15:45 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:07:18:22 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:07:18:33 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:07:18:54 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -198.58.103.160 - - [08/Feb/2016:07:20:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.22.107.6 - - [08/Feb/2016:07:20:55 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -128.232.110.28 - - [08/Feb/2016:07:22:47 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 zgrab/0.x" -82.237.33.174 - - [08/Feb/2016:07:24:32 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [08/Feb/2016:07:24:44 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -198.58.102.49 - - [08/Feb/2016:07:28:09 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.164.197.233 - - [08/Feb/2016:07:34:16 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [08/Feb/2016:07:34:28 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.72.179 - - [08/Feb/2016:07:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -134.249.65.86 - - [08/Feb/2016:07:42:27 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29524 "http://akvamaster.dp.ua/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows XP)" -62.210.188.62 - - [08/Feb/2016:07:42:40 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.188.62 - - [08/Feb/2016:07:42:41 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.141.46 - - [08/Feb/2016:07:45:26 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.141.46 - - [08/Feb/2016:07:45:26 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -173.244.168.218 - - [08/Feb/2016:07:46:55 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "-" "Java/1.7.0_10" -54.93.47.160 - - [08/Feb/2016:07:47:45 -0800] "POST /wp-login.php HTTP/1.1" 200 1903 "https://duckduckgo.com/html+techmeup.co" "Mozilla/5.0 (Windows NT 6.0; WOW64; rv:28.0) techmeup.co/20100101 Firefox/28.0" -54.158.4.90 - - [08/Feb/2016:07:53:02 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 9519 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nga5swbqRY1sygmpd-50x50.jpg HTTP/1.1" 200 1983 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:05 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -37.97.107.89 - - [08/Feb/2016:07:54:11 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -66.249.64.138 - - [08/Feb/2016:07:55:20 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1" 200 11343 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.49 - - [08/Feb/2016:07:59:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.222.20.166 - - [08/Feb/2016:08:08:15 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -186.202.127.163 - - [08/Feb/2016:08:11:06 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -173.236.198.102 - - [08/Feb/2016:08:19:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -198.58.103.102 - - [08/Feb/2016:08:26:08 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -196.217.79.189 - - [08/Feb/2016:08:34:00 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:08:34:01 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -217.171.23.166 - - [08/Feb/2016:08:37:11 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:11 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:12 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:13 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:14 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1" 200 2400 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.171.23.166 - - [08/Feb/2016:08:37:20 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.13.10.184 - - [08/Feb/2016:08:39:19 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [08/Feb/2016:08:39:41 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -206.214.0.122 - - [08/Feb/2016:08:40:08 -0800] "GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1" 200 504 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" -193.54.67.93 - - [08/Feb/2016:08:41:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.67.93 - - [08/Feb/2016:08:41:21 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:44:34 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -142.137.49.90 - - [08/Feb/2016:08:46:01 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1" 200 2463 "http://techmeup.co/pierre-olivier-pod-dybman-le-tech-francais-de/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -162.243.175.218 - - [08/Feb/2016:08:50:24 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -176.128.106.15 - - [08/Feb/2016:08:50:25 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.128.106.15 - - [08/Feb/2016:08:50:37 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:47 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:48 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:48 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n636u5g0bD1sygmpd-50x50.jpg HTTP/1.1" 200 2371 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:49 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -87.91.108.37 - - [08/Feb/2016:08:59:55 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1" 200 309 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.142.23 - jez [08/Feb/2016:09:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.96.215 - - [08/Feb/2016:09:09:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1" 200 2055 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:28 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -195.68.195.30 - - [08/Feb/2016:09:10:34 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n8zzsrRyDF1sa6hof-50x50.jpg HTTP/1.1" 200 2181 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.64.132 - - [08/Feb/2016:09:11:59 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette HTTP/1.1" 301 442 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.250 - - [08/Feb/2016:09:18:09 -0800] "GET /liam-boogar-co-fondateur-et-ceo-rude-baguette/ HTTP/1.1" 200 10346 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -213.136.71.211 - - [08/Feb/2016:09:21:50 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -177.185.194.131 - - [08/Feb/2016:09:32:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -196.217.79.189 - - [08/Feb/2016:09:34:18 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:09:34:18 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:09:36:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -173.236.224.133 - - [08/Feb/2016:09:43:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 481 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -157.55.39.143 - - [08/Feb/2016:09:47:36 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.16.156.124 - - [08/Feb/2016:09:48:18 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -196.217.79.189 - - [08/Feb/2016:09:50:49 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:09:50:49 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:40 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfw3g9NCQc1r792z4-50x50.jpg HTTP/1.1" 200 2817 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:41 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -85.218.120.177 - - [08/Feb/2016:09:52:43 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?cf_action=sync_comments&post_id=27 HTTP/1.1" 200 308 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -92.139.71.249 - - [08/Feb/2016:09:55:08 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 366 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -92.139.71.249 - - [08/Feb/2016:09:55:11 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -92.139.71.249 - - [08/Feb/2016:09:55:23 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 442 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -92.139.71.249 - - [08/Feb/2016:09:55:29 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:30 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24078 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:32 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1" 200 2106 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:09:55:35 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:36 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_neyg93Sin01sa6hof-50x50.jpg HTTP/1.1" 200 2005 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:09:55:37 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:39 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9667 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:40 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1" 200 2351 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [08/Feb/2016:09:55:41 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9062 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37377 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:43 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:44 -0800] "GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/ HTTP/1.1" 200 7034 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] "GET /wp-content/uploads/2015/02/photo-7-50x50.jpg HTTP/1.1" 200 2288 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:09:55:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:09:55:46 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1" 200 1964 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -41.188.5.237 - - [08/Feb/2016:09:56:37 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 21900 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -41.188.5.216 - - [08/Feb/2016:09:57:44 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 206 346 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -41.188.5.216 - - [08/Feb/2016:09:57:52 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 206 347 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -41.188.5.216 - - [08/Feb/2016:09:58:00 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 33580 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:01:55 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:10:01:56 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -41.188.5.216 - - [08/Feb/2016:09:57:54 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 51100 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 Safari/537.36" -89.95.130.140 - - [08/Feb/2016:10:04:42 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw.png HTTP/1.1" 200 112061 "https://www.google.fr/" "Mozilla/5.0 (iPad; CPU OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -46.118.116.135 - - [08/Feb/2016:10:07:47 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29442 "http://fealq.com/" "Mozilla/5.0 (Windows NT 5.1; U; en) Opera 8.01" -62.210.250.66 - - [08/Feb/2016:10:07:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -202.39.169.163 - - [08/Feb/2016:10:10:52 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -202.39.169.163 - - [08/Feb/2016:10:11:04 -0800] "GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 370 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -202.39.169.163 - - [08/Feb/2016:10:11:08 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -176.154.81.156 - - [08/Feb/2016:10:11:54 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.154.81.156 - - [08/Feb/2016:10:12:04 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:13:09 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:10:13:10 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -90.127.2.18 - - [08/Feb/2016:10:14:47 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36" -90.127.2.18 - - [08/Feb/2016:10:14:48 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115505 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:17:50 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:19:09 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:10:19:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.64.132 - - [08/Feb/2016:10:21:49 -0800] "GET /2014/07/ HTTP/1.1" 200 6200 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.250.66 - - [08/Feb/2016:10:29:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -54.166.254.145 - - [08/Feb/2016:10:34:12 -0800] "GET /post/82751586873/techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 360 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -217.66.157.77 - - [08/Feb/2016:10:35:06 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Linux; Android 5.0.2; SM-T355 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.01 Yowser/2.5.2 Safari/537.36" -196.217.79.189 - - [08/Feb/2016:10:35:30 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -196.217.79.189 - - [08/Feb/2016:10:35:31 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:10:37:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.102.155 - - [08/Feb/2016:10:41:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:10:45:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:49:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:52:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:10:56:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:00:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:01:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -37.162.91.158 - - [08/Feb/2016:11:01:35 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -37.162.91.158 - - [08/Feb/2016:11:01:46 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 9489 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -69.163.208.122 - - [08/Feb/2016:11:02:00 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -78.253.11.28 - - [08/Feb/2016:11:04:20 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.154.246.91 - - [08/Feb/2016:11:06:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 629 "-" "-" -62.210.250.66 - - [08/Feb/2016:11:07:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:11:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -86.246.217.7 - - [08/Feb/2016:11:13:56 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -95.108.129.196 - - [08/Feb/2016:11:15:11 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01e.yandex.ru)" -192.99.107.206 - - [08/Feb/2016:11:18:20 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)" -82.220.38.35 - - [08/Feb/2016:11:19:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 481 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.99.82 - - [08/Feb/2016:11:20:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -142.137.49.90 - - [08/Feb/2016:11:22:43 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/pierre-olivier-pod-dybman-le-tech-francais-de/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:24:46 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.92 - - [08/Feb/2016:11:28:36 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:11:33:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [08/Feb/2016:11:36:17 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [08/Feb/2016:11:37:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:41:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:43:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:11:45:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.92 - - [08/Feb/2016:11:47:26 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:11:50:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -209.133.111.211 - - [08/Feb/2016:11:52:53 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" -213.245.234.126 - - [08/Feb/2016:11:55:37 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -213.245.234.126 - - [08/Feb/2016:11:55:50 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.245.234.126 - - [08/Feb/2016:11:55:52 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.15.155.77 - - [08/Feb/2016:11:58:00 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 304 187 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -80.15.155.77 - - [08/Feb/2016:11:58:11 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -80.15.155.77 - - [08/Feb/2016:11:58:13 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.2.7.2 CFNetwork/760.1.2 Darwin/15.0.0 (x86_64)" -155.56.68.218 - - [08/Feb/2016:11:59:49 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -155.56.68.218 - - [08/Feb/2016:11:59:49 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -82.235.177.32 - - [08/Feb/2016:12:01:04 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:06 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:06 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -82.235.177.32 - - [08/Feb/2016:12:01:07 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -198.58.102.155 - - [08/Feb/2016:12:09:27 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -37.59.46.141 - - [08/Feb/2016:12:16:45 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:47 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:49 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:51 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:53 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:56 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:16:58 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:00 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:02 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:05 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:07 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:09 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:11 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:13 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:16 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:18 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:20 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:22 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:25 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:27 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:29 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:31 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:33 -0800] "POST /xmlrpc.php HTTP/1.0" 200 629 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:35 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:37 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:39 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -37.59.46.141 - - [08/Feb/2016:12:17:41 -0800] "POST /xmlrpc.php HTTP/1.0" 200 55199 "-" "-" -80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:37 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:38 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:39 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.215.134.253 - - [08/Feb/2016:12:18:44 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/rencontre-avec-nicolas-dessaigne-ceo-dalgolia/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -51.255.65.84 - - [08/Feb/2016:12:20:48 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9903 "-" "Mozilla/5.0 (compatible; AhrefsBot/5.0; +http://ahrefs.com/robot/)" -104.236.110.18 - - [08/Feb/2016:12:30:51 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0" -104.236.110.18 - - [08/Feb/2016:12:31:13 -0800] "GET /category/europe/ HTTP/1.1" 200 7369 "http://alyaboom.com" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -104.236.110.18 - - [08/Feb/2016:12:31:13 -0800] "GET /category/usa/ HTTP/1.1" 200 7480 "http://alyaboom.com" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/537.75.14" -62.210.250.66 - - [08/Feb/2016:12:39:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.215.194.138 - - [08/Feb/2016:12:42:50 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -80.215.194.138 - - [08/Feb/2016:12:43:52 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -199.16.156.126 - - [08/Feb/2016:12:45:12 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au/ HTTP/1.1" 200 8188 "-" "Twitterbot/1.0" -80.215.194.138 - - [08/Feb/2016:12:45:44 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 206 347 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -80.215.194.138 - - [08/Feb/2016:12:45:45 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.4; E2033 Build/25.0.B.2.14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36" -66.249.64.138 - - [08/Feb/2016:12:50:44 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du HTTP/1.1" 301 439 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:55 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:56 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -176.184.13.111 - - [08/Feb/2016:12:52:56 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4brjxiiFb1sygmpd-50x50.jpg HTTP/1.1" 200 2491 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/600.6.3 (KHTML, like Gecko) Version/8.0.6 Safari/600.6.3" -66.249.64.250 - - [08/Feb/2016:12:53:44 -0800] "GET /post/93181549828/pierre-lacombe-de-parrot-a-la-poursuite-du HTTP/1.1" 301 362 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -213.136.69.163 - - [08/Feb/2016:12:55:16 -0800] "GET /HNAP1/ HTTP/1.1" 404 4816 "http://80.75.154.165/" "Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1" -198.58.103.36 - - [08/Feb/2016:13:05:05 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.199.68.116 - - [08/Feb/2016:13:09:47 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -69.171.230.112 - - [08/Feb/2016:13:14:43 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21481 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -85.25.197.18 - - [08/Feb/2016:13:19:50 -0800] "GET /category/think-different/ HTTP/1.1" 200 7150 "-" "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)" -85.25.197.18 - - [08/Feb/2016:13:19:52 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1" -87.231.195.241 - - [08/Feb/2016:13:26:25 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15556 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [08/Feb/2016:13:26:38 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15575 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -87.231.195.241 - - [08/Feb/2016:13:26:41 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [08/Feb/2016:13:26:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -68.180.228.42 - - [08/Feb/2016:13:29:09 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/feed/ HTTP/1.1" 200 883 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -2.1.201.36 - - [08/Feb/2016:13:36:13 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.137.93.235 - - [08/Feb/2016:13:42:09 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29419 "http://la-fa.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)" -178.137.93.235 - - [08/Feb/2016:13:43:16 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29414 "http://healbio.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.01" -66.249.84.151 - - [08/Feb/2016:13:50:36 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -211.1.226.112 - - [08/Feb/2016:13:55:46 -0800] "GET /?author=1 HTTP/1.0" 301 329 "-" "-" -91.210.146.133 - - [08/Feb/2016:14:00:27 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -2.1.201.36 - - [08/Feb/2016:14:06:20 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:38 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:39 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_ngwo89J1MF1r1bjfi-50x50.jpg HTTP/1.1" 200 2412 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:40 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:39 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.125.50.72 - - [08/Feb/2016:14:09:45 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/?cf_action=sync_comments&post_id=307 HTTP/1.1" 200 308 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.155 - - [08/Feb/2016:14:15:09 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -162.243.175.68 - - [08/Feb/2016:14:19:53 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -185.82.148.10 - - [08/Feb/2016:14:30:05 -0800] "GET /rss HTTP/1.1" 301 373 "-" "Scoop" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-50x50.jpg HTTP/1.1" 200 1826 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:08 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:09 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-50x50.jpeg HTTP/1.1" 200 1592 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:12 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1" 200 2074 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [08/Feb/2016:14:30:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:13 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8854 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8601 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1" 200 2099 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:17 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37377 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [08/Feb/2016:14:30:18 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [08/Feb/2016:14:30:21 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [08/Feb/2016:14:30:23 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -91.210.146.69 - - [08/Feb/2016:14:43:10 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:42 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -82.66.226.113 - - [08/Feb/2016:14:47:43 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/liam-boogar-co-fondateur-et-ceo-rude-baguette/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1" -66.249.64.229 - - [08/Feb/2016:14:47:45 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -91.210.146.69 - - [08/Feb/2016:14:54:26 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -198.58.102.158 - - [08/Feb/2016:15:00:36 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -2.1.201.36 - - [08/Feb/2016:15:06:24 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -91.210.146.69 - - [08/Feb/2016:15:09:18 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -31.34.43.241 - - [08/Feb/2016:15:14:20 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/537.86.4" -198.58.99.82 - - [08/Feb/2016:15:16:37 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.199.68.116 - - [08/Feb/2016:15:20:56 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -198.58.99.82 - - [08/Feb/2016:15:24:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.210.146.69 - - [08/Feb/2016:15:32:04 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -66.249.64.196 - - [08/Feb/2016:15:33:46 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -54.162.152.165 - - [08/Feb/2016:15:38:22 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9933 "-" "Mozilla/5.0 (compatible; linkdexbot/2.0; +http://www.linkdex.com/bots/)" -91.210.146.69 - - [08/Feb/2016:15:43:29 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -182.160.163.131 - - [08/Feb/2016:15:49:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -192.121.158.156 - - [08/Feb/2016:15:54:13 -0800] "GET / HTTP/1.0" 200 7191 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -68.180.228.42 - - [08/Feb/2016:15:55:16 -0800] "GET /?p=47 HTTP/1.1" 301 388 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -198.58.102.117 - - [08/Feb/2016:15:56:16 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.121.157.40 - - [08/Feb/2016:15:57:18 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -192.121.71.65 - - [08/Feb/2016:15:57:29 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -192.121.71.139 - - [08/Feb/2016:15:58:01 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -66.249.64.138 - - [08/Feb/2016:16:04:55 -0800] "GET /post/101762362273/les-demi-verites-de-monsieur-xavier-niel HTTP/1.1" 301 360 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -2.1.201.36 - - [08/Feb/2016:16:06:28 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.250 - - [08/Feb/2016:16:10:10 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 301 374 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -87.231.195.241 - - [08/Feb/2016:16:11:29 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -87.231.195.241 - - [08/Feb/2016:16:11:30 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -87.231.195.241 - - [08/Feb/2016:16:11:41 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -87.231.195.241 - - [08/Feb/2016:16:11:42 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.103.102 - - [08/Feb/2016:16:12:23 -0800] "GET /feed/ HTTP/1.1" 200 20987 "http://techmeup.co/feed/" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.210.146.69 - - [08/Feb/2016:16:17:56 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -160.33.66.122 - - [08/Feb/2016:16:26:51 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 304 190 "-" "Mozilla/4.0 (compatible;)" -178.154.189.201 - - [08/Feb/2016:16:29:51 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -205.139.141.54 - - [08/Feb/2016:16:33:23 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1" 200 9585 "-" "Mozilla/5.0 (compatible; Sysomos/1.0; +http://www.sysomos.com/; Sysomos)" -91.210.146.69 - - [08/Feb/2016:16:40:27 -0800] "POST /wp-login.php HTTP/1.1" 200 3059 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -54.67.52.9 - - [08/Feb/2016:16:43:59 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (Windows NT 6.3; rv:36.0 Gecko/20100101 Firefox/36.0" -198.58.103.28 - - [08/Feb/2016:16:52:08 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -91.210.146.69 - - [08/Feb/2016:17:03:20 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -50.116.30.23 - - [08/Feb/2016:17:08:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -83.166.234.6 - - [08/Feb/2016:17:13:10 -0800] "GET / HTTP/1.1" 200 7218 "-" "Mozilla/5.0 (Windows NT 5.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1" -91.210.146.69 - - [08/Feb/2016:17:15:07 -0800] "POST /wp-login.php HTTP/1.1" 200 3774 "http://alyaboom.com/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -192.99.107.236 - - [08/Feb/2016:17:18:09 -0800] "GET / HTTP/1.1" 200 7218 "-" "Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)" -207.46.13.30 - - [08/Feb/2016:17:26:18 -0800] "GET /tagged/pinterest HTTP/1.1" 301 523 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.147 - - [08/Feb/2016:17:26:29 -0800] "GET /tagged/rockstar HTTP/1.1" 301 522 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -66.249.64.132 - - [08/Feb/2016:17:28:57 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en HTTP/1.1" 301 444 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -50.116.30.23 - - [08/Feb/2016:17:32:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.132 - - [08/Feb/2016:17:35:06 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/?route=%2Fpost%2F%3Aid%2F%3Asummary HTTP/1.1" 200 9183 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -207.46.13.30 - - [08/Feb/2016:17:40:07 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10049 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:17:40:10 -0800] "GET /michael-ferranti-responsable-marketing-a-mailgun/ HTTP/1.1" 200 10560 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.30 - - [08/Feb/2016:17:40:12 -0800] "GET /guillaume-decugis-le-monde-de-la-tech-sous-tous/ HTTP/1.1" 200 10001 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [08/Feb/2016:17:40:18 -0800] "GET /je-viens-chercher-mon-stage-dans-la-silicon-valley/ HTTP/1.1" 200 11342 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:17:40:23 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15471 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:17:40:25 -0800] "GET /marketing-pour-developpeurs-partie-2/ HTTP/1.1" 200 9527 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:17:40:28 -0800] "GET /category/portraits/page/4/ HTTP/1.1" 200 7296 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [08/Feb/2016:17:40:34 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9966 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -66.249.64.250 - - [08/Feb/2016:17:41:05 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9881 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.95 - - [08/Feb/2016:17:55:51 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.96 - - [08/Feb/2016:18:03:49 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -207.241.237.220 - - [08/Feb/2016:18:09:19 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.0" 200 1674 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -207.241.237.221 - - [08/Feb/2016:18:18:49 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -178.154.224.114 - - [08/Feb/2016:18:34:04 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtweb01t.yandex.ru)" -162.243.175.234 - - [08/Feb/2016:18:38:15 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -198.58.103.115 - - [08/Feb/2016:18:51:54 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.132 - - [08/Feb/2016:19:00:10 -0800] "GET /du-side-project-a-google-le-fabuleux-parcours/ HTTP/1.1" 200 11188 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -207.46.13.30 - - [08/Feb/2016:19:07:12 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.99.82 - - [08/Feb/2016:19:08:05 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -180.76.15.149 - - [08/Feb/2016:19:19:16 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -50.116.30.23 - - [08/Feb/2016:19:32:05 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.102.96 - - [08/Feb/2016:19:40:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -209.133.111.211 - - [08/Feb/2016:19:51:38 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -2.1.201.36 - - [08/Feb/2016:20:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.102.155 - - [08/Feb/2016:20:11:53 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.138 - - [08/Feb/2016:20:16:51 -0800] "GET /feed/ HTTP/1.1" 200 20987 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -212.193.117.227 - - [08/Feb/2016:20:20:56 -0800] "GET / HTTP/1.1" 200 7274 "" "Mozilla/5.0 (compatible; statdom.ru/Bot; +http://statdom.ru/bot.html)" -185.25.48.72 - - [08/Feb/2016:20:24:05 -0800] "GET / HTTP/1.0" 200 33325 "-" "-" -62.210.250.66 - - [08/Feb/2016:20:32:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [08/Feb/2016:20:38:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -154.68.4.143 - - [08/Feb/2016:20:41:03 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:03 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:04 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:05 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:06 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:07 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -154.68.4.143 - - [08/Feb/2016:20:41:35 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Linux; Android 4.0.4; GT-S7562 Build/IMM76I) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.58 Mobile Safari/537.31" -85.26.241.76 - - [08/Feb/2016:20:43:32 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:37 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-300x225.jpg HTTP/1.1" 200 13031 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:38 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 200 9484 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -85.26.241.76 - - [08/Feb/2016:20:43:39 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 5.1; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [08/Feb/2016:20:44:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.102.95 - - [08/Feb/2016:20:51:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.138 - - [08/Feb/2016:20:58:45 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10473 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -185.25.48.72 - - [08/Feb/2016:21:02:12 -0800] "GET / HTTP/1.0" 200 33325 "-" "-" -62.210.142.23 - jez [08/Feb/2016:21:06:06 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.103.36 - - [08/Feb/2016:21:07:52 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.28 - - [08/Feb/2016:21:15:45 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [08/Feb/2016:21:19:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -69.195.124.123 - - [08/Feb/2016:21:28:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -178.255.215.65 - - [08/Feb/2016:21:41:02 -0800] "GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1" 301 396 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -178.255.215.65 - - [08/Feb/2016:21:41:48 -0800] "GET /comments/feed/ HTTP/1.1" 200 1442 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -198.58.102.95 - - [08/Feb/2016:21:51:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -198.58.103.160 - - [08/Feb/2016:21:59:35 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -77.75.76.168 - - [08/Feb/2016:22:08:09 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; SeznamBot/3.2; +http://fulltext.sblog.cz/)" -173.252.90.244 - - [08/Feb/2016:22:10:34 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9569 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -180.76.15.152 - - [08/Feb/2016:22:15:36 -0800] "GET /pierre-lacombe-de-parrot-a-la-poursuite-du/ HTTP/1.1" 200 9766 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -198.58.102.158 - - [08/Feb/2016:22:17:13 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -81.252.96.8 - - [08/Feb/2016:22:27:09 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 304 211 "-" "Mozilla/4.0 (compatible;)" -66.249.64.250 - - [08/Feb/2016:22:34:35 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9020 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -109.134.177.188 - - [08/Feb/2016:22:35:01 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -109.134.177.188 - - [08/Feb/2016:22:35:02 -0800] "HEAD /apple-touch-icon-precomposed.png HTTP/1.1" 404 447 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -134.249.65.86 - - [08/Feb/2016:22:36:45 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29530 "http://www.autowebmarket.com.ua/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) NS8/0.9.6" -178.137.93.235 - - [08/Feb/2016:22:49:43 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29364 "http://confib.ifmo.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322; FDM)" -185.82.148.10 - - [08/Feb/2016:22:59:31 -0800] "GET /rss HTTP/1.1" 301 373 "-" "Scoop" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [08/Feb/2016:22:59:34 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:35 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1" 200 3414 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:36 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:37 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8920 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb0xb4FLj01sygmpd-50x50.jpg HTTP/1.1" 200 2535 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:38 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:39 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8593 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1" 200 1964 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [08/Feb/2016:22:59:40 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34313 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:43 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [08/Feb/2016:22:59:44 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [08/Feb/2016:22:59:45 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -90.12.145.161 - - [08/Feb/2016:23:02:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -162.243.175.80 - - [08/Feb/2016:23:03:35 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -207.46.13.29 - - [08/Feb/2016:23:06:18 -0800] "GET /textme-cest-de-la-bombe/ HTTP/1.1" 200 8621 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:23:06:22 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9295 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [08/Feb/2016:23:06:24 -0800] "GET /marketing-pour-developpeurs-partie-2/?sthash.oxRUpt6F.mjjo HTTP/1.1" 200 9426 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [08/Feb/2016:23:06:32 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [08/Feb/2016:23:06:34 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1" 200 9566 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [08/Feb/2016:23:06:37 -0800] "GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1" 200 8829 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [08/Feb/2016:23:06:39 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9090 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [08/Feb/2016:23:06:44 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille/ HTTP/1.1" 200 9989 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -92.222.20.166 - - [08/Feb/2016:23:06:46 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -62.210.250.66 - - [08/Feb/2016:23:09:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -188.116.16.45 - - [08/Feb/2016:23:17:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -62.210.250.66 - - [08/Feb/2016:23:20:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:13 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -66.130.10.247 - - [08/Feb/2016:23:21:14 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:43.0) Gecko/20100101 Firefox/43.0" -180.76.15.13 - - [08/Feb/2016:23:22:35 -0800] "GET / HTTP/1.1" 200 7237 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -198.58.102.158 - - [08/Feb/2016:23:28:36 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.17.196 - - [08/Feb/2016:23:31:18 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29381 "http://brothers-smaller.ru/" "Mozilla/4.76 [en] (Windows NT 5.0; U)" -192.134.4.82 - - [08/Feb/2016:23:34:20 -0800] "GET / HTTP/1.1" 200 33373 "-" "DNSdelve HTTP tester/0.1 (running with Python 2.7.5; http://www.dnsdelve.net; bortzmeyer@nic.fr)" -207.241.229.215 - - [08/Feb/2016:23:38:26 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.0" 200 18754 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.96.215 - - [08/Feb/2016:23:44:35 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -209.133.111.211 - - [08/Feb/2016:23:46:44 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -192.99.107.192 - - [08/Feb/2016:23:55:33 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Mozilla/5.0 (compatible; meanpathbot/1.0; +http://www.meanpath.com/meanpathbot.html)" -2.1.201.36 - - [09/Feb/2016:00:06:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -199.16.156.126 - - [09/Feb/2016:00:08:15 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -198.58.102.49 - - [09/Feb/2016:00:09:06 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -86.246.217.7 - - [09/Feb/2016:00:16:32 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -50.116.30.23 - - [09/Feb/2016:00:25:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:20 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:21 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 304 211 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -213.244.3.234 - - [09/Feb/2016:00:28:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -62.210.250.66 - - [09/Feb/2016:00:28:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -85.168.56.140 - - [09/Feb/2016:00:29:38 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Linux; Android 4.4.2; SM-P600 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -66.249.64.138 - - [09/Feb/2016:00:30:00 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -80.13.10.184 - - [09/Feb/2016:00:30:05 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15523 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [09/Feb/2016:00:30:14 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.244.3.234 - - [09/Feb/2016:00:30:34 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 504 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -128.79.4.210 - - [09/Feb/2016:00:30:55 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:34:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:40:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -217.109.181.167 - - [09/Feb/2016:00:41:56 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -217.109.181.167 - - [09/Feb/2016:00:41:59 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -84.99.98.93 - - [09/Feb/2016:00:44:20 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:21 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:21 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_neyg93Sin01sa6hof-50x50.jpg HTTP/1.1" 200 2005 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:22 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 664 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:38 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -84.99.98.93 - - [09/Feb/2016:00:44:39 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Linux; Android 4.4.2; fr-fr; SAMSUNG SM-G800F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:46:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:00:53:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:01:02:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:01:06:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [09/Feb/2016:01:12:52 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -66.249.64.250 - - [09/Feb/2016:01:14:39 -0800] "GET /textme-cest-de-la-bombe/ HTTP/1.1" 200 8565 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -72.167.131.132 - - [09/Feb/2016:01:17:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -89.89.157.49 - - [09/Feb/2016:01:19:41 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0" -89.89.157.49 - - [09/Feb/2016:01:19:44 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:37.0) Gecko/20100101 Firefox/37.0" -62.210.250.66 - - [09/Feb/2016:01:23:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -193.164.197.233 - - [09/Feb/2016:01:25:37 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [09/Feb/2016:01:25:48 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -62.210.250.66 - - [09/Feb/2016:01:27:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -193.22.107.6 - - [09/Feb/2016:01:27:20 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:01:28:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.64.138 - - [09/Feb/2016:01:30:13 -0800] "GET /feed/ HTTP/1.1" 200 20987 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -109.2.229.51 - - [09/Feb/2016:01:30:52 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.3.144.122 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:53 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -109.2.229.51 - - [09/Feb/2016:01:30:54 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -66.249.64.141 - - [09/Feb/2016:01:33:07 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -37.187.162.183 - - [09/Feb/2016:01:34:36 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1" 200 9022 "-" "Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)" -2.1.201.36 - - [09/Feb/2016:01:36:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -207.241.237.221 - - [09/Feb/2016:01:41:02 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.0" 200 10080 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.102.158 - - [09/Feb/2016:01:45:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:31 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:30 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -213.137.172.138 - - [09/Feb/2016:01:47:33 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.63.153.205 - - [09/Feb/2016:01:47:36 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10121 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -66.249.64.250 - - [09/Feb/2016:01:48:38 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8834 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:19 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -89.225.230.70 - - [09/Feb/2016:01:50:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" -80.13.10.184 - - [09/Feb/2016:01:52:22 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:01:52:44 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -198.58.99.82 - - [09/Feb/2016:01:53:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.90.17.113 - - [09/Feb/2016:01:55:12 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:13 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:14 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:14 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:21 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -92.90.17.113 - - [09/Feb/2016:01:55:21 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/10-questions-a-arnaud-ruiz-le-plus-frenchie-des/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4" -62.210.250.66 - - [09/Feb/2016:01:58:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:02:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [09/Feb/2016:02:09:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -50.116.30.23 - - [09/Feb/2016:02:17:29 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [09/Feb/2016:02:24:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -178.137.93.235 - - [09/Feb/2016:02:26:06 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29352 "http://www.visa-china.ru/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461)" -62.210.250.66 - - [09/Feb/2016:02:27:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -90.43.108.157 - - [09/Feb/2016:02:30:54 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko)" -90.43.108.157 - - [09/Feb/2016:02:31:05 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 374 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -90.43.108.157 - - [09/Feb/2016:02:31:07 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -193.164.197.233 - - [09/Feb/2016:02:35:33 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -193.164.197.233 - - [09/Feb/2016:02:35:46 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -2.1.201.36 - - [09/Feb/2016:02:36:23 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -199.16.156.126 - - [09/Feb/2016:02:46:33 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:00 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4483 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -165.225.80.115 - - [09/Feb/2016:02:48:01 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -198.58.102.96 - - [09/Feb/2016:02:50:49 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.64.132 - - [09/Feb/2016:02:56:07 -0800] "GET /post/103124816768/paul-duan-le-super-heros-de-la-data-science-pour HTTP/1.1" 301 368 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.93.116 - - [09/Feb/2016:02:57:48 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n773jlxJpN1sa6hof-50x50.jpg HTTP/1.1" 200 2114 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:51 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.145.35.62 - - [09/Feb/2016:02:57:53 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/?cf_action=sync_comments&post_id=325 HTTP/1.1" 200 308 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -66.249.64.11 - - [09/Feb/2016:02:59:07 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -80.13.10.184 - - [09/Feb/2016:03:02:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:03:02:28 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -31.13.102.108 - - [09/Feb/2016:03:02:29 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6kfddJqSP1sa6hof-50x50.jpg HTTP/1.1" 206 2784 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -80.13.10.184 - - [09/Feb/2016:03:02:39 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -2.1.201.36 - - [09/Feb/2016:03:06:32 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.64.138 - - [09/Feb/2016:03:14:27 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15531 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.250 - - [09/Feb/2016:03:17:37 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10147 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -199.16.156.124 - - [09/Feb/2016:03:20:34 -0800] "GET /post/82763315244/florent-crivello-ingenieur-ios-a-kwarter HTTP/1.1" 301 304 "-" "Twitterbot/1.0" -141.8.132.38 - - [09/Feb/2016:03:22:54 -0800] "GET /favicon.ico HTTP/1.1" 200 238 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -66.249.64.250 - - [09/Feb/2016:03:26:47 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9249 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -193.48.136.254 - - [09/Feb/2016:03:34:47 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -193.48.136.254 - - [09/Feb/2016:03:34:49 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.48.136.254 - - [09/Feb/2016:03:35:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -66.249.64.132 - - [09/Feb/2016:03:38:56 -0800] "GET /rostom-cheikh-aissa-de-gdf-suez-complexity-is HTTP/1.1" 301 442 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.64.138 - - [09/Feb/2016:03:41:57 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10059 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -199.16.156.124 - - [09/Feb/2016:03:42:10 -0800] "GET /5-questions-a-ilan-abehassera/ HTTP/1.1" 200 8477 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:11 -0800] "GET /post/98806539878/le-jour-ou-les-startups-tech-nauront-plus-de-sens HTTP/1.1" 301 313 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:11 -0800] "GET /nathan-barraille-lead-developer-a-slideshare/ HTTP/1.1" 200 10474 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:12 -0800] "GET /post/86385064806/office-tour-de-rackspace-san-francisco-avec-blake HTTP/1.1" 301 313 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:13 -0800] "GET /post/97646423958/alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:15 -0800] "GET /post/85133972498/julie-foulon-de-betagroup-fait-swinguer-la-belgique HTTP/1.1" 301 315 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:14 -0800] "GET /le-talent-cache-dalexei-chemenda-co-fondateur-de/ HTTP/1.1" 200 8715 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:14 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1" 200 8831 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:16 -0800] "GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1" 301 287 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:17 -0800] "GET /julie-foulon-de-betagroup-fait-swinguer-la-belgique HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:16 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:16 -0800] "GET / HTTP/1.1" 200 7218 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:18 -0800] "GET /william-brendel-research-scientist-chez-amazon-le/ HTTP/1.1" 200 9659 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:22 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n773jlxJpN1sa6hof-300x298.jpg HTTP/1.1" 200 20477 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:03:42:19 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 381 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:03:42:23 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbn26ulwUH1sygmpd-200x300.jpg HTTP/1.1" 200 22021 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:21 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10070 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:03:42:29 -0800] "GET /textme-cest-de-la-bombe HTTP/1.1" 301 364 "-" "Twitterbot/1.0" -209.133.111.211 - - [09/Feb/2016:03:43:18 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -198.58.103.160 - - [09/Feb/2016:03:48:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.16.156.125 - - [09/Feb/2016:03:54:06 -0800] "GET /post/95372240798/pierre-olivier-pod-dybman-le-tech-francais-de HTTP/1.1" 301 309 "-" "Twitterbot/1.0" -180.76.15.31 - - [09/Feb/2016:03:55:08 -0800] "GET /category/how-to/ HTTP/1.1" 200 6045 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -178.255.215.65 - - [09/Feb/2016:03:57:50 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 8038 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:36 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:37 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:37 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:39 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -82.225.121.227 - - [09/Feb/2016:04:00:48 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (iPad; CPU OS 8_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/45.0.2454.89 Mobile/12B435 Safari/600.1.4" -198.58.102.49 - - [09/Feb/2016:04:04:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.59.148.209 - - [09/Feb/2016:04:06:22 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -2.1.201.36 - - [09/Feb/2016:04:06:38 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.102.158 - - [09/Feb/2016:04:12:19 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.162.19 - - [09/Feb/2016:04:14:23 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.46 - - [09/Feb/2016:04:18:06 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.46 - - [09/Feb/2016:04:18:06 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.47 - - [09/Feb/2016:04:22:13 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.141.47 - - [09/Feb/2016:04:22:13 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -173.244.168.194 - - [09/Feb/2016:04:23:41 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "-" "Java/1.7.0_10" -173.244.168.226 - - [09/Feb/2016:04:23:41 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "-" "Java/1.7.0_10" -80.13.10.184 - - [09/Feb/2016:04:26:00 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:04:26:11 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:04:26:32 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -198.58.103.28 - - [09/Feb/2016:04:38:02 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.139.71.249 - - [09/Feb/2016:04:39:12 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15513 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -92.139.71.249 - - [09/Feb/2016:04:39:24 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 366 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -92.139.71.249 - - [09/Feb/2016:04:39:26 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -198.58.102.95 - - [09/Feb/2016:04:46:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.164.197.233 - - [09/Feb/2016:04:52:59 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [09/Feb/2016:04:53:10 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:12 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:14 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -90.216.150.194 - - [09/Feb/2016:05:01:23 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Linux; Android 6.0; LG-H815 Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/38.0.2125.102 Mobile Safari/537.36" -62.210.142.23 - jez [09/Feb/2016:05:06:06 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.96.215 - - [09/Feb/2016:05:13:58 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -79.93.156.12 - - [09/Feb/2016:05:19:32 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:44.0) Gecko/20100101 Firefox/44.0" -31.130.135.67 - - [09/Feb/2016:05:23:13 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) YaBrowser/16.2.0.3537.10 Mobile/11D257 Safari/9537.53" -62.210.188.62 - - [09/Feb/2016:05:25:50 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -62.210.188.62 - - [09/Feb/2016:05:25:50 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A334 Safari/7534.48.3" -178.137.17.196 - - [09/Feb/2016:05:26:09 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29399 "http://smstraf.ru/" "Opera/9.0 (Windows NT 5.1; U; en)" -209.51.205.2 - - [09/Feb/2016:05:27:18 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "-" "Java/1.7.0_10" -5.39.17.245 - - [09/Feb/2016:05:29:22 -0800] "GET /feed/ HTTP/1.1" 200 20931 "http://techmeup.co/feed/" "SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914" -80.13.10.184 - - [09/Feb/2016:05:31:08 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:05:31:20 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:05:31:40 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -66.249.64.149 - - [09/Feb/2016:05:35:27 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -2.1.201.36 - - [09/Feb/2016:05:36:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -41.66.28.100 - - [09/Feb/2016:05:42:20 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 124528 "http://www.silicon-valley.fr/lentrepreneuriat-aventure-parsemee-echecs/" "Mozilla/5.0 (Linux; U; Android 4.0.4; fr-fr; GT-S7562 Build/IMM76I) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -92.151.95.5 - - [09/Feb/2016:05:53:09 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/interview-orny-impenge-silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -109.15.143.216 - - [09/Feb/2016:06:00:11 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:06:00:23 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -176.128.169.10 - - [09/Feb/2016:06:01:31 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/zone-confort-apprentissage/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -198.58.102.96 - - [09/Feb/2016:06:13:58 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -109.15.143.216 - - [09/Feb/2016:06:14:51 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:06:15:03 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.17.146.185 - - [09/Feb/2016:06:20:27 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.17.146.185 - - [09/Feb/2016:06:20:27 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.103.36 - - [09/Feb/2016:06:30:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:15 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:17 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -193.251.95.123 - - [09/Feb/2016:06:33:19 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9889 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; rv:43.0) Gecko/20100101 Firefox/43.0" -54.176.128.185 - - [09/Feb/2016:06:40:50 -0800] "GET /rss HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:25 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n636u5g0bD1sygmpd-50x50.jpg HTTP/1.1" 200 2371 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -163.5.250.131 - - [09/Feb/2016:06:45:26 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0" -80.13.10.184 - - [09/Feb/2016:06:45:49 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [09/Feb/2016:06:45:51 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:06:46:02 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -41.225.136.131 - - [09/Feb/2016:06:50:25 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10065 "https://www.google.tn/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:27 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:28 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -41.225.136.131 - - [09/Feb/2016:06:50:28 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -5.9.85.4 - - [09/Feb/2016:06:55:01 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.0" 200 11577 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -198.58.103.115 - - [09/Feb/2016:06:55:18 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie-particuliere-du" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.201.59.78 - - [09/Feb/2016:07:00:26 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.103.102 - - [09/Feb/2016:07:03:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -173.234.159.250 - - [09/Feb/2016:07:03:38 -0800] "GET /steve-marx-developer-advocate-dropbox HTTP/1.0" 301 352 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -173.234.159.250 - - [09/Feb/2016:07:03:44 -0800] "GET /office-tour-de-rackspace-san-francisco-avec HTTP/1.0" 301 358 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.223.84.10 - - [09/Feb/2016:07:05:33 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:07:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.154.189.201 - - [09/Feb/2016:07:11:01 -0800] "GET /category/portraits/ HTTP/1.1" 200 7341 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -81.252.96.8 - - [09/Feb/2016:07:14:20 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 212 "-" "Mozilla/4.0 (compatible;)" -180.76.15.138 - - [09/Feb/2016:07:19:03 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:04 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:05 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:20:07 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-50x50.jpg HTTP/1.1" 200 2609 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -198.58.103.160 - - [09/Feb/2016:07:20:35 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -82.226.78.218 - - [09/Feb/2016:07:21:27 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:28 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:21:30 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:31 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_nbjvoh6HDc1sa6hof-50x50.jpg HTTP/1.1" 200 2074 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:21:32 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -109.31.68.56 - - [09/Feb/2016:07:21:43 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/47.0.2526.73 Chrome/47.0.2526.73 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:30 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:31 -0800] "GET /wp-content/uploads/2014/05/Screen-Shot-2015-02-22-at-12.33.02-AM-50x50.png HTTP/1.1" 200 4803 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:32 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/45.0.2454.101 Chrome/45.0.2454.101 Safari/537.36" -82.226.78.218 - - [09/Feb/2016:07:22:48 -0800] "GET /guillaume-charmes-meilleur-developpeur-du-monde/ HTTP/1.1" 200 8246 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:49 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.226.78.218 - - [09/Feb/2016:07:22:52 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0" -157.55.39.161 - - [09/Feb/2016:07:26:32 -0800] "GET /tagged/rockstar HTTP/1.1" 301 522 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -54.193.210.75 - - [09/Feb/2016:07:29:21 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -130.0.236.153 - - [09/Feb/2016:07:31:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -199.16.156.125 - - [09/Feb/2016:07:35:22 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:22 -0800] "GET /post/103488947853/textme-cest-de-la-bombe HTTP/1.1" 301 287 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:23 -0800] "GET /post/99978147058/du-side-project-a-google-le-fabuleux-parcours-dhoa-v HTTP/1.1" 301 316 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:23 -0800] "GET /post/96006277128/xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1" 301 314 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:25 -0800] "GET /post/98806539878/le-jour-ou-les-startups-tech-nauront-plus-de-sens HTTP/1.1" 301 313 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:26 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja-entrepreneur HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:07:35:26 -0800] "GET /post/88351742277/michael-ferranti-responsable-marketing-a-mailgun-nous HTTP/1.1" 301 317 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:07:35:26 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour HTTP/1.1" 301 389 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:27 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique HTTP/1.1" 301 385 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:27 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:29 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre HTTP/1.1" 301 378 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:07:35:29 -0800] "GET /les-demi-verites-de-monsieur-xavier-niel/?utm_term=0_f60dad0472-746ae4d6a9-66832769&utm_content=bufferf9d3f&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer HTTP/1.1" 200 12943 "-" "Twitterbot/1.0" -199.16.156.125 - - [09/Feb/2016:07:35:32 -0800] "GET /mathieu-ghaleb-la-superstar-de-lombre/ HTTP/1.1" 200 12227 "-" "Twitterbot/1.0" -178.137.17.196 - - [09/Feb/2016:07:36:43 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29488 "http://xn-----6kcaacnblni5c5bicdpcmficy.xn--p1ai/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; Win64; AMD64)" -93.174.93.241 - - [09/Feb/2016:07:36:53 -0800] "GET //phpmyadmin/scripts/setup.php HTTP/1.1" 403 478 "-" "-" -130.0.236.153 - - [09/Feb/2016:07:37:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -46.118.116.135 - - [09/Feb/2016:07:38:43 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29392 "http://ufa.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; FREE; .NET CLR 1.1.4322)" -130.0.236.153 - - [09/Feb/2016:07:43:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:07:46:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.13.10.184 - - [09/Feb/2016:07:48:55 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [09/Feb/2016:07:49:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:07:49:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.117 - - [09/Feb/2016:07:53:21 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.16.156.126 - - [09/Feb/2016:07:57:14 -0800] "GET /post/104056058258/les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 301 310 "-" "Twitterbot/1.0" -207.241.229.198 - - [09/Feb/2016:08:01:27 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.0" 200 8997 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -2.1.201.36 - - [09/Feb/2016:08:06:21 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -180.76.15.149 - - [09/Feb/2016:08:08:12 -0800] "GET /category/europe/ HTTP/1.1" 200 7332 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -207.241.229.215 - - [09/Feb/2016:08:11:42 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.0" 200 16220 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.103.160 - - [09/Feb/2016:08:18:16 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:08:25:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -86.246.217.7 - - [09/Feb/2016:08:32:16 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -68.180.228.42 - - [09/Feb/2016:08:35:44 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 9636 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -81.242.141.238 - - [09/Feb/2016:08:37:33 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:34 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:35 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:38 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -81.242.141.238 - - [09/Feb/2016:08:37:40 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.16.156.126 - - [09/Feb/2016:08:37:45 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-300x225.jpg HTTP/1.1" 200 21425 "-" "Twitterbot/1.0" -199.16.156.124 - - [09/Feb/2016:08:40:09 -0800] "GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -81.252.96.8 - - [09/Feb/2016:08:44:53 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 36583 "-" "Mozilla/4.0 (compatible;)" -51.254.131.246 - - [09/Feb/2016:08:48:52 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -130.0.236.153 - - [09/Feb/2016:08:51:45 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:08:57:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -109.15.143.216 - - [09/Feb/2016:09:00:44 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:09:00:56 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -81.252.96.8 - - [09/Feb/2016:09:02:13 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -217.195.28.157 - - [09/Feb/2016:09:04:34 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -217.195.28.157 - - [09/Feb/2016:09:04:34 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko" -2.1.201.36 - - [09/Feb/2016:09:06:21 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -199.119.124.43 - - [09/Feb/2016:09:07:35 -0800] "GET /rss HTTP/1.1" 301 418 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=e020a4234ced4329fa4063c1)" -130.0.236.153 - - [09/Feb/2016:09:09:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -92.222.20.166 - - [09/Feb/2016:09:12:46 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -130.0.236.153 - - [09/Feb/2016:09:15:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -176.147.244.57 - - [09/Feb/2016:09:17:05 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -176.147.244.57 - - [09/Feb/2016:09:17:17 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -111.248.98.33 - - [09/Feb/2016:09:19:04 -0800] "CONNECT vip163mx00.mxmail.netease.com:25 HTTP/1.0" 404 15416 "-" "-" -89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:36 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32895 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.121.185.36 - - [09/Feb/2016:09:20:37 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.102.155 - - [09/Feb/2016:09:23:22 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -157.55.39.231 - - [09/Feb/2016:09:28:39 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -50.62.176.163 - - [09/Feb/2016:09:31:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -130.0.236.153 - - [09/Feb/2016:09:36:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -185.82.148.10 - - [09/Feb/2016:09:40:39 -0800] "GET /feed/ HTTP/1.1" 200 63896 "-" "Scoop" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4391 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:40 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803659 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_negm7m1xwx1sygmpd-50x50.jpg HTTP/1.1" 200 1740 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:43 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 9679 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n5cg5zlThJ1sa6hof-50x50.jpg HTTP/1.1" 200 2073 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:44 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9085 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:46 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [09/Feb/2016:09:40:47 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1" 200 2400 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37377 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1" 200 2472 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [09/Feb/2016:09:40:51 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [09/Feb/2016:09:40:52 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media.jpg HTTP/1.1" 200 768386 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] "GET /wp-content/uploads/2015/02/Hedge-Funds-and-Social-Media-50x50.jpg HTTP/1.1" 200 1964 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [09/Feb/2016:09:40:53 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -130.0.236.153 - - [09/Feb/2016:09:42:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:09:48:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:49:59 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:50:00 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:50:03 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -80.12.43.142 - - [09/Feb/2016:09:50:04 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.82 Chrome/48.0.2564.82 Safari/537.36" -193.54.23.146 - - [09/Feb/2016:09:53:01 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15536 "https://www.google.fr" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:03 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:04 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:05 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -193.54.23.146 - - [09/Feb/2016:09:53:06 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.58.102.96 - - [09/Feb/2016:09:55:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -192.241.154.80 - - [09/Feb/2016:10:01:35 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -130.0.236.153 - - [09/Feb/2016:10:03:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -41.207.202.240 - - [09/Feb/2016:10:03:29 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36" -198.58.102.95 - - [09/Feb/2016:10:03:32 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -41.207.202.240 - - [09/Feb/2016:10:05:23 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; ms-office; MSOffice 14)" -2.1.201.36 - - [09/Feb/2016:10:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -109.15.143.216 - - [09/Feb/2016:10:07:27 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [09/Feb/2016:10:07:39 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:10:12:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.215.158.236 - - [09/Feb/2016:10:15:58 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4" -198.58.103.160 - - [09/Feb/2016:10:20:26 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -66.249.69.137 - - [09/Feb/2016:10:24:28 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -2.12.177.82 - - [09/Feb/2016:10:27:38 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la HTTP/1.1" 301 442 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -2.12.177.82 - - [09/Feb/2016:10:27:41 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.12.177.82 - - [09/Feb/2016:10:27:53 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:10:30:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -90.32.186.33 - - [09/Feb/2016:10:33:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:32 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:33 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:36 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e11-50x50.jpg HTTP/1.1" 200 2747 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -90.32.186.33 - - [09/Feb/2016:10:33:38 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/je-viens-chercher-mon-stage-dans-la-silicon-valley/" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0" -2.1.201.36 - - [09/Feb/2016:10:36:29 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:10:44:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:10:50:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:10:55:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.103.92 - - [09/Feb/2016:11:03:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.142.23 - jez [09/Feb/2016:11:06:08 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.69.73 - - [09/Feb/2016:11:10:17 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9668 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -132.211.90.115 - - [09/Feb/2016:11:12:44 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8584 "https://www.facebook.com" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:46 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:47 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:47 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -132.211.90.115 - - [09/Feb/2016:11:12:49 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9687 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:44.0) Gecko/20100101 Firefox/44.0" -66.249.69.73 - - [09/Feb/2016:11:16:28 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.69.57 - - [09/Feb/2016:11:19:37 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10107 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -160.33.66.122 - - [09/Feb/2016:11:20:02 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 304 189 "-" "Mozilla/4.0 (compatible;)" -130.0.236.153 - - [09/Feb/2016:11:23:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:11:28:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -88.185.95.106 - - [09/Feb/2016:11:30:54 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -88.185.95.106 - - [09/Feb/2016:11:30:56 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -207.46.13.29 - - [09/Feb/2016:11:34:16 -0800] "GET /tagged/robin-des-bois HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -192.99.150.96 - - [09/Feb/2016:11:36:02 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -141.8.132.98 - - [09/Feb/2016:11:36:40 -0800] "GET /category/how-to/ HTTP/1.1" 200 6081 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:36:45 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:36:50 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:36:55 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 6860 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:11:37:00 -0800] "GET /category/canada/ HTTP/1.1" 200 5228 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:11:37:05 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:11:37:08 -0800] "GET /category/usa/ HTTP/1.1" 200 7479 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:11:37:13 -0800] "GET /category/portraits/ HTTP/1.1" 200 7340 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -62.210.250.66 - - [09/Feb/2016:11:40:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -209.133.111.211 - - [09/Feb/2016:11:46:49 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" -130.0.236.153 - - [09/Feb/2016:11:49:56 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -213.245.234.126 - - [09/Feb/2016:11:50:04 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -213.245.234.126 - - [09/Feb/2016:11:50:16 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -5.9.94.207 - - [09/Feb/2016:11:51:40 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1" -5.9.94.207 - - [09/Feb/2016:11:51:49 -0800] "GET /category/la-rubrique-de-philippe-jeudy/ HTTP/1.1" 200 29344 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36" -5.9.94.207 - - [09/Feb/2016:11:51:51 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1" 200 28401 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31" -5.9.94.207 - - [09/Feb/2016:11:51:52 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/ HTTP/1.1" 200 30098 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:21.0) Gecko/20130331 Firefox/21.0" -5.9.94.207 - - [09/Feb/2016:11:51:53 -0800] "GET /2014/07/ HTTP/1.1" 200 23285 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:21.0) Gecko/20100101 Firefox/21.0" -5.9.94.207 - - [09/Feb/2016:11:51:54 -0800] "GET /2014/11/ HTTP/1.1" 200 22701 "-" "Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/ 20120405 Firefox/14.0.1" -5.9.94.207 - - [09/Feb/2016:11:52:03 -0800] "GET /impressum.htm HTTP/1.1" 404 15493 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36" -5.9.94.207 - - [09/Feb/2016:11:52:04 -0800] "GET /imprint.htm HTTP/1.1" 404 15493 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20130331 Firefox/21.0" -198.58.103.36 - - [09/Feb/2016:11:53:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:11:55:48 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.117 - - [09/Feb/2016:12:00:54 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:12:04:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:12:07:31 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -141.212.122.177 - - [09/Feb/2016:12:11:19 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 zgrab/0.x" -130.0.236.153 - - [09/Feb/2016:12:13:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.241.229.148 - - [09/Feb/2016:12:17:21 -0800] "GET /comments/feed/ HTTP/1.0" 200 3020 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -62.210.250.66 - - [09/Feb/2016:12:17:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:22:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:12:27:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:27 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.102.146.188 - - [09/Feb/2016:12:28:28 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:28:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:12:31:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.241.237.220 - - [09/Feb/2016:12:33:56 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.0" 200 25153 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1" 200 2055 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:20 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -88.177.229.97 - - [09/Feb/2016:12:35:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:12:36:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:40:16 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.231.13.152 - - [09/Feb/2016:12:42:46 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:46 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -78.231.13.152 - - [09/Feb/2016:12:42:47 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/rostom-cheikh-aissa-de-gdf-suez-complexity-is/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/600.7.12 (KHTML, like Gecko) Version/8.0.7 Safari/600.7.12" -130.0.236.153 - - [09/Feb/2016:12:43:13 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -46.118.116.135 - - [09/Feb/2016:12:48:56 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29442 "http://pornodojd.ru/" "Opera/7.11 (Windows NT 5.1; U) [en]" -62.210.250.66 - - [09/Feb/2016:12:49:06 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -95.65.34.177 - - [09/Feb/2016:12:52:00 -0800] "GET / HTTP/1.0" 200 29209 "-" "Opera/9.80 (X11; Linux x86_64) Presto/2.12.388 Version/12.16" -82.243.21.14 - - [09/Feb/2016:12:53:56 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15494 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:53:59 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:54:00 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.243.21.14 - - [09/Feb/2016:12:54:00 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:12:54:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -83.141.182.197 - - [09/Feb/2016:12:55:47 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -83.141.182.197 - - [09/Feb/2016:12:55:48 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 4.4.2; Lenovo A7600-F Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Safari/537.36" -144.76.12.78 - - [09/Feb/2016:12:58:32 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.250.66 - - [09/Feb/2016:12:58:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -144.76.12.78 - - [09/Feb/2016:12:58:45 -0800] "GET /search/%22%3E%3Ch2%3E%3Ca+href=%22http://com-smm.ru%22%3E%D1%82%D0%BE%D1%80%D1%80%D0%B5%D0%BD%D1%82+%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5+%D1%81%D0%B0%D0%B9%D1%82%D0%B0%3C/a%3E%3C/h2%3E/feed/rss2/ HTTP/1.0" 200 993 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.250.66 - - [09/Feb/2016:13:01:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -37.163.228.232 - - [09/Feb/2016:13:04:19 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 436 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -37.163.228.232 - - [09/Feb/2016:13:04:21 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -37.163.228.232 - - [09/Feb/2016:13:04:33 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.142.23 - jez [09/Feb/2016:13:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -40.77.167.6 - - [09/Feb/2016:13:07:56 -0800] "GET /archive/2015/1 HTTP/1.1" 404 4924 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:13:13:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:16:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:13:20:16 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:13:24:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.199.68.116 - - [09/Feb/2016:13:28:56 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -173.201.196.161 - - [09/Feb/2016:13:30:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -130.0.236.153 - - [09/Feb/2016:13:33:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -178.137.17.196 - - [09/Feb/2016:13:36:44 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 307 "http://tolyatti.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" -130.0.236.153 - - [09/Feb/2016:13:39:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:42:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:45:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:13:48:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.241.229.149 - - [09/Feb/2016:13:53:52 -0800] "GET /wp-content/themes/great/style.css HTTP/1.0" 200 36546 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -198.58.102.95 - - [09/Feb/2016:13:55:20 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -88.162.200.224 - - [09/Feb/2016:14:00:23 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-300x225.jpg HTTP/1.1" 200 17875 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/12.0.68608 Mobile/13C75 Safari/600.1.4" -198.58.103.102 - - [09/Feb/2016:14:03:24 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -178.137.93.235 - - [09/Feb/2016:14:05:45 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29373 "http://piter.xrus.org/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MRA 4.6 (build 01425); MRSPUTNIK 1, 5, 0, 19 SW)" -199.16.156.125 - - [09/Feb/2016:14:06:24 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -213.251.182.106 - - [09/Feb/2016:14:07:25 -0800] "HEAD /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 298 "http://www.les-aventures-de-la-famille-bourg.com" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.187.168.241 - - [09/Feb/2016:14:11:05 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*" -40.77.167.6 - - [09/Feb/2016:14:11:49 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:10 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:11 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25163 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:11 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1" 200 20280 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:13 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:15 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-300x225.jpg HTTP/1.1" 200 13168 "http://techmeup.co/category/how-to/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:15 -0800] "GET /wp-content/uploads/2015/01/tumblr_inline_niqsunAsTl1spe2e1-300x225.jpg HTTP/1.1" 200 23924 "http://techmeup.co/category/how-to/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:23 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 758 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.116.74.197 - - [09/Feb/2016:14:12:33 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -68.180.228.42 - - [09/Feb/2016:14:14:19 -0800] "GET /xmlrpc.php HTTP/1.1" 200 277 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -141.8.132.98 - - [09/Feb/2016:14:15:19 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.98 - - [09/Feb/2016:14:15:25 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -198.58.103.36 - - [09/Feb/2016:14:19:31 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -87.231.195.241 - - [09/Feb/2016:14:23:59 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15456 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [09/Feb/2016:14:24:02 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -87.231.195.241 - - [09/Feb/2016:14:24:11 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15494 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -87.231.195.241 - - [09/Feb/2016:14:24:13 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -62.210.250.66 - - [09/Feb/2016:14:25:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:14:26:45 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -162.243.175.84 - - [09/Feb/2016:14:29:39 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -86.246.217.7 - - [09/Feb/2016:14:32:15 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -207.46.13.35 - - [09/Feb/2016:14:32:32 -0800] "GET /category/how-to/ HTTP/1.1" 200 6082 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:14:32:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -85.255.232.11 - - [09/Feb/2016:14:33:31 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 593 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (X11; CrOS x86_64 7647.73.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.92 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:14:35:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -89.89.153.231 - - [09/Feb/2016:14:38:23 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:24 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:28 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -89.89.153.231 - - [09/Feb/2016:14:38:29 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -40.77.167.6 - - [09/Feb/2016:14:41:18 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 437 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -41.228.167.4 - - [09/Feb/2016:14:43:56 -0800] "GET /wp-login.php HTTP/1.1" 200 3065 "-" "Mozilla/5.0 (X11; Linux i686; rv:2.0.1) Gecko/20100101 Firefox/4.0.1" -130.0.236.153 - - [09/Feb/2016:14:44:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.43.112 - - [09/Feb/2016:14:46:45 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -130.0.236.153 - - [09/Feb/2016:14:47:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 10050 "https://www.google.fr" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:06 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n43vwqRZpY1r792z4-50x50.jpg HTTP/1.1" 200 2491 "http://techmeup.co/creer-sa-startup-seul-et-la-revendre-a-un-geant/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -78.193.52.251 - - [09/Feb/2016:14:51:07 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.58.103.36 - - [09/Feb/2016:14:52:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -40.77.167.76 - - [09/Feb/2016:14:52:18 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:14:52:24 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [09/Feb/2016:14:52:43 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:14:52:58 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:14:52:59 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -78.154.190.29 - - [09/Feb/2016:14:54:48 -0800] "GET /?author=1 HTTP/1.1" 200 6136 "-" "Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)" -78.154.190.29 - - [09/Feb/2016:14:54:51 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:53 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:55 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:56 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:54:58 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:00 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:02 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:03 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:05 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:07 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:08 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:10 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:12 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:13 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:15 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:17 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:18 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:20 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:22 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:23 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:25 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:27 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:28 -0800] "POST /wp-login.php HTTP/1.1" 200 1897 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:30 -0800] "POST /wp-login.php HTTP/1.1" 200 1897 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:32 -0800] "POST /wp-login.php HTTP/1.1" 200 1862 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:34 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:36 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:38 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:40 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:42 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:44 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:45 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:47 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:50 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:51 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:53 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:55 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:56 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:55:58 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:00 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:01 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:03 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:05 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:06 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:08 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:09 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:11 -0800] "POST /wp-login.php HTTP/1.1" 200 1904 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -130.0.236.153 - - [09/Feb/2016:14:56:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.154.190.29 - - [09/Feb/2016:14:56:14 -0800] "POST /wp-login.php HTTP/1.1" 200 1903 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:15 -0800] "POST /wp-login.php HTTP/1.1" 200 1903 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:17 -0800] "GET /?author=3 HTTP/1.1" 200 6635 "-" "Chilkat/1.0.0 (+http://www.chilkatsoft.com/ChilkatHttpUA.asp)" -78.154.190.29 - - [09/Feb/2016:14:56:19 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:20 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:22 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:24 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:26 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:27 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:29 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:30 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -78.154.190.29 - - [09/Feb/2016:14:56:32 -0800] "POST /wp-login.php HTTP/1.1" 200 1898 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.1; hu; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12" -40.77.167.6 - - [09/Feb/2016:14:56:48 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 437 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.102.158 - - [09/Feb/2016:15:00:00 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [09/Feb/2016:15:05:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:15:08:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:15:11:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:15:14:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.55.39.231 - - [09/Feb/2016:15:17:14 -0800] "GET /tagged/MotionLead HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -90.79.192.180 - - [09/Feb/2016:15:17:16 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.79.192.180 - - [09/Feb/2016:15:17:27 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -180.76.15.15 - - [09/Feb/2016:15:19:18 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -90.79.192.180 - - [09/Feb/2016:15:19:50 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -90.79.192.180 - - [09/Feb/2016:15:20:02 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [09/Feb/2016:15:23:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:15:26:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -88.171.181.51 - - [09/Feb/2016:15:28:16 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -88.171.181.51 - - [09/Feb/2016:15:28:16 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -62.210.250.66 - - [09/Feb/2016:15:29:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:15:34:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -162.243.175.172 - - [09/Feb/2016:15:35:44 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -2.1.201.36 - - [09/Feb/2016:15:36:22 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:15:40:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7663 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:01 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15527 "https://www.google.fr/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:03 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -92.137.217.224 - - [09/Feb/2016:15:43:04 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -46.127.16.228 - - [09/Feb/2016:15:43:19 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25164 "https://www.google.ch/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -62.210.250.66 - - [09/Feb/2016:15:45:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:15:48:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:15:51:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -199.30.24.94 - - [09/Feb/2016:15:53:22 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 382 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b" -130.0.236.153 - - [09/Feb/2016:15:55:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -66.249.69.143 - - [09/Feb/2016:15:59:48 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -130.0.236.153 - - [09/Feb/2016:16:01:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.158 - - [09/Feb/2016:16:06:15 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:16:07:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:16:10:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:16:13:23 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -91.121.65.46 - - [09/Feb/2016:16:15:27 -0800] "GET /category/usa HTTP/1.1" 301 408 "-" "Mozilla/5.0 (compatible; Dazoobot/1.0; http://dazoo.fr)" -198.58.103.28 - - [09/Feb/2016:16:16:39 -0800] "GET /rss HTTP/1.1" 301 474 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -199.16.156.125 - - [09/Feb/2016:16:17:03 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -62.210.250.66 - - [09/Feb/2016:16:18:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.75.194 - - [09/Feb/2016:16:24:18 -0800] "GET /robots.txt HTTP/1.1" 200 423 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -74.91.28.58 - - [09/Feb/2016:16:21:19 -0800] "GET / HTTP/1.1" 200 20556 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)" -62.210.250.66 - - [09/Feb/2016:16:27:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:16:31:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.95 - - [09/Feb/2016:16:36:19 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -213.180.206.196 - - [09/Feb/2016:16:38:24 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01g.yandex.ru)" -130.0.236.153 - - [09/Feb/2016:16:40:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:04 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24078 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:05 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:06 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1684 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:08 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:08 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:09 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:16:41:09 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:16:41:10 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1684 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9633 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n4pj44K9XI1sa6hof-50x50.jpg HTTP/1.1" 200 2400 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:12 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_nixmj1dBlt1sygmpd-50x50.jpg HTTP/1.1" 200 2351 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:13 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9021 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1" 200 2471 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:14 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/ HTTP/1.1" 200 7092 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1" 200 3414 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:16:41:15 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/uploads/2015/02/photo-7.jpg HTTP/1.1" 200 95455 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -62.210.248.185 - - [09/Feb/2016:16:41:18 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -198.199.68.128 - - [09/Feb/2016:16:43:09 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.250.66 - - [09/Feb/2016:16:45:48 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.69.57 - - [09/Feb/2016:16:52:08 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9229 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -38.98.70.179 - - [09/Feb/2016:16:53:29 -0800] "GET /wp-content/uploads/2015/03/4N8A4857.jpg HTTP/1.1" 200 2266560 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -38.98.70.179 - - [09/Feb/2016:16:53:47 -0800] "GET /wp-content/uploads/2015/03/4N8A4857.jpg HTTP/1.1" 200 2266560 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -198.58.103.102 - - [09/Feb/2016:16:55:16 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -159.203.3.31 - - [09/Feb/2016:17:00:09 -0800] "GET /wp-content/plugins/fast-image-adder/readme.txt HTTP/1.0" 404 15541 "-" "-" -159.203.3.31 - - [09/Feb/2016:17:00:17 -0800] "GET /wp-content/plugins/dzs-zoomsounds/style/style.css HTTP/1.0" 404 15541 "-" "-" -159.203.3.31 - - [09/Feb/2016:17:00:22 -0800] "GET /wp-content/plugins/videowhisper-video-conference-integration/readme.txt HTTP/1.0" 404 15541 "-" "-" -66.249.69.73 - - [09/Feb/2016:17:03:20 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 664 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.142.23 - jez [09/Feb/2016:17:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -40.77.167.6 - - [09/Feb/2016:17:07:22 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:17:07:28 -0800] "GET /julie-foulon-de-betagroup-fait-swinguer-la/ HTTP/1.1" 200 9867 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:17:07:30 -0800] "GET /author/phil/ HTTP/1.1" 200 6634 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.29 - - [09/Feb/2016:17:07:32 -0800] "GET /office-tour-de-rackspace-san-francisco-avec/ HTTP/1.1" 200 8566 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:00 -0800] "GET /category/europe/ HTTP/1.1" 200 7368 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:01 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10081 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:02 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10137 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.161 - - [09/Feb/2016:17:08:04 -0800] "GET /category/usa/page/2/ HTTP/1.1" 200 7512 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.231 - - [09/Feb/2016:17:08:06 -0800] "GET /category/nouvelles/ HTTP/1.1" 200 6136 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -40.77.167.6 - - [09/Feb/2016:17:08:13 -0800] "GET /arnaud-barbier-un-bidouilleur-haute-voltige-au/ HTTP/1.1" 200 8988 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:17:09:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:17:12:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:17:17:05 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -192.121.159.172 - - [09/Feb/2016:17:20:34 -0800] "GET /feed/ HTTP/1.0" 200 20950 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.102.158 - - [09/Feb/2016:17:24:41 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -87.90.19.196 - - [09/Feb/2016:17:26:01 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56" -62.210.250.66 - - [09/Feb/2016:17:25:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:17:32:19 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:17:35:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -68.180.228.42 - - [09/Feb/2016:17:40:09 -0800] "GET /xavier-mouton-dubosc-le-developpeur-aux-mille-vies HTTP/1.1" 404 4816 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -68.180.228.42 - - [09/Feb/2016:17:43:45 -0800] "GET /2014/07/ HTTP/1.1" 200 6144 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -66.249.69.57 - - [09/Feb/2016:17:47:00 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -50.116.30.23 - - [09/Feb/2016:17:49:43 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -162.243.175.221 - - [09/Feb/2016:17:52:14 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.250.66 - - [09/Feb/2016:17:56:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:18:01:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.55.39.231 - - [09/Feb/2016:18:06:33 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -2.1.201.36 - - [09/Feb/2016:18:07:17 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:18:10:38 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:18:13:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -66.249.83.104 - - [09/Feb/2016:18:16:34 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -62.210.250.66 - - [09/Feb/2016:18:18:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.69.73 - - [09/Feb/2016:18:24:24 -0800] "GET /post/104173274688/je-viens-chercher-mon-stage-dans-la-silicon-valley HTTP/1.1" 301 370 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -207.241.237.222 - - [09/Feb/2016:18:24:37 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.0" 200 96102 "http://marryme-bridal.ru/" "Mozilla/5.0 (compatible; archive.org_bot +http://www.archive.org/details/archive.org_bot)" -62.210.250.66 - - [09/Feb/2016:18:27:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:18:31:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [09/Feb/2016:18:36:18 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [09/Feb/2016:18:39:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:18:45:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -46.118.116.135 - - [09/Feb/2016:18:46:56 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29377 "http://wdfdocando.com/" "Mozilla/1.22 (compatible; MSIE 2.0d; Windows NT)" -37.9.118.28 - - [09/Feb/2016:18:47:35 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -206.214.3.187 - - [09/Feb/2016:18:50:05 -0800] "GET /wp-login.php HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0" -180.76.15.145 - - [09/Feb/2016:18:52:42 -0800] "GET /category/think-different/ HTTP/1.1" 200 7114 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -130.0.236.153 - - [09/Feb/2016:18:57:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -51.254.130.62 - - [09/Feb/2016:18:57:48 -0800] "GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.0" 200 33805 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -130.0.236.153 - - [09/Feb/2016:19:00:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:19:03:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:19:06:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:19:10:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:19:13:11 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.29 - - [09/Feb/2016:19:17:35 -0800] "GET /sitemap1.xml HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -180.76.15.154 - - [09/Feb/2016:19:19:20 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -62.210.250.66 - - [09/Feb/2016:19:22:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.28 - - [09/Feb/2016:19:26:46 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -85.25.201.224 - - [09/Feb/2016:19:26:51 -0800] "GET /?author=3 HTTP/1.0" 200 27687 "-" "-" -201.172.179.106 - - [09/Feb/2016:19:27:25 -0800] "GET / HTTP/1.1" 400 508 "-" "-" -130.0.236.153 - - [09/Feb/2016:19:32:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [09/Feb/2016:19:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [09/Feb/2016:19:41:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:19:44:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -209.133.111.211 - - [09/Feb/2016:19:49:33 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -207.46.13.64 - - [09/Feb/2016:19:52:21 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:19:56:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:20:02:04 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [09/Feb/2016:20:06:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [09/Feb/2016:20:07:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:20:10:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -192.165.48.170 - - [09/Feb/2016:20:12:07 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -192.71.3.19 - - [09/Feb/2016:20:13:29 -0800] "GET / HTTP/1.0" 200 7191 "-" "Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/10.0.2" -62.210.250.66 - - [09/Feb/2016:20:14:38 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:20:19:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.103.160 - - [09/Feb/2016:20:23:44 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -157.55.39.231 - - [09/Feb/2016:20:27:30 -0800] "GET /category/portraits/ HTTP/1.1" 200 7341 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -90.31.168.87 - - [09/Feb/2016:20:29:56 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -90.31.168.87 - - [09/Feb/2016:20:29:57 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -66.249.69.65 - - [09/Feb/2016:20:33:26 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/ HTTP/1.1" 200 9079 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.250.66 - - [09/Feb/2016:20:36:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:20:40:05 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -82.117.234.105 - - [09/Feb/2016:20:43:43 -0800] "GET /?author=1 HTTP/1.1" 200 23313 "http://marryme-bridal.ru/?author=1" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:20:48:46 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -206.214.8.216 - - [09/Feb/2016:20:53:49 -0800] "GET /wp-login.php HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0" -185.82.148.10 - - [09/Feb/2016:20:57:09 -0800] "GET /rss HTTP/1.1" 301 373 "-" "Scoop" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n81d6jwEIM1sygmpd-50x50.jpg HTTP/1.1" 200 2055 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.137 - - [09/Feb/2016:20:57:14 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:16 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/uploads/2015/03/UX-Basics-Workshop-50x50.jpg HTTP/1.1" 200 2253 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:18 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2424 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:19 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:21 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8926 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n59mnuUm3H1sygmpd-50x50.jpg HTTP/1.1" 200 2463 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:22 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:23 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:23 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.1" 200 8606 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_ne4zzxKVb01sa6hof-50x50.png HTTP/1.1" 200 4330 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:24 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34313 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.217.154 - - [09/Feb/2016:20:57:26 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://techmeup.co/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.179.93 - - [09/Feb/2016:20:57:30 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wp-content/uploads/2015/02/photo-7.jpg HTTP/1.1" 200 95455 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.143 - - [09/Feb/2016:20:57:33 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -130.0.236.153 - - [09/Feb/2016:21:00:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -95.211.134.37 - - [09/Feb/2016:21:05:12 -0800] "GET / HTTP/1.1" 200 33373 "-" "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -62.210.250.66 - - [09/Feb/2016:21:08:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:21:12:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -178.255.215.65 - - [09/Feb/2016:21:15:40 -0800] "GET / HTTP/1.1" 301 359 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -162.243.175.218 - - [09/Feb/2016:21:18:39 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -94.199.151.22 - - [09/Feb/2016:21:19:32 -0800] "GET / HTTP/1.1" 301 359 "-" "Wotbox/2.01 (+http://www.wotbox.com/bot/)" -62.210.250.66 - - [09/Feb/2016:21:22:59 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:21:23:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.103.160 - - [09/Feb/2016:21:28:09 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -45.55.229.91 - - [09/Feb/2016:21:32:10 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0" -45.55.229.91 - - [09/Feb/2016:21:32:16 -0800] "GET /category/usa/ HTTP/1.1" 200 7480 "http://marryme-bridal.ru" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -45.55.229.91 - - [09/Feb/2016:21:32:17 -0800] "GET /category/portraits/ HTTP/1.1" 200 7341 "http://marryme-bridal.ru" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36" -198.58.102.117 - - [09/Feb/2016:21:36:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:21:38:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -45.55.229.154 - - [09/Feb/2016:21:38:39 -0800] "GET /category/europe/ HTTP/1.1" 200 7369 "http://techmeup.co" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:29.0) Gecko/20100101 Firefox/29.0" -45.55.229.154 - - [09/Feb/2016:21:38:39 -0800] "GET /category/nouvelles/ HTTP/1.1" 200 6137 "http://techmeup.co" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0" -45.55.229.154 - - [09/Feb/2016:21:38:40 -0800] "GET /author/julienbarbier/ HTTP/1.1" 200 6856 "http://techmeup.co" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -45.55.229.154 - - [09/Feb/2016:21:38:42 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/ HTTP/1.1" 200 9071 "http://techmeup.co" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -45.55.229.154 - - [09/Feb/2016:21:38:42 -0800] "GET /author/laetitia/ HTTP/1.1" 200 7337 "http://techmeup.co" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9283 "http://images.google.fr/imgres?imgurl=https%3A%2F%2F31.media.tumblr.com%2F5dd4eb54ddb4773345909f4c689dcba9%2Ftumblr_inline_n7zuk0v8WY1sa6hof.jpg&imgrefurl=http%3A%2F%2Ftechmeup.co%2Fadrien-duermael-pixowl-et-lindustrie%2F&h=500&w=500&tbnid=Rr1UNiaOw3L2dM%3A&docid=rUfxw3nWObId4M&ei=Gsy6Vq6EHcaNav_LnsgJ&tbm=isch&iact=rc&uact=3&dur=663&page=1&start=0&ndsp=32&ved=0ahUKEwiu-fvmvOzKAhXGhhoKHf-lB5kQrQMIITAA" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zszkBuTQ1sa6hof-50x50.jpg HTTP/1.1" 200 2059 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:42:06 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:21:42:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -89.2.182.139 - - [09/Feb/2016:21:43:46 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:21:45:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:21:47:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:21:50:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.49 - - [09/Feb/2016:21:53:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -141.8.132.38 - - [09/Feb/2016:21:56:01 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -141.8.132.38 - - [09/Feb/2016:21:56:09 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -199.119.124.38 - - [09/Feb/2016:21:58:18 -0800] "GET /rss HTTP/1.1" 301 418 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=e020a4234ced4329fa4063c1)" -198.58.103.102 - - [09/Feb/2016:22:01:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [09/Feb/2016:22:05:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:07:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:10:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:13:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -180.76.15.142 - - [09/Feb/2016:22:19:15 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -167.114.173.221 - - [09/Feb/2016:22:21:13 -0800] "GET /post/90455136503 HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -62.210.250.66 - - [09/Feb/2016:22:22:17 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:22:28:43 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:31:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:34:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:22:38:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:22:43:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [09/Feb/2016:22:46:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -78.194.25.109 - - [09/Feb/2016:22:51:21 -0800] "GET / HTTP/1.1" 200 7274 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -78.194.25.109 - - [09/Feb/2016:22:51:21 -0800] "GET /favicon.ico HTTP/1.1" 200 238 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -198.58.102.155 - - [09/Feb/2016:22:53:20 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [09/Feb/2016:22:56:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [09/Feb/2016:23:02:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.142.23 - jez [09/Feb/2016:23:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -67.169.93.143 - - [09/Feb/2016:23:08:51 -0800] "HEAD /apple-touch-icon.png HTTP/1.1" 404 448 "-" "Reeder/3.0 CFNetwork/758.2.8 Darwin/15.0.0" -92.222.20.166 - - [09/Feb/2016:23:10:37 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -130.0.236.153 - - [09/Feb/2016:23:13:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [09/Feb/2016:23:15:01 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -81.67.77.161 - - [09/Feb/2016:23:16:23 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H321 Twitter for iPhone" -81.67.77.161 - - [09/Feb/2016:23:16:23 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H321 Twitter for iPhone" -180.76.15.158 - - [09/Feb/2016:23:19:40 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -207.46.13.153 - - [09/Feb/2016:23:23:57 -0800] "GET /index.php?controller=product&id_product=713 HTTP/1.1" 301 436 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:23:24:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.55.130 - - [09/Feb/2016:23:27:52 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15535 "-" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -199.16.156.125 - - [09/Feb/2016:23:27:56 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "Twitterbot/1.0" -199.16.156.126 - - [09/Feb/2016:23:27:59 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24023 "-" "Twitterbot/1.0" -80.12.55.130 - - [09/Feb/2016:23:28:16 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 436 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:28:21 -0800] "GET /les-francais-genies-de-la-silicon-valley/apple-touch-icon.png HTTP/1.1" 404 4871 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1" 200 18765 "http://techmeup.co/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-300x225.jpeg HTTP/1.1" 200 9485 "http://techmeup.co/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:29:48 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32895 "http://techmeup.co/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:30:10 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 200 2287 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.55.130 - - [09/Feb/2016:23:30:27 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4871 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -91.224.140.223 - - [09/Feb/2016:23:32:02 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-300x225.jpg HTTP/1.1" 200 16230 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -82.224.121.226 - - [09/Feb/2016:23:34:41 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0" -192.99.150.96 - - [09/Feb/2016:23:36:19 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -213.136.71.211 - - [09/Feb/2016:23:39:51 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -162.243.175.231 - - [09/Feb/2016:23:42:11 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -209.133.111.211 - - [09/Feb/2016:23:43:42 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -62.210.250.66 - - [09/Feb/2016:23:48:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [09/Feb/2016:23:51:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -207.46.13.29 - - [09/Feb/2016:23:55:31 -0800] "GET /adrien-duermael-pixowl-et-lindustrie/ HTTP/1.1" 200 9315 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [09/Feb/2016:23:57:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:00:00:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.220.158.112 - - [10/Feb/2016:00:04:39 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16096 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -62.210.250.66 - - [10/Feb/2016:00:06:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -82.237.33.174 - - [10/Feb/2016:00:07:10 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [10/Feb/2016:00:07:23 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:00:09:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -199.16.156.124 - - [10/Feb/2016:00:12:03 -0800] "GET /les-geeks-les-vengeurs-masques-du-21eme-siecle HTTP/1.1" 404 4816 "-" "Twitterbot/1.0" -199.16.156.124 - - [10/Feb/2016:00:15:11 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -91.247.252.110 - - [10/Feb/2016:00:18:47 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)" -91.247.252.110 - - [10/Feb/2016:00:18:48 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://hnwatcher.com/silicon-valley/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)" -89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:16 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3422 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:18 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:19 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:19 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1102 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:20 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -89.81.146.146 - - [10/Feb/2016:00:19:28 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 308 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F-ORANGE Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36" -173.252.88.181 - - [10/Feb/2016:00:20:49 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q-225x300.jpeg HTTP/1.1" 200 23875 "-" "facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)" -86.246.217.7 - - [10/Feb/2016:00:22:48 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -104.236.244.32 - - [10/Feb/2016:00:23:44 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://alyaboom.com/" "Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0" -104.236.244.32 - - [10/Feb/2016:00:23:44 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://alyaboom.com/" "Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0" -104.236.244.32 - - [10/Feb/2016:00:23:55 -0800] "GET /category/canada/ HTTP/1.1" 200 5229 "http://alyaboom.com" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -104.236.244.32 - - [10/Feb/2016:00:23:55 -0800] "GET /category/think-different/ HTTP/1.1" 200 7151 "http://alyaboom.com" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -66.249.69.57 - - [10/Feb/2016:00:25:28 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -91.224.140.223 - - [10/Feb/2016:00:26:07 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -62.210.250.66 - - [10/Feb/2016:00:29:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -80.13.10.184 - - [10/Feb/2016:00:32:38 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.13.10.184 - - [10/Feb/2016:00:32:44 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:00:33:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [10/Feb/2016:00:36:17 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.103.36 - - [10/Feb/2016:00:39:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -171.18.2.101 - - [10/Feb/2016:00:39:28 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/2015/12/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:00:39:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:00:43:16 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:55 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:56 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:45:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -162.243.175.23 - - [10/Feb/2016:00:45:58 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -82.145.220.154 - - [10/Feb/2016:00:46:21 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9227 "http://www.google.com/m?q=aminou%2C+il+y+&client=ms-opera-mini-android&channel=new" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:21 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 304 211 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 304 212 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:22 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:46:36 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en/ HTTP/1.1" 200 9237 "-" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 304 211 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 304 209 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 304 213 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:06 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 187 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:07 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:29 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 304 211 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 304 209 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 304 213 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:30 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 304 187 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -82.145.220.154 - - [10/Feb/2016:00:47:31 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 304 210 "http://techmeup.co/raodath-aminou-la-revolution-du-commerce-est-en/" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -198.58.102.96 - - [10/Feb/2016:00:47:33 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -193.164.197.233 - - [10/Feb/2016:00:48:05 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:00:48:17 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:00:51:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:00:53:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:01:00:26 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:01:03:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:54 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1" 200 11679 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:55 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.229.67.53 - - [10/Feb/2016:01:05:58 -0800] "GET /marketing-pour-developpeurs-partie-1/?cf_action=sync_comments&post_id=17 HTTP/1.1" 200 308 "http://techmeup.co/marketing-pour-developpeurs-partie-1/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:06:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -79.83.182.11 - - [10/Feb/2016:01:08:29 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; NP06; rv:11.0) like Gecko" -130.0.236.153 - - [10/Feb/2016:01:09:39 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:49 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -82.230.115.80 - - [10/Feb/2016:01:09:55 -0800] "GET /les-demi-verites-de-monsieur-xavier-niel/ HTTP/1.1" 200 406 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:44.0) Gecko/20100101 Firefox/44.0" -46.118.114.111 - - [10/Feb/2016:01:10:08 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29454 "http://karusel-market.ru/" "Mozilla/4.7 (compatible; OffByOne; Windows 2000) Webster Pro V3.4" -82.229.67.53 - - [10/Feb/2016:01:10:37 -0800] "GET /wp-content/uploads/2014/09/tumblr_inline_ncaeibjep11spe2e1-50x50.jpg HTTP/1.1" 200 2072 "http://techmeup.co/marketing-pour-developpeurs-partie-2/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 504 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x225.jpg HTTP/1.1" 200 18764 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/uploads/2015/02/3152875867_148b09f57d_z-300x225.jpg HTTP/1.1" 200 9568 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:50 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -129.12.192.47 - - [10/Feb/2016:01:10:51 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:12:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:01:17:49 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:21:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:01:26:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.102 - - [10/Feb/2016:01:28:15 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:01:30:25 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -88.171.181.51 - - [10/Feb/2016:01:31:17 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 304 190 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -54.93.47.160 - - [10/Feb/2016:01:32:05 -0800] "GET /wp-login.php HTTP/1.1" 200 1593 "https://duckduckgo.com/html+techmeup.co" "Mozilla/5.0 (Windows NT 5.1; rv:31.0) techmeup.co/20100101 Firefox/31.0" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njgqqazNyf1sa6hof-1-50x50.png HTTP/1.1" 200 4836 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -217.109.178.225 - - [10/Feb/2016:01:32:42 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:01:33:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -194.199.7.22 - - [10/Feb/2016:01:35:42 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)" -194.199.7.22 - - [10/Feb/2016:01:36:16 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.0" 200 174694 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)" -194.199.7.22 - - [10/Feb/2016:01:36:42 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.0" 200 115469 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (compatible; bnf.fr_bot; +http://www.bnf.fr/fr/outils/a.dl_web_capture_robot.html)" -199.16.156.125 - - [10/Feb/2016:01:36:54 -0800] "GET /post/96028023828/les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 304 "-" "Twitterbot/1.0" -130.0.236.153 - - [10/Feb/2016:01:39:52 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:01:42:50 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.13.10.184 - - [10/Feb/2016:01:43:23 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -157.55.39.111 - - [10/Feb/2016:01:43:42 -0800] "GET /sitemap-pt-post-2014-04.xml HTTP/1.1" 200 995 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -80.13.10.184 - - [10/Feb/2016:01:43:55 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -88.187.37.182 - - [10/Feb/2016:01:49:58 -0800] "GET /les-francais-genies-de-la-silicon-valley/http:// HTTP/1.1" 301 554 "http://www.lafabriquedunet.fr/blog/tarifs-freelances-web-developpeurs-graphistes-webmarketing/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:00 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/http:/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -88.187.37.182 - - [10/Feb/2016:01:50:01 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:44.0) Gecko/20100101 Firefox/44.0" -86.246.217.7 - - [10/Feb/2016:01:52:49 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -194.187.168.225 - - [10/Feb/2016:01:56:27 -0800] "GET /robots.txt HTTP/1.0" 200 386 "-" "Mozilla/5.0 (compatible; Qwantify/2.2w; +https://www.qwant.com/)/*" -198.58.99.82 - - [10/Feb/2016:02:00:17 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -50.62.176.163 - - [10/Feb/2016:02:01:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.102.49 - - [10/Feb/2016:02:08:34 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:02:12:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -212.147.19.235 - - [10/Feb/2016:02:12:56 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -130.0.236.153 - - [10/Feb/2016:02:15:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -86.246.217.7 - - [10/Feb/2016:02:22:49 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -130.0.236.153 - - [10/Feb/2016:02:27:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -147.94.134.31 - - [10/Feb/2016:02:28:34 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/xavier-mouton-dubosc-le-developpeur-aux-mille/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" -198.58.96.215 - - [10/Feb/2016:02:32:28 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:02:36:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9889 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:45 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -80.12.42.96 - - [10/Feb/2016:02:39:46 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/marie-amelie-frere-la-serial-entrepreneure-a/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -213.174.146.160 - - [10/Feb/2016:02:40:14 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36" -144.76.30.236 - - [10/Feb/2016:02:41:10 -0800] "GET /10-questions-a-arnaud-ruiz-le-plus-frenchie-des/ HTTP/1.0" 200 28471 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -80.13.10.184 - - [10/Feb/2016:02:43:17 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15521 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [10/Feb/2016:02:43:25 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:02:43:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -66.249.84.88 - - [10/Feb/2016:02:46:08 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 987 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -198.58.103.92 - - [10/Feb/2016:02:48:44 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [10/Feb/2016:02:52:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -151.80.100.107 - - [10/Feb/2016:02:54:50 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36" -151.80.100.107 - - [10/Feb/2016:02:54:51 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36" -199.19.249.196 - - [10/Feb/2016:02:57:42 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique HTTP/1.1" 301 452 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:44 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97500 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:02:57:45 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -62.210.250.66 - - [10/Feb/2016:02:58:47 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -178.137.93.235 - - [10/Feb/2016:03:02:45 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29380 "http://la-fa.ru/" "Opera/7.11 (Windows NT 5.1; U) [en]" -162.243.175.221 - - [10/Feb/2016:03:02:58 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -130.0.236.153 - - [10/Feb/2016:03:03:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -2.1.201.36 - - [10/Feb/2016:03:06:18 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -80.12.51.74 - - [10/Feb/2016:03:06:30 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/11.1.66360 Mobile/13C75 Safari/600.1.4" -80.12.51.74 - - [10/Feb/2016:03:06:33 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/author/silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/11.1.66360 Mobile/13C75 Safari/600.1.4" -130.0.236.153 - - [10/Feb/2016:03:12:13 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -66.249.69.57 - - [10/Feb/2016:03:18:02 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.69.57 - - [10/Feb/2016:03:18:04 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -66.249.69.57 - - [10/Feb/2016:03:18:06 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -180.76.15.10 - - [10/Feb/2016:03:19:26 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -86.246.217.7 - - [10/Feb/2016:03:22:56 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -77.135.123.159 - - [10/Feb/2016:03:26:20 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:21 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:22 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:24 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -77.135.123.159 - - [10/Feb/2016:03:26:22 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -94.23.9.215 - - [10/Feb/2016:03:28:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -193.164.197.233 - - [10/Feb/2016:03:30:08 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:03:30:19 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:03:33:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -192.99.150.96 - - [10/Feb/2016:03:36:30 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -130.0.236.153 - - [10/Feb/2016:03:39:33 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -82.240.200.45 - - [10/Feb/2016:03:41:45 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/category/bleu-blan-rouge/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -82.240.200.45 - - [10/Feb/2016:03:41:45 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/category/bleu-blan-rouge/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -209.133.111.211 - - [10/Feb/2016:03:45:31 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "rogerbot/1.0 (http://www.moz.com/dp/rogerbot, rogerbot-crawler@moz.com)" -66.249.69.73 - - [10/Feb/2016:03:52:37 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur/ HTTP/1.1" 200 8909 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -178.154.189.201 - - [10/Feb/2016:03:55:18 -0800] "GET /robots.txt HTTP/1.1" 200 383 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -178.154.189.201 - - [10/Feb/2016:03:55:23 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -178.154.189.201 - - [10/Feb/2016:03:55:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -178.154.189.201 - - [10/Feb/2016:03:55:36 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" -82.145.220.154 - - [10/Feb/2016:03:56:36 -0800] "HEAD /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 285 "-" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -8.29.198.25 - - [10/Feb/2016:03:56:55 -0800] "GET /feed/ HTTP/1.1" 200 20950 "-" "Feedly/1.0 (+http://www.feedly.com/fetcher.html; like FeedFetcher-Google)" -72.167.183.56 - - [10/Feb/2016:04:00:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -2.1.201.36 - - [10/Feb/2016:04:06:32 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -130.0.236.153 - - [10/Feb/2016:04:08:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -92.222.20.166 - - [10/Feb/2016:04:15:19 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -80.12.63.172 - - [10/Feb/2016:04:17:33 -0800] "GET /wp-content/uploads/2014/06/tumblr_inline_n6zugoFw371sygmpd-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; Android 5.1.1; Build/LYZ28N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -130.0.236.153 - - [10/Feb/2016:04:18:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -50.116.30.23 - - [10/Feb/2016:04:24:37 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -130.0.236.153 - - [10/Feb/2016:04:33:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:04:39:06 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -50.62.176.35 - - [10/Feb/2016:04:44:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.103.160 - - [10/Feb/2016:04:48:32 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -94.23.9.215 - - [10/Feb/2016:04:55:03 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -92.89.6.47 - - [10/Feb/2016:04:59:05 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.147.244.57 - - [10/Feb/2016:04:59:08 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -92.89.6.47 - - [10/Feb/2016:04:59:08 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -176.147.244.57 - - [10/Feb/2016:04:59:20 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -81.252.96.8 - - [10/Feb/2016:05:01:45 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 304 211 "-" "Mozilla/4.0 (compatible;)" -130.0.236.153 - - [10/Feb/2016:05:06:12 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] "GET /wp-content/uploads/2015/06/unnamed-300x225.jpg HTTP/1.1" 200 25163 "http://techmeup.co/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-300x225.jpg HTTP/1.1" 200 20280 "http://techmeup.co/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -194.36.227.211 - - [10/Feb/2016:05:06:31 -0800] "GET /wp-content/uploads/2015/02/photo-7-300x225.jpg HTTP/1.1" 200 17363 "http://techmeup.co/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)" -130.0.236.153 - - [10/Feb/2016:05:09:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.55.39.27 - - [10/Feb/2016:05:10:52 -0800] "GET /page/2/ HTTP/1.1" 200 7150 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [10/Feb/2016:05:10:55 -0800] "GET /author/herve/ HTTP/1.1" 200 7394 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -157.55.39.27 - - [10/Feb/2016:05:10:57 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a/ HTTP/1.1" 200 9966 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.191 - - [10/Feb/2016:05:11:38 -0800] "GET /raodath-aminou-la-revolution-du-commerce-est-en HTTP/1.1" 301 444 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.191 - - [10/Feb/2016:05:11:40 -0800] "GET /author/julienbarbier/ HTTP/1.1" 200 6855 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.160 - - [10/Feb/2016:05:11:43 -0800] "GET /2014/06/ HTTP/1.1" 200 6876 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.160 - - [10/Feb/2016:05:11:47 -0800] "GET /marketing-pour-developpeurs-partie-1/ HTTP/1.1" 200 11663 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -90.37.150.94 - - [10/Feb/2016:05:11:50 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (iPad; CPU OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -130.0.236.153 - - [10/Feb/2016:05:12:00 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -171.18.11.249 - - [10/Feb/2016:05:13:49 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -207.46.13.140 - - [10/Feb/2016:05:16:20 -0800] "GET /cms.php?id_cms_category=1 HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [10/Feb/2016:05:17:58 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:02 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:03 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njsizxf3W31r1bjfi-50x50.jpg HTTP/1.1" 200 2091 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:05 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -41.205.83.30 - - [10/Feb/2016:05:18:06 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/guillaume-charmes-meilleur-developpeur-du-monde/" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" -80.13.10.184 - - [10/Feb/2016:05:18:12 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:05:18:34 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -199.19.249.196 - - [10/Feb/2016:05:19:30 -0800] "GET /adrien-duermael-pixowl-et-lindustrie HTTP/1.1" 301 388 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:32 -0800] "GET /wp-content/uploads/2014/10/tumblr_inline_nd4oz3bywE1sygmpd-50x50.jpg HTTP/1.1" 200 2745 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -145.226.30.81 - - [10/Feb/2016:05:19:33 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -199.19.249.196 - - [10/Feb/2016:05:19:35 -0800] "GET /marie-amelie-frere-la-serial-entrepreneure-a HTTP/1.1" 301 396 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0" -198.58.102.155 - - [10/Feb/2016:05:20:50 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -40.77.167.0 - - [10/Feb/2016:05:25:27 -0800] "GET /product.php?id_product=154 HTTP/1.1" 404 4872 "-" "msnbot-media/1.1 (+http://search.msn.com/msnbot.htm)" -5.39.17.245 - - [10/Feb/2016:05:28:17 -0800] "GET /feed/ HTTP/1.1" 200 20931 "http://techmeup.co/feed/" "SimplePie/1.3.1 (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20140612090914" -62.210.250.66 - - [10/Feb/2016:05:30:08 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:05:36:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -193.52.103.21 - - [10/Feb/2016:05:40:36 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/lentrepreneuriat-aventure-parsemee-echecs/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:11 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:12 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:12 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -217.111.254.90 - - [10/Feb/2016:05:42:18 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/?cf_action=sync_comments&post_id=27 HTTP/1.1" 200 309 "http://techmeup.co/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36" -83.113.189.113 - - [10/Feb/2016:05:48:11 -0800] "GET /wp-content/uploads/2015/06/sylvia.png HTTP/1.1" 200 803660 "http://www.silicon-valley.fr/blog-actualite-silicon-valley/page/11/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:42.0) Gecko/20100101 Firefox/42.0" -37.187.151.111 - - [10/Feb/2016:05:53:14 -0800] "GET /alexei-chemenda-toujours-etudiant-et-deja/ HTTP/1.1" 200 28944 "http://techmeup.co/alexei-chemenda-toujours-etudiant-et-deja/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0" -97.74.6.125 - - [10/Feb/2016:05:55:35 -0800] "GET /?author=1 HTTP/1.0" 301 329 "-" "-" -82.216.225.66 - - [10/Feb/2016:05:56:19 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:05:56:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:05:59:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -80.248.212.27 - - [10/Feb/2016:06:01:23 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174730 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)" -80.248.212.27 - - [10/Feb/2016:06:01:24 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)" -130.0.236.153 - - [10/Feb/2016:06:02:45 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -193.164.197.233 - - [10/Feb/2016:06:02:48 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:06:03:00 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -2.1.201.36 - - [10/Feb/2016:06:06:21 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -37.16.72.207 - - [10/Feb/2016:06:06:43 -0800] "GET /category/how-to/ HTTP/1.1" 200 25310 "-" "Mozilla/5.0 (compatible; memoryBot/1.21.14 +http://internetmemory.org/en/)" -37.16.72.207 - - [10/Feb/2016:06:07:24 -0800] "GET /category/think-different/ HTTP/1.1" 200 30470 "-" "Mozilla/5.0 (compatible; memoryBot/1.21.14 +http://internetmemory.org/en/)" -176.31.231.232 - - [10/Feb/2016:06:11:40 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -176.31.231.232 - - [10/Feb/2016:06:11:40 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0" -130.0.236.153 - - [10/Feb/2016:06:14:59 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -162.243.175.72 - - [10/Feb/2016:06:19:43 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -193.248.63.25 - - [10/Feb/2016:06:21:16 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -193.248.63.25 - - [10/Feb/2016:06:21:16 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -91.212.124.146 - - [10/Feb/2016:06:22:50 -0800] "POST /wp-login.php HTTP/1.1" 200 3733 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3" -46.149.69.243 - - [10/Feb/2016:06:28:29 -0800] "GET /favicon.ico HTTP/1.1" 200 239 "-" "Mozilla/5.0 (Linux; Android 4.4.2; GT-I9295 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 YaBrowser/15.12.2.6773.00 Yowser/2.5.3 Mobile Safari/537.36" -77.154.202.171 - - [10/Feb/2016:06:31:58 -0800] "GET /wp-content/uploads/2014/04/tumblr_inline_n46um7CkZE1sa6hof-50x50.jpg HTTP/1.1" 200 2425 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H143 Safari/600.1.4" -68.180.228.42 - - [10/Feb/2016:06:32:26 -0800] "GET /robots.txt HTTP/1.1" 200 327 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -91.103.43.50 - - [10/Feb/2016:06:35:07 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n7zuk0v8WY1sa6hof-50x50.jpg HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -80.13.10.184 - - [10/Feb/2016:06:38:03 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:06:38:17 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:06:38:39 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:06:44:55 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:06:50:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -130.0.236.153 - - [10/Feb/2016:06:53:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:06:59:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.160 - - [10/Feb/2016:07:02:31 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x225.jpg HTTP/1.1" 200 32896 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6228 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 867 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3066 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:03 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:04 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:05:04 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -62.210.142.23 - jez [10/Feb/2016:07:06:06 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3421 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:01 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] "GET /wp-content/uploads/2015/06/unnamed-50x50.jpg HTTP/1.1" 200 2395 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:09:02 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Linux; Android 5.1.1; A0001 Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.95 Mobile Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:11:15 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15537 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -80.12.89.109 - - [10/Feb/2016:07:11:25 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -92.222.20.166 - - [10/Feb/2016:07:12:31 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -66.249.69.73 - - [10/Feb/2016:07:15:03 -0800] "GET /sitemap-pt-post-2015-06.xml HTTP/1.1" 200 881 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.149.143.108 - - [10/Feb/2016:07:18:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -62.210.250.66 - - [10/Feb/2016:07:23:37 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:07:27:02 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.188.36 - - [10/Feb/2016:07:30:20 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.188.36 - - [10/Feb/2016:07:30:20 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -209.190.96.34 - - [10/Feb/2016:07:32:04 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "-" "Java/1.7.0_10" -209.190.95.66 - - [10/Feb/2016:07:32:04 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203836 "-" "Java/1.7.0_10" -130.0.236.153 - - [10/Feb/2016:07:36:19 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -185.33.41.198 - - [10/Feb/2016:07:38:43 -0800] "GET /wp-content/uploads/2015/02/1620528_10152406520622652_278602715_n-300x300.jpg HTTP/1.1" 200 37378 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:44.0) Gecko/20100101 Firefox/44.0" -185.33.41.198 - - [10/Feb/2016:07:38:43 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:44.0) Gecko/20100101 Firefox/44.0" -78.125.214.227 - - [10/Feb/2016:07:39:48 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko" -78.125.214.227 - - [10/Feb/2016:07:39:48 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.3; ARM; Trident/7.0; Touch; rv:11.0) like Gecko" -66.147.240.154 - - [10/Feb/2016:07:40:55 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -66.249.69.65 - - [10/Feb/2016:07:43:12 -0800] "GET /marketing-pour-developpeurs-partie-3-le-site/ HTTP/1.1" 200 10926 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -68.180.228.42 - - [10/Feb/2016:07:45:33 -0800] "GET /?p=325 HTTP/1.1" 301 394 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -193.164.197.233 - - [10/Feb/2016:07:46:58 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -193.164.197.233 - - [10/Feb/2016:07:47:10 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -130.0.236.153 - - [10/Feb/2016:07:48:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:27 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:28 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:28 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nfq2o82z0r1sa6hof-50x50.jpg HTTP/1.1" 200 2106 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -24.5.199.149 - - [10/Feb/2016:07:51:35 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4" -62.210.250.66 - - [10/Feb/2016:07:52:00 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:07:55:07 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:07:58:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -50.62.161.20 - - [10/Feb/2016:08:02:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -130.0.236.153 - - [10/Feb/2016:08:06:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -68.180.228.42 - - [10/Feb/2016:08:12:28 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10037 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -62.210.250.66 - - [10/Feb/2016:08:14:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -109.26.130.102 - - [10/Feb/2016:08:17:28 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.0" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.26.130.102 - - [10/Feb/2016:08:17:29 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.0" 200 115505 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.228.215.147 - - [10/Feb/2016:08:19:39 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.228.215.147 - - [10/Feb/2016:08:19:39 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-1024x683.jpg HTTP/1.1" 200 115506 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10085 "http://rue89.nouvelobs.com/2015/09/29/petit-genie-francais-silicon-valley-a-legende-261418" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -188.165.96.114 - - [10/Feb/2016:08:22:00 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -207.46.13.29 - - [10/Feb/2016:08:22:19 -0800] "GET /post/96006277128/xavier-mouton-dubosc-le-developpeur-aux-mille HTTP/1.1" 301 365 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -62.210.250.66 - - [10/Feb/2016:08:24:57 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -130.0.236.153 - - [10/Feb/2016:08:27:48 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -198.58.102.96 - - [10/Feb/2016:08:32:14 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/le-jour-ou-les-startups-tech-nauront-plus-de/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:26 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -185.65.251.46 - - [10/Feb/2016:08:34:27 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -199.16.156.124 - - [10/Feb/2016:08:36:12 -0800] "GET /post/98008044383/trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 301 318 "-" "Twitterbot/1.0" -80.13.10.184 - - [10/Feb/2016:08:37:01 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15492 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -80.13.10.184 - - [10/Feb/2016:08:37:15 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -80.13.10.184 - - [10/Feb/2016:08:37:33 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -130.0.236.153 - - [10/Feb/2016:08:42:29 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -157.130.196.214 - - [10/Feb/2016:08:45:51 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -157.130.196.214 - - [10/Feb/2016:08:45:51 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:43.0) Gecko/20100101 Firefox/43.0" -86.246.217.7 - - [10/Feb/2016:08:52:51 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -130.0.236.153 - - [10/Feb/2016:08:57:41 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -188.165.96.114 - - [10/Feb/2016:09:00:30 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -109.15.143.216 - - [10/Feb/2016:09:01:24 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [10/Feb/2016:09:01:37 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -157.55.39.72 - - [10/Feb/2016:09:05:25 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.16.156.125 - - [10/Feb/2016:09:05:51 -0800] "GET /post/88351742277/michael-ferranti-responsable-marketing-a-mailgun-nous HTTP/1.1" 301 317 "-" "Twitterbot/1.0" -62.210.142.23 - jez [10/Feb/2016:09:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -184.72.5.127 - - [10/Feb/2016:09:12:26 -0800] "GET /rss HTTP/1.1" 304 182 "-" "Digg Feed Fetcher 1.0 (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -160.33.66.122 - - [10/Feb/2016:09:16:02 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 304 188 "-" "Mozilla/4.0 (compatible;)" -207.46.13.174 - - [10/Feb/2016:09:19:31 -0800] "GET /sitemap-pt-post-2015-03.xml HTTP/1.1" 200 1082 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [10/Feb/2016:09:21:44 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:25 -0800] "GET /wp-content/uploads/2014/09/logo-transparent-horizontal-1024x482.png HTTP/1.1" 200 334990 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -90.43.143.178 - - [10/Feb/2016:09:23:27 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36" -162.243.175.234 - - [10/Feb/2016:09:26:30 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -54.93.47.160 - - [10/Feb/2016:09:29:07 -0800] "GET /wp-login.php HTTP/1.1" 200 1593 "https://duckduckgo.com/html+alyaboom.com" "Mozilla/5.0 (Windows NT 6.1; rv:28.0) alyaboom.com/20100101 Firefox/28.0" -37.1.206.196 - - [10/Feb/2016:09:30:24 -0800] "POST /wp-login.php HTTP/1.1" 200 3779 "http://MARRYME-BRIDAL.RU/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:09:36:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:11 -0800] "GET /wp-content/uploads/2015/02/tumblr_inline_njgqqazNyf1sa6hof-1-50x50.png HTTP/1.1" 200 4836 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:12 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -82.67.70.172 - - [10/Feb/2016:09:37:13 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 503 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0" -130.0.236.153 - - [10/Feb/2016:09:40:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -62.210.250.66 - - [10/Feb/2016:09:46:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.102 - - [10/Feb/2016:09:46:57 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [10/Feb/2016:09:50:14 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:09:53:21 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:17 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:18 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:18 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -90.56.182.137 - - [10/Feb/2016:09:55:22 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -207.46.13.174 - - [10/Feb/2016:09:58:25 -0800] "GET /post/109303483553/marketing-pour-developpeurs-partie-3-le-site HTTP/1.1" 301 364 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -130.0.236.153 - - [10/Feb/2016:10:01:35 -0800] "POST /xmlrpc.php HTTP/1.1" 200 456 "-" "Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14" -109.15.143.216 - - [10/Feb/2016:10:05:58 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -109.15.143.216 - - [10/Feb/2016:10:06:10 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -86.235.136.133 - - [10/Feb/2016:10:06:41 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)" -86.235.136.133 - - [10/Feb/2016:10:06:51 -0800] "GET /wp-content/uploads/2015/03/Screenshot-2015-03-13-20.20.39-1024x165.png HTTP/1.1" 200 203835 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; NP06)" -198.58.103.28 - - [10/Feb/2016:10:08:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -157.55.39.245 - - [10/Feb/2016:10:19:19 -0800] "GET /sitemap1.xml HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:55 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:56 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:21:58 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n99vb998z21sygmpd-50x50.jpg HTTP/1.1" 200 2503 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -78.198.33.77 - - [10/Feb/2016:10:22:00 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 200 986 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -54.93.41.74 - - [10/Feb/2016:10:29:40 -0800] "GET /wp-login.php HTTP/1.1" 200 1593 "https://duckduckgo.com/html+hnwatcher.com" "Mozilla/5.0 (Windows NT 6.0; rv:29.0) hnwatcher.com/20120101 Firefox/29.0" -216.218.147.195 - - [10/Feb/2016:10:35:13 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36" -216.218.147.195 - - [10/Feb/2016:10:35:13 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:10:36:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -178.137.93.235 - - [10/Feb/2016:10:46:01 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29433 "http://autotop.com.ua/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)" -207.46.13.174 - - [10/Feb/2016:10:54:06 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -85.168.120.64 - - [10/Feb/2016:10:56:06 -0800] "GET /apple-touch-icon-precomposed.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:10:56:07 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:10:56:17 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -85.168.120.64 - - [10/Feb/2016:10:56:18 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -66.249.66.38 - - [10/Feb/2016:11:01:21 -0800] "GET /rencontre-avec-nicolas-dessaigne-ceo-dalgolia/ HTTP/1.1" 200 11529 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/uploads/2014/12/tumblr_inline_nga5swbqRY1sygmpd-50x50.jpg HTTP/1.1" 200 1983 "http://techmeup.co/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -88.178.170.165 - - [10/Feb/2016:11:03:14 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0" -62.210.142.23 - jez [10/Feb/2016:11:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [10/Feb/2016:11:11:57 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -180.76.15.26 - - [10/Feb/2016:11:19:52 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -89.38.150.47 - - [10/Feb/2016:11:20:22 -0800] "GET /wp-login.php?registration=disabled HTTP/1.1" 200 1562 "-" "Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20100101 Firefox/32.0" -54.166.27.248 - - [10/Feb/2016:11:30:34 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)" -2.1.201.36 - - [10/Feb/2016:11:36:51 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -84.7.133.128 - - [10/Feb/2016:11:39:24 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1" 200 9023 "https://www.google.fr/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 831 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:26 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/count.js?ver=4.1.1 HTTP/1.1" 200 776 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:27 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:28 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -84.7.133.128 - - [10/Feb/2016:11:39:32 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/?cf_action=sync_comments&post_id=21 HTTP/1.1" 200 308 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36" -162.243.175.24 - - [10/Feb/2016:11:41:05 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.250.66 - - [10/Feb/2016:11:45:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:11:48:22 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:11:52:53 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:11:55:59 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:12:02:09 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:12:03:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:12:06:18 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -31.165.24.46 - - [10/Feb/2016:12:09:36 -0800] "GET /les-geeks-vengeurs-masques-du-21e-siecle/ HTTP/1.1" 200 8974 "https://www.google.ch/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33586 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:38 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] "GET /wp-content/uploads/2015/03/4N8A4857-50x50.jpg HTTP/1.1" 200 2471 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -31.165.24.46 - - [10/Feb/2016:12:09:41 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://techmeup.co/les-geeks-vengeurs-masques-du-21e-siecle/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -62.210.250.66 - - [10/Feb/2016:12:11:30 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.115.133 - - [10/Feb/2016:12:12:16 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/ HTTP/1.0" 200 26506 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.115.133 - - [10/Feb/2016:12:12:39 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.0" 200 9840 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -62.210.250.66 - - [10/Feb/2016:12:14:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:12:19:15 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -86.246.217.7 - - [10/Feb/2016:12:22:53 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -85.168.120.64 - - [10/Feb/2016:12:25:36 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:25:39 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:25:47 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -85.168.120.64 - - [10/Feb/2016:12:25:51 -0800] "GET / HTTP/1.1" 200 7273 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1" -85.168.120.64 - - [10/Feb/2016:12:26:48 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15572 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko)" -85.168.120.64 - - [10/Feb/2016:12:26:50 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:26:55 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:27:03 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -85.168.120.64 - - [10/Feb/2016:12:27:07 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4871 "-" "Safari/11601.4.4 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -62.210.250.66 - - [10/Feb/2016:12:31:42 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:12:36:14 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -85.168.120.64 - - [10/Feb/2016:12:37:50 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/ HTTP/1.1" 200 15541 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -85.168.120.64 - - [10/Feb/2016:12:37:51 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -85.168.120.64 - - [10/Feb/2016:12:37:51 -0800] "GET /wp-content/uploads/2014/05/tumblr_inline_n54poil5sD1r792z4-50x50.jpg HTTP/1.1" 200 2099 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -85.168.120.64 - - [10/Feb/2016:12:37:52 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -62.210.250.66 - - [10/Feb/2016:12:39:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -162.243.175.232 - - [10/Feb/2016:12:47:07 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -40.77.167.90 - - [10/Feb/2016:12:49:00 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -178.137.17.196 - - [10/Feb/2016:12:52:21 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29417 "http://purchasepillsnorx.com/" "Opera/9.00 (Windows NT 5.1; U; ru)" -86.246.217.7 - - [10/Feb/2016:12:52:51 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -66.249.66.38 - - [10/Feb/2016:12:55:52 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/ HTTP/1.1" 200 9699 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -198.58.96.215 - - [10/Feb/2016:13:04:11 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -92.222.20.166 - - [10/Feb/2016:13:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 415 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:33 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:34 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -77.154.204.175 - - [10/Feb/2016:13:08:39 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la/?cf_action=sync_comments&post_id=30 HTTP/1.1" 200 309 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4" -66.249.93.120 - - [10/Feb/2016:13:18:19 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google Favicon" -68.180.228.42 - - [10/Feb/2016:13:26:50 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au HTTP/1.1" 301 389 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -37.1.206.196 - - [10/Feb/2016:13:35:09 -0800] "POST /wp-login.php HTTP/1.1" 200 3779 "http://MARRYME-BRIDAL.RU/wp-login.php" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36" -86.167.117.121 - - [10/Feb/2016:13:35:21 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4" -37.9.118.28 - - [10/Feb/2016:13:35:52 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; YandexMetrika/2.0; +http://yandex.com/bots mtmon01i.yandex.ru)" -178.255.215.65 - - [10/Feb/2016:13:41:35 -0800] "GET /robots.txt HTTP/1.1" 200 386 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -192.241.141.195 - - [10/Feb/2016:13:45:38 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -86.246.217.7 - - [10/Feb/2016:13:52:51 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "Mozilla/5.0 Vienna/3.0.9" -92.85.52.108 - - [10/Feb/2016:13:56:36 -0800] "GET / HTTP/1.1" 200 33403 "-" "Java/1.6.0_04" -62.210.250.66 - - [10/Feb/2016:13:56:28 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -92.85.52.108 - - [10/Feb/2016:13:56:43 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic HTTP/1.1" 301 406 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:46 -0800] "GET /feed HTTP/1.1" 301 428 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:48 -0800] "GET /le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique HTTP/1.1" 301 451 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:50 -0800] "GET /suivez-nous-sur-facebook-twitter-et-maintenant-linkedin HTTP/1.1" 301 406 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:53 -0800] "GET /teresa-colombi-ou-le-futur-de-lexperience-utilisateur HTTP/1.1" 301 404 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:54 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech HTTP/1.1" 301 392 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:56:58 -0800] "GET /wp-admin/admin-ajax.php HTTP/1.1" 200 247 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:00 -0800] "GET /ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:02 -0800] "GET /de-la-nasa-a-checkr-comment-daniel-yanisse/ HTTP/1.1" 200 28410 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:05 -0800] "GET /les-francais-genies-de-la-silicon-valley HTTP/1.1" 301 391 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:07 -0800] "GET /le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:10 -0800] "GET /le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/apple-touch-icon.png HTTP/1.1" 404 15494 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:15 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29447 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:18 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:20 -0800] "GET /creer-sa-startup-seul-et-la-revendre-a-un-geant/ HTTP/1.1" 200 30509 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:22 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/apple-touch-icon.png HTTP/1.1" 404 15493 "-" "Java/1.6.0_04" -92.85.52.108 - - [10/Feb/2016:13:57:25 -0800] "GET /frenchweb-de-lautre-cote-de-la-camera/ HTTP/1.1" 200 25508 "-" "Java/1.6.0_04" -62.210.250.66 - - [10/Feb/2016:13:59:32 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -178.137.93.235 - - [10/Feb/2016:14:00:26 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29381 "http://mriyadh.com/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322)" -62.210.250.66 - - [10/Feb/2016:14:02:36 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:14:06:16 -0800] "GET /rss HTTP/1.1" 304 163 "http://techmeup.co/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -62.210.250.66 - - [10/Feb/2016:14:08:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] "GET /wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1 HTTP/1.1" 200 3422 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -45.55.133.231 - - [10/Feb/2016:14:11:25 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://techmeup.co/" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0" -62.210.250.66 - - [10/Feb/2016:14:13:24 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.121 - - [10/Feb/2016:14:15:15 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -62.210.250.66 - - [10/Feb/2016:14:19:34 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:14:24:10 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:10 -0800] "GET /wp-content/plugins/wp-shortcode/js/wp-shortcode.js?ver=4.1.1 HTTP/1.1" 200 832 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:12 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -176.150.201.25 - - [10/Feb/2016:14:25:28 -0800] "GET /du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/?cf_action=sync_comments&post_id=294 HTTP/1.1" 200 309 "http://techmeup.co/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; GT-I9100P-ORANGE/I9100PBVKI3 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" -62.210.250.66 - - [10/Feb/2016:14:28:54 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -62.210.250.66 - - [10/Feb/2016:14:30:27 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -198.58.103.28 - - [10/Feb/2016:14:34:58 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -62.210.250.66 - - [10/Feb/2016:14:38:18 -0800] "POST /xmlrpc.php HTTP/1.1" 200 433 "http://hnwatcher.com/" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36" -207.46.13.121 - - [10/Feb/2016:14:44:46 -0800] "GET /adrien-duermael-pixowl-et-lindustrie-particuliere-du HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.103.36 - - [10/Feb/2016:14:52:45 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2050 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5143 "http://techmeup.co/trouver-un-job-tech-a-san-francisco-ou-dans-la/" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:10 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -82.246.176.59 - - [10/Feb/2016:14:55:11 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/wp-content/themes/great/style.css" "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0" -198.199.87.229 - - [10/Feb/2016:14:55:40 -0800] "GET /feed/ HTTP/1.1" 304 219 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/wp-shortcode/css/wp-shortcode.css?ver=4.1.1 HTTP/1.1" 200 2049 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/plugins/disqus-comment-system/media/js/disqus.js?ver=4.1.1 HTTP/1.1" 200 1101 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:25 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -78.192.118.252 - - [10/Feb/2016:14:56:26 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://techmeup.co/paul-duan-le-super-heros-de-la-data-science-pour/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9" -207.46.13.121 - - [10/Feb/2016:15:00:07 -0800] "GET /adrien-duermael-pixowl-et-lindustrie-particuliere-du HTTP/1.1" 404 4872 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -207.46.13.121 - - [10/Feb/2016:15:02:42 -0800] "GET /guillaume-charmes-meilleur-developpeur-du-monde HTTP/1.1" 301 444 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -86.246.152.226 - - [10/Feb/2016:15:07:47 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Reeder/3000.09.01 CFNetwork/760.2.6 Darwin/15.3.0 (x86_64)" -82.237.33.174 - - [10/Feb/2016:15:10:42 -0800] "GET /apple-touch-icon.png HTTP/1.1" 404 4872 "-" "Safari/11601.1.56 CFNetwork/760.0.5 Darwin/15.0.0 (x86_64)" -82.237.33.174 - - [10/Feb/2016:15:10:53 -0800] "GET /trouver-un-job-tech-a-san-francisco-ou-dans-la-silicon HTTP/1.1" 404 4871 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B410 Safari/600.1.4" -107.189.60.73 - - [10/Feb/2016:15:12:19 -0800] "HEAD / HTTP/1.1" 200 230 "-" "Mozilla/5.0 (compatible; PrivacyAwareBot/1.1; +http://www.privacyaware.org)" -107.189.60.73 - - [10/Feb/2016:15:12:22 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://alyaboom.com/" "Mozilla/5.0 (X11;) Firefox/38.0" -107.189.60.73 - - [10/Feb/2016:15:12:22 -0800] "GET /wp-includes/js/jquery/jquery.js?ver=1.11.1 HTTP/1.1" 200 33587 "http://alyaboom.com/" "Mozilla/5.0 (X11;) Firefox/38.0" -69.195.124.123 - - [10/Feb/2016:15:16:20 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -180.76.15.161 - - [10/Feb/2016:15:19:06 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -178.255.215.65 - - [10/Feb/2016:15:26:32 -0800] "GET /lanti-incubateur-ou-comment-placer-le-conseil-au/ HTTP/1.1" 200 8242 "-" "Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)" -62.149.143.108 - - [10/Feb/2016:15:27:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -195.154.172.59 - - [10/Feb/2016:15:32:45 -0800] "GET /sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/ HTTP/1.1" 200 8844 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://techmeup.co/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-50x50.jpg HTTP/1.1" 200 2376 "http://hnwathcher.com/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:46 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://hnwathcher.com/sylvia-gallusser-expatriee-aux-us-jaime-mon-pays-la-france-reviensleon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/ HTTP/1.1" 200 9987 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /wp-content/uploads/2015/03/Photo-Bio-2013-300x300.jpg HTTP/1.1" 200 24078 "http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.233.224 - - [10/Feb/2016:15:32:47 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://hnwathcher.com/ce-que-je-referais-autrement-invite-cedric-giorgi/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_naj6huWLqb1sa6hof-50x50.jpg HTTP/1.1" 200 2457 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:50 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/le-talent-cache-de-ludovic-copere-electron-libre-de-linnovation-a-sony-du-japon-au-tango/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/plugins/hupso-share-buttons-for-twitter-facebook-google/style.css?ver=4.1.1 HTTP/1.1" 200 416 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/uploads/2015/03/Mathilde-le-Rouzic-Quaelead-200x300.jpg HTTP/1.1" 200 16095 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:52 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/ce-que-je-referais-autrement-invitee-mathilde-le-rouzic/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 438 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:54 -0800] "GET /wp-content/uploads/2015/03/teresa-colombi.png HTTP/1.1" 200 39881 "http://hnwathcher.com/teresa-colombi-ou-le-futur-de-lexperience-utilisateur/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/uploads/2014/07/tumblr_inline_n8dyo0TSCJ1sygmpd-50x50.jpg HTTP/1.1" 200 2374 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190495 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:55 -0800] "GET /wp-content/themes/great/images/arrow.png HTTP/1.1" 200 437 "http://hnwathcher.com/le-talent-cache-de-jerome-petazzoni-tinkerer-extraordinaire-chez-docker-de-lart-du-code-a-la-musique/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.53 - - [10/Feb/2016:15:32:57 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/du-travail-pour-les-epoux-epouses-dimmigres-tech-aux-us/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/themes/great/images/facebook.png HTTP/1.1" 200 4285 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:58 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://hnwathcher.com/le-talent-cache-dadrien-friggeri-data-scientist-chez-facebook-savoir-passer-du-code-a-la-maille/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] "GET /wp-content/plugins/wp-shortcode/css/tipsy.css?ver=4.1.1 HTTP/1.1" 200 868 "http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] "GET /wp-content/uploads/2015/02/avatar_0c3bab0c4ba4_1281-50x50.png HTTP/1.1" 200 3414 "http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.172.59 - - [10/Feb/2016:15:32:59 -0800] "GET /wp-content/themes/great/images/linkedin.png HTTP/1.1" 200 4390 "http://hnwathcher.com/suivez-nous-sur-facebook-twitter-et-maintenant-linkedin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:00 -0800] "GET /adieu-tumblr/ HTTP/1.1" 200 7231 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=4.1.1 HTTP/1.1" 200 505 "http://hnwathcher.com/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] "GET /wp-content/uploads/2014/11/tumblr_inline_nffi5m5ms31spe2e1-50x50.jpg HTTP/1.1" 200 2115 "http://hnwathcher.com/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -195.154.209.237 - - [10/Feb/2016:15:33:01 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/adieu-tumblr/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.21 (KHTML, like Gecko) wpif Safari/537.21" -192.99.150.96 - - [10/Feb/2016:15:36:43 -0800] "GET /feed/ HTTP/1.1" 200 63952 "-" "Filterly3-Argotic-Syndication-Framework/2008.0.2.0" -82.145.223.103 - - [10/Feb/2016:15:40:16 -0800] "GET /wp-content/uploads/2015/06/unnamed.jpg HTTP/1.1" 200 112056 "-" "Opera/9.80 (Android; Opera Mini/7.5.35721/37.7832; U; fr) Presto/2.12.423 Version/12.16" -40.77.167.90 - - [10/Feb/2016:15:44:28 -0800] "GET /paul-duan-le-super-heros-de-la-data-science-pour/ HTTP/1.1" 200 10090 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -198.58.103.92 - - [10/Feb/2016:15:49:31 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -119.188.4.3 - - [10/Feb/2016:15:56:45 -0800] "GET /muieblackcat HTTP/1.1" 404 4835 "-" "-" -119.188.4.3 - - [10/Feb/2016:15:56:50 -0800] "GET //mysqladmin/scripts/setup.php HTTP/1.1" 301 500 "-" "-" -198.58.102.155 - - [10/Feb/2016:15:58:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -68.180.228.42 - - [10/Feb/2016:16:03:42 -0800] "GET /ce-que-je-referais-autrement-invite-cedric-giorgi/feed/ HTTP/1.1" 200 893 "-" "Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)" -81.252.96.8 - - [10/Feb/2016:16:12:47 -0800] "GET /wordpress/wp-content/uploads/2015/02/favico.png HTTP/1.1" 304 187 "-" "Mozilla/4.0 (compatible;)" -91.121.211.59 - - [10/Feb/2016:16:13:36 -0800] "GET /marketing-pour-developpeurs-partie-2/ HTTP/1.0" 200 9343 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -91.121.112.142 - - [10/Feb/2016:16:13:48 -0800] "GET /post/86170645883/steve-marx-developer-advocate-dropbox HTTP/1.0" 301 275 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -91.121.112.142 - - [10/Feb/2016:16:13:57 -0800] "GET /office-tour-de-rackspace-san-francisco-avec HTTP/1.0" 301 403 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-content/themes/great/style.css HTTP/1.1" 200 7662 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wordpress/wp-content/uploads/2015/02/logo-text1.png HTTP/1.1" 200 5144 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3600 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:38 -0800] "GET /wp-includes/js/comment-reply.min.js?ver=4.1.1 HTTP/1.1" 200 757 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -92.90.17.14 - - [10/Feb/2016:16:23:39 -0800] "GET /wp-content/themes/great/images/search.png HTTP/1.1" 200 1683 "http://hnwathcher.com/adrien-duermael-pixowl-et-lindustrie/" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4" -66.249.66.41 - - [10/Feb/2016:16:24:09 -0800] "GET /florent-crivello-ingenieur-ios-a-kwarter/ HTTP/1.1" 200 8618 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -176.151.29.143 - - [10/Feb/2016:16:31:55 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10144 "https://www.google.fr/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/themes/great/js/modernizr.min.js HTTP/1.1" 200 6229 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/plugins/wp-shortcode/js/jquery.tipsy.js?ver=4.1.1 HTTP/1.1" 200 3065 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:57 -0800] "GET /wp-content/uploads/2014/08/tumblr_inline_nb1bncXtIP1r792z4-50x50.jpg HTTP/1.1" 200 2531 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:58 -0800] "GET /wp-content/themes/great/images/twitter.png HTTP/1.1" 200 4482 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:31:59 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:38:36 -0800] "GET /techmeup-le-monde-merveilleux-de-la-tech/ HTTP/1.1" 200 9503 "http://hnwathcher.com/a-quoi-ca-sert-un-co-fondateur-non-technique/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -176.151.29.143 - - [10/Feb/2016:16:40:50 -0800] "GET /faut-il-apprendre-a-coder-a-lecole-ou-bien/ HTTP/1.1" 200 9398 "http://hnwathcher.com/techmeup-le-monde-merveilleux-de-la-tech/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -198.58.96.215 - - [10/Feb/2016:16:43:01 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -176.151.29.143 - - [10/Feb/2016:16:45:42 -0800] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 592 "http://hnwathcher.com/les-francais-genies-de-la-silicon-valley/" "Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1" -144.76.29.162 - - [10/Feb/2016:16:52:07 -0800] "GET / HTTP/1.0" 200 33325 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -45.55.134.13 - - [10/Feb/2016:16:54:45 -0800] "GET /wp-content/themes/great/js/customscript.js HTTP/1.1" 200 3601 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36" -45.55.134.13 - - [10/Feb/2016:16:54:45 -0800] "GET /wp-content/plugins/easy-twitter-feed-widget/lib/js/widget-easy-twitter-feed-widget.js?ver=1.0 HTTP/1.1" 200 663 "http://marryme-bridal.ru/" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36" -162.243.175.81 - - [10/Feb/2016:16:59:49 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -62.210.142.23 - jez [10/Feb/2016:17:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -66.249.66.44 - - [10/Feb/2016:17:08:22 -0800] "GET /2014/09/ HTTP/1.1" 200 6019 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -62.210.188.36 - - [10/Feb/2016:17:12:44 -0800] "GET /wp-content/uploads/2015/02/10527525_10153205547817652_3810498128776234928_n-300x300.jpg HTTP/1.1" 200 34314 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -62.210.188.36 - - [10/Feb/2016:17:12:44 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/" "Mozilla/5.0 (iPad; CPU OS 7_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A406 Safari/8536.25" -209.190.95.226 - - [10/Feb/2016:17:14:11 -0800] "GET /wp-content/uploads/2015/03/1-9mRgHn-sBX_FQuA08m4kdA-1024x755.jpeg HTTP/1.1" 200 97501 "-" "Java/1.7.0_10" -23.23.19.184 - - [10/Feb/2016:17:15:28 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)" -94.73.142.106 - - [10/Feb/2016:17:16:40 -0800] "POST /xmlrpc.php HTTP/1.1" 200 793 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0" -198.58.102.155 - - [10/Feb/2016:17:28:12 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -5.9.85.4 - - [10/Feb/2016:17:38:46 -0800] "GET /robots.txt HTTP/1.0" 200 346 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)" -199.119.124.45 - - [10/Feb/2016:17:41:32 -0800] "GET /feed/ HTTP/1.1" 200 20931 "-" "Mozilla/5.0 (compatible; theoldreader.com; 1 subscribers; feed-id=cab69af8d42b04c85d91e979)" -157.55.39.82 - - [10/Feb/2016:17:42:44 -0800] "GET /index.php?controller=product&id_product=790 HTTP/1.1" 301 436 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -199.16.156.124 - - [10/Feb/2016:17:43:47 -0800] "GET /a-quoi-ca-sert-un-co-fondateur-non-technique/ HTTP/1.1" 200 10043 "-" "Twitterbot/1.0" -94.19.55.61 - - [10/Feb/2016:17:53:05 -0800] "GET / HTTP/1.1" 200 33403 "https://www.google.ru" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36" -2.1.201.36 - - [10/Feb/2016:18:06:19 -0800] "GET /rss HTTP/1.1" 304 163 "http://hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -162.243.175.176 - - [10/Feb/2016:18:10:53 -0800] "GET /feed/ HTTP/1.1" 304 182 "-" "NewsBlur Feed Fetcher - 4 subscribers - http://www.newsblur.com/site/5487666/techmeup-techmeup (Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/534.48.3 (KHTML, like Gecko) Version/5.1 Safari/534.48.3)" -149.254.250.232 - - [10/Feb/2016:18:13:39 -0800] "GET /wp-content/uploads/2015/03/1-4hdrSSvSgHd6oa4AL5KK3Q.jpeg HTTP/1.1" 200 174731 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; U; Android 4.1.2; en-gb; SAMSUNG GT-I9100/I9100XWMS2 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -149.254.250.232 - - [10/Feb/2016:18:13:39 -0800] "GET /wp-content/uploads/2015/03/1-l57K-8uyN9ELuGbgcaItmw-1024x524.png HTTP/1.1" 200 190496 "http://hnwatcher.com/silicon-valley/2015/12/26/recueil-dhistoires-de-talents-francais-de-san-francisco/" "Mozilla/5.0 (Linux; U; Android 4.1.2; en-gb; SAMSUNG GT-I9100/I9100XWMS2 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30" -198.58.102.49 - - [10/Feb/2016:18:17:24 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -54.197.178.93 - - [10/Feb/2016:18:33:46 -0800] "GET / HTTP/1.1" 200 33403 "-" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)" -178.137.17.196 - - [10/Feb/2016:18:39:53 -0800] "GET /steeve-morin-de-google-a-lentreprenariat/ HTTP/1.1" 200 29485 "http://www.auto-moto-elektronika.cz/" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; KKman2.0)" -157.55.39.218 - - [10/Feb/2016:18:45:55 -0800] "GET / HTTP/1.1" 200 7274 "-" "Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)" -185.130.5.207 - - [10/Feb/2016:18:49:13 -0800] "GET //admin/pma/scripts/setup.php HTTP/1.1" 301 499 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:15 -0800] "GET //myadmin/scripts/setup.php HTTP/1.1" 301 497 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:16 -0800] "GET //phpadmin/scripts/setup.php HTTP/1.1" 301 498 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:17 -0800] "GET //xampp/phpmyadmin/scripts/setup.php HTTP/1.1" 301 506 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:19 -0800] "GET //phpMyAdmin-2/scripts/setup.php HTTP/1.1" 301 502 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:20 -0800] "GET //blog/phpmyadmin/scripts/setup.php HTTP/1.1" 301 505 "-" "-" -185.130.5.207 - - [10/Feb/2016:18:49:21 -0800] "GET //php/phpmyadmin/scripts/setup.php HTTP/1.1" 301 504 "-" "-" -91.224.140.223 - - [10/Feb/2016:18:54:41 -0800] "GET / HTTP/1.1" 200 33373 "-" "GuzzleHttp/6.1.0 curl/7.29.0 PHP/5.6.14" -62.210.142.23 - jez [10/Feb/2016:19:06:07 -0800] "GET /rss HTTP/1.1" 304 163 "http://jez:lumn0h3D@hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -92.222.20.166 - - [10/Feb/2016:19:12:06 -0800] "GET /rss HTTP/1.1" 304 163 "-" "Tiny Tiny RSS/16.1 (c352248) (http://tt-rss.org/)" -180.76.15.19 - - [10/Feb/2016:19:19:22 -0800] "GET / HTTP/1.1" 200 33366 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" -2.1.201.36 - - [10/Feb/2016:19:36:15 -0800] "GET /rss HTTP/1.1" 304 163 "http://hnwathcher.com/rss" "FreshRSS/1.0.0 (Linux; http://freshrss.org) SimplePie/1.4-dev-FreshRSS" -198.58.99.82 - - [10/Feb/2016:19:37:15 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -50.116.30.23 - - [10/Feb/2016:19:45:10 -0800] "GET /rss HTTP/1.1" 304 219 "-" "Superfeedr bot/2.0 http://superfeedr.com - Make your feeds realtime: get in touch - feed-id:138292308" -209.133.111.211 - - [10/Feb/2016:19:53:16 -0800] "GET /robots.txt HTTP/1.1" 200 367 "-" "python-requests/2.2.1 CPython/2.7.3 Linux/3.2.0-56-generic" diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid b/alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid deleted file mode 100755 index 9fa45bf..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/0-what-is-my-pid +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -# my pid - -sleep 5 & -echo "$!" diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes b/alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes deleted file mode 100755 index cdf47d2..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/1-list_your_processes +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -# list all my currently running processes - -# source: https://linuxize.com/post/ps-command-in-linux/ -ps -auxf diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file b/alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file deleted file mode 100755 index 73b30f0..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/100-process_and_pid_file +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bash -# Process and PID file - -file="/var/run/myscript.pid" - -if [ ! -e "$file" ]; then - touch "$file" -fi - -sleep 2 & - -echo "$!" > "$file" - -# prints I hate the kill command, deletes the file and exits when receiving a SIGTERM or SIGQUIT signal -trap 'echo "I hate the kill command"; rm "$file"; exit' SIGTERM SIGQUIT - -# prints Y U no love me?! when receiving a SIGINT signal -trap "echo Y U no love me?!" SIGINT - -while true; do - echo "To infinity and beyond" - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process b/alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process deleted file mode 100755 index fb851f0..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/101-manage_my_process +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash -# manages manage_my_process by either starting it, stopping it or restarting it. - -command="$1" - -if [ -z "$command" ]; then - echo "Usage: manage_my_process {start|stop|restart}" - exit -fi - -if [ "$command" == "start" ]; then - - bash ./manage_my_process & - echo "$!" > /var/run/my_process.pid - echo "manage_my_process started" - -elif [ "$command" == "stop" ]; then - [ -e "/var/run/my_process.pid" ] && pkill -f './manage_my_process' && rm /var/run/my_process.pid - echo "manage_my_process stopped" - -elif [ "$command" == "restart" ]; then - - "$0" stop >& /dev/null - "$0" start >& /dev/null - echo "manage_my_process restarted" - -else - echo "Usage: manage_my_process {start|stop|restart}" -fi diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c b/alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c deleted file mode 100644 index efb106b..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/102-zombie.c +++ /dev/null @@ -1,38 +0,0 @@ -#include "stdio.h" -#include "stdlib.h" -#include "unistd.h" - -/** - * infinite_while - a function that runs forever and returns nothing - * Return: 0 in the end -*/ -int infinite_while(void) -{ - while (1) - { - sleep(1); - } - return (0); -} - -/** - * main - the entry to a program that creats 5 zombie process - * Return: 0 on sucess -*/ -int main(void) -{ - int children_processes = 0; - pid_t pid; - - while (children_processes < 5) - { - pid = fork(); - if (!pid) - break; - printf("Zombie process created, PID: %i\n", (int)pid); - children_processes++; - } - if (pid != 0) - infinite_while(); - return (0); -} diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid b/alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid deleted file mode 100755 index 9d6a2d1..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/2-show_your_bash_pid +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# list all bash processes -# shellcheck disable=SC2009 -ps -auxf | grep bash diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy b/alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy deleted file mode 100755 index 7502fb9..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/3-show_your_bash_pid_made_easy +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# PID made easy - -pgrep -l bash diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond b/alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond deleted file mode 100755 index bfbf626..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/4-to_infinity_and_beyond +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash -# To infinity and beyond - -while true; do - echo "To infinity and beyond" - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now b/alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now deleted file mode 100755 index 3325f54..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/5-dont_stop_me_now +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Don't stop me now - -pgrep -f 4-to_infinity_and_beyond | xargs kill diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can b/alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can deleted file mode 100755 index 97a10bb..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/6-stop_me_if_you_can +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Stop me if you can - -pkill -f 4-to_infinity_and_beyond diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can b/alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can deleted file mode 100755 index 9a463e2..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/67-stop_me_if_you_can +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Stop me if you can - -pkill -f 7-highlander diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander b/alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander deleted file mode 100755 index fcf216b..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/7-highlander +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash -# Highlander - -# print I am invincible!!! when receiving a SIGTERM signal -trap "echo I am invincible!!!" SIGTERM - -while true; do - echo "To infinity and beyond" - sleep 2 -done; diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process b/alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process deleted file mode 100755 index 50ee3d6..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/8-beheaded_process +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Beheaded process - -pgrep -f 7-highlander | xargs kill -9 diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/README.md b/alx-system_engineering-devops-main/0x05-processes_and_signals/README.md deleted file mode 100644 index 8df3a2e..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/README.md +++ /dev/null @@ -1,92 +0,0 @@ -# 0x05. Processes and signals - -## Resource - -- [Linux PID](http://www.linfo.org/pid.html) -- [Linux process](https://www.thegeekstuff.com/2012/03/linux-processes-environment/) -- [Linux signal](https://www.thegeekstuff.com/2012/03/linux-signals-fundamentals/) - -## Tasks - -
-0. What is my PID
-image -
- -
-1. List your processes
-image -
- -
-2. Show your Bash PID
-image -
- -
-3. Show your Bash PID made easy
-image -
- -
-4. To infinity and beyond
-image -
- -
-5. Don't stop me now!
-image -
- -
-6. Stop me if you can
-image -
- -
-7. Highlander
-image -
- -
-8. Beheaded process
-image -
- -
-9. Beheaded process
-image -
- -
-10. Process and PID file
-image -
- -
-11. Manage my process
-image - -
- -
-12. Zombie
-image - -
diff --git a/alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process b/alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process deleted file mode 100755 index cff089d..0000000 --- a/alx-system_engineering-devops-main/0x05-processes_and_signals/manage_my_process +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# well well well - -file="/tmp/my_process" - -while true; do - echo "I am alive!" >> "$file" - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb deleted file mode 100755 index a4b1aee..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/0-simply_match_school.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/School/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb deleted file mode 100755 index 7da99e3..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/1-repetition_token_0.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hbt{2,5}n/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb deleted file mode 100755 index 78dc1a0..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/100-textme.rb +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env ruby - -from = ARGV[0].scan(/from:(.*?)\]/) -to = ARGV[0].scan(/to:(.*?)\]/) -flags = ARGV[0].scan(/flags:(.*?)\]/) -puts [from, to, flags].join(',') diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb deleted file mode 100755 index 69431fa..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/2-repetition_token_1.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hb?tn/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb deleted file mode 100755 index c7144f2..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/3-repetition_token_2.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hbt+n/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb deleted file mode 100755 index 7028689..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/4-repetition_token_3.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/hbt*n/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb deleted file mode 100755 index ed5ad3e..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/5-beginning_and_end.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/^h.n$/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb deleted file mode 100755 index 84a6cb1..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/6-phone_number.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/^\d{10}$/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb b/alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb deleted file mode 100755 index f90788a..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/7-OMG_WHY_ARE_YOU_SHOUTING.rb +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env ruby -puts ARGV[0].scan(/[A-Z]*/).join diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/README.md b/alx-system_engineering-devops-main/0x06-regular_expressions/README.md deleted file mode 100644 index b3fe37f..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/README.md +++ /dev/null @@ -1,78 +0,0 @@ -# 0x06. Regular expression - -## Resource - -
-Regular Expression
-image - -
- -- [Regular expressions - basics](https://www.slideshare.net/neha_jain/introducing-regular-expressions) -- [Regular expressions - advanced](https://www.slideshare.net/neha_jain/advanced-regular-expressions-80296518) -- [Rubular is your best friend](https://rubular.com/) -- [Use a regular expression against a problem: now you have 2 problems](https://blog.codinghorror.com/regular-expressions-now-you-have-two-problems/) -- [Learn Regular Expressions with simple, interactive exercises](https://regexone.com/) - -## Tasks - -
-0. Simply matching School
-image -
- -
-1. Repetition Token #0
-image -
- -
-2. Repetition Token #1
-image -
- -
-3. Repetition Token #2
-image -
- -
-4. Repetition Token #3
-image -
- -
-5. Not quite HBTN yet
-image -
- -
-6. Call me maybe
-image -
- -
-7. OMG WHY ARE YOU SHOUTING?
-image -
- -
-8. Textme
-image - -
diff --git a/alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log b/alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log deleted file mode 100644 index 1074e1d..0000000 --- a/alx-system_engineering-devops-main/0x06-regular_expressions/text_messages.log +++ /dev/null @@ -1,96279 +0,0 @@ -Feb 1 11:00:00 ip-10-0-0-11 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-10 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272713208] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:19148265919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862524] [to:+13479542463] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970624] [to:13479163186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303400233] [to:+12342314220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:00 ip-10-0-0-10 mdr: 2016-02-01 11:00:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740488] [to:+18638557705] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:00 ip-10-0-64-11 mdr: 2016-02-01 11:00:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428689] [to:19043309587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415301908] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403390931] [to:+13474863238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-20 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447919968938] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672614181] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064037189] [to:+13024002454] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507197] [to:14843533218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722134307] [to:16183351715] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022186518] [to:+17026747598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289325] [to:14136574237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:01 ip-10-0-0-11 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-11 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:01 ip-10-0-64-10 mdr: 2016-02-01 11:00:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404638755] [to:19545043366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-10 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737959548] [to:+13479977009] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-10 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-10 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298987] [to:18322863802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-10 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:02 ip-10-0-0-11 mdr: 2016-02-01 11:00:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:02 ip-10-0-64-11 mdr: 2016-02-01 11:00:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492198] [to:18632068741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678434280] [to:+13476762800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197192247] [to:+19027031529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-11 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158530] [to:19204181571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-10 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052980921] [to:+17027181096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12259066449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:03 ip-10-0-64-10 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336170] [to:15207099023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:03 ip-10-0-0-11 mdr: 2016-02-01 11:00:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0201] -Feb 1 11:00:03 ip-10-0-64-11 mdr: 2016-02-01 11:00:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301606] [to:17249544312] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:15065430827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736100222] [to:+19086597034] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:15065430827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092934625] [to:19097233282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031905] [to:19132750260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181259] [to:17753428813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:14048576556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17788558569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950423] [to:13045532810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748237935] [to:+19783231466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408390] [to:19377274909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042435069] [to:+16474912464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-21 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-10 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602050749] [to:+13234865496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-10 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-64-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:04 ip-10-0-0-11 mdr: 2016-02-01 11:00:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185723417] [to:+15817009274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014058044] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164455361] [to:+19177731624] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047759407] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752762175] [to:+17027182733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816830217] [to:+12816034256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328489574] [to:+12816433955] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652479178] [to:+12606337306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043803536] [to:+12048181024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787016716] [to:+13476762800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707213250] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-20 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447834904898] [to:+447451223046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298888] [to:16614979238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077706] [to:12403380952] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-11 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024193366] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:05 ip-10-0-64-11 mdr: 2016-02-01 11:00:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:05 ip-10-0-0-10 mdr: 2016-02-01 11:00:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995997] [to:19084726225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488374] [to:19255704350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873551150] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327015] [to:17045247205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:06 ip-10-0-64-10 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063042963] [to:+18678883833] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-10 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-11 mdr: 2016-02-01 11:00:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039186591] [to:+13478966204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:06 ip-10-0-0-11 mdr: 2016-02-01 11:00:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400640] [to:14137770749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523750255] [to:+19199163958] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602656064] [to:+14406588866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077364] [to:15144099074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17022015982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-20 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223142] [to:+447581423589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777591] [to:12605192924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-10 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168164485] [to:+13475185759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500034C0201] -Feb 1 11:00:07 ip-10-0-0-11 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787996380] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:07 ip-10-0-64-11 mdr: 2016-02-01 11:00:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095162] [to:15145940452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:07 ip-10-0-0-21 mdr: 2016-02-01 11:00:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046745354] [to:+16049019170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18084681132] [to:18089377119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036179843] [to:+15874097968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168164485] [to:+13475185759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500034C0202] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086708949] [to:+12135296297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210951] [to:17346720555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-11 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:08 ip-10-0-64-11 mdr: 2016-02-01 11:00:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:08 ip-10-0-0-10 mdr: 2016-02-01 11:00:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017644] [to:18055393293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019170] [to:16046745354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142670324] [to:15135464525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294339] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13046202415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034593017] [to:+18133081488] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497317] [to:19174031599] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19024814189] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-10 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154233959] [to:+18133083192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:09 ip-10-0-64-10 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-11 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-11 mdr: 2016-02-01 11:00:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602051375] [to:+13055018393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:09 ip-10-0-0-21 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241130] [to:+447511097127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746450] [to:17854921034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322349483] [to:+17185049850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788329794] [to:+16025004726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654311604] [to:+12602755380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052980921] [to:+17027181096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-11 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097700643] [to:+17097004811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:10 ip-10-0-0-11 mdr: 2016-02-01 11:00:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:10 ip-10-0-64-10 mdr: 2016-02-01 11:00:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292515934] [to:+18508950587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:19148265919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314025] [to:18502418057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16122200837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437046] [to:15193796257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-21 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333864] [to:19312690959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242867536] [to:16204173218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-10 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:14437400936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:11 ip-10-0-0-10 mdr: 2016-02-01 11:00:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:11 ip-10-0-64-11 mdr: 2016-02-01 11:00:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617792028] [to:+15103354861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438559222] [to:+14156495279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546968651] [to:+19544594838] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927130] [to:17147707241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503073] [to:13372221292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159229807] [to:+16197324724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635930814] [to:+15635388332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18056288730] [to:17608586455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356148] [to:14237074995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545586508] [to:+13475188267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:12 ip-10-0-0-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158482] [to:19209032554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-10 mdr: 2016-02-01 11:00:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:12 ip-10-0-64-11 mdr: 2016-02-01 11:00:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424456] [to:+12342312505] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12542338287] [to:12547271979] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602656064] [to:+14406588866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18125300624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-11 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018425278] [to:19012681764] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:13 ip-10-0-0-10 mdr: 2016-02-01 11:00:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-10 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:13 ip-10-0-64-11 mdr: 2016-02-01 11:00:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064008711] [to:12538764327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044682501] [to:+14043411996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962387] [to:18605016706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313029671] [to:+17277679463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740475] [to:+13476762798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863127476] [to:+13233366395] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626099044] [to:+19015042554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485115] [to:12513756633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472363352] [to:+16474910817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995690] [to:19512922787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-21 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622725] [to:+447412913438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-10 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:14 ip-10-0-64-11 mdr: 2016-02-01 11:00:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17807125668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:14 ip-10-0-0-11 mdr: 2016-02-01 11:00:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068506474] [to:+15068034491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14699782274] [to:+19404634435] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437393446] [to:+14353391490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-10 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-10 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16138032854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873551150] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-10 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138032854] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:15 ip-10-0-0-11 mdr: 2016-02-01 11:00:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212857] [to:17856402028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:15 ip-10-0-64-11 mdr: 2016-02-01 11:00:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-20 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223142] [to:+447581423589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053581578] [to:+12497009418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048808779] [to:+16042593607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009274] [to:14185723417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384740] [to:13135443543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733160787] [to:+14692967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-21 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286768543] [to:+16783941572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605142786] [to:+16614024345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394256] [to:12169249469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-21 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447702313849] [to:+447451231785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403921386] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-64-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-10 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733160787] [to:+14692967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:16 ip-10-0-0-11 mdr: 2016-02-01 11:00:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347528] [to:13143662488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034747763] [to:+19033076562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660626] [to:15026048035] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787553041] [to:+16788199560] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:16467919914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789659669] [to:+19785336100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:15099549046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049723990] [to:+14242835182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146255566] [to:+14387930985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:15099549046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-10 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:17 ip-10-0-0-11 mdr: 2016-02-01 11:00:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:17 ip-10-0-64-10 mdr: 2016-02-01 11:00:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577540991] [to:+13476908726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004388] [to:13062903749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867978887] [to:+17736668818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-20 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869369] [to:16073311514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735378602] [to:+17736668703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194290713] [to:+12262415982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086147] [to:16626034041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-10 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:13024193366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376187] [to:10015175740470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:18 ip-10-0-64-11 mdr: 2016-02-01 11:00:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:18 ip-10-0-0-11 mdr: 2016-02-01 11:00:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438455308] [to:+19172834783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555101] [to:19717709812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467200] [to:19103335472] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17607157532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-10 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-11 mdr: 2016-02-01 11:00:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:18066546577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-11 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108598113] [to:+19292009028] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:19 ip-10-0-64-11 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:19 ip-10-0-64-10 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:19 ip-10-0-64-10 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477535440] [to:+19172319370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-11 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:19 ip-10-0-0-21 mdr: 2016-02-01 11:00:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451229455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479714194] [to:15732866969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-11 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-10 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122203538] [to:+12139359447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-10 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-11 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-10 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488228] [to:15415305654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-11 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:20 ip-10-0-64-10 mdr: 2016-02-01 11:00:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:20 ip-10-0-0-10 mdr: 2016-02-01 11:00:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400640] [to:14134892265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824547] [to:18622798079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208099800] [to:+17205852394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-11 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-11 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153024707] [to:+13126145548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-11 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:13128664683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:21 ip-10-0-64-10 mdr: 2016-02-01 11:00:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652023296] [to:+18653473349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:21 ip-10-0-0-10 mdr: 2016-02-01 11:00:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746450] [to:17854921034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491023] [to:15597956575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794776] [to:13179924369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444526] [to:13178280520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600434] [to:16626558035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077706] [to:12403380952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605188146] [to:+13479978408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:22 ip-10-0-64-11 mdr: 2016-02-01 11:00:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-11 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:22 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17692747293] [to:+14242525522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026882572] [to:+17279987124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472459052] [to:+13479977968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17168616710] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-10 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145435] [to:13126149086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612909416] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:23 ip-10-0-64-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-10 mdr: 2016-02-01 11:00:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145940452] [to:+14388095162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:23 ip-10-0-0-11 mdr: 2016-02-01 11:00:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17162085991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618929040] [to:+18638553196] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605188146] [to:+13479978408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043628] [to:19022937419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063812902] [to:+17786541725] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-11 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567701926] [to:+19172592230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:24 ip-10-0-0-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092295518] [to:+14086182127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-11 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323502] [to:19059283570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:24 ip-10-0-64-10 mdr: 2016-02-01 11:00:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785421891] [to:+12139359065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360175] [to:15092022819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655090807] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-10 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437417093] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-10 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-10 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:17196408440] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-10 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:25 ip-10-0-0-10 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803646879] [to:+13479372591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-10 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078202142] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:25 ip-10-0-64-11 mdr: 2016-02-01 11:00:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354390] [to:17083100748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16823195544] [to:+18177559985] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875858901] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782344952] [to:+14144006681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17029294339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969338] [to:17043094768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-10 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042296848] [to:+15068040192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062918] [to:16157568446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-10 mdr: 2016-02-01 11:00:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13196016284] [to:+13199835188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:26 ip-10-0-64-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:26 ip-10-0-0-11 mdr: 2016-02-01 11:00:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778162] [to:19178613817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633216780] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735873231] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197796565] [to:+12262716744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18085905628] [to:+17027478360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-64-11 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-11 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174346580] [to:+13478020326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:27 ip-10-0-0-10 mdr: 2016-02-01 11:00:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126290297] [to:+18326502986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179924369] [to:+19142794776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789334] [to:13047107464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+17207291099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266053] [to:17199941670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16138032854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233366395] [to:17863127476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609218157] [to:+18609710122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384740] [to:13135443543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-11 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:28 ip-10-0-0-10 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-10 mdr: 2016-02-01 11:00:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173895833] [to:+14243363147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:28 ip-10-0-64-11 mdr: 2016-02-01 11:00:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000661] [to:15875886289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032240942] [to:+12138223746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EA0201] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096680939] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:18199624525] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-11 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:29 ip-10-0-0-10 mdr: 2016-02-01 11:00:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764410] [to:15133701126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-11 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345641232] [to:+13477690201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:29 ip-10-0-64-10 mdr: 2016-02-01 11:00:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:12369935860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-10 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242867536] [to:16206551691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563573481] [to:+18328042553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474445610] [to:+13479471092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-64-10 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-11 mdr: 2016-02-01 11:00:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146394489] [to:+14146005237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:30 ip-10-0-0-20 mdr: 2016-02-01 11:00:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508026174] [to:+18192011543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384740] [to:13135443543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045532810] [to:+12132950423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17855778436] [to:+13478968975] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-20 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-20 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447596412172] [to:+447418331764] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097697477] [to:+16474951899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084068641] [to:+13479801427] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235722569] [to:+12135876044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-10 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044682501] [to:+14043411996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:31 ip-10-0-0-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079528788] [to:+18108528715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-10 mdr: 2016-02-01 11:00:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19032130535] [to:19403374507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:31 ip-10-0-64-11 mdr: 2016-02-01 11:00:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786531033] [to:16048807093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467677629] [to:15182904332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613762791] [to:+19093431018] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109101459] [to:16105045041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19899922646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605016706] [to:+13477962387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587211] [to:14403811886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862153] [to:13479093157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003EA0202] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910817] [to:16472363352] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046374094] [to:+19047587490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243520] [to:15406340517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:32 ip-10-0-64-11 mdr: 2016-02-01 11:00:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868437] [to:13469003900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:32 ip-10-0-0-10 mdr: 2016-02-01 11:00:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-10 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:16018743313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-11 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908726] [to:17577540991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-0-11 mdr: 2016-02-01 11:00:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-10 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:33 ip-10-0-64-11 mdr: 2016-02-01 11:00:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784065] [to:18032872293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:34 ip-10-0-0-10 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-11 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:34 ip-10-0-0-11 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212857] [to:17856402028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:34 ip-10-0-0-11 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-11 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249469] [to:+12162394256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-10 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-11 mdr: 2016-02-01 11:00:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:34 ip-10-0-64-10 mdr: 2016-02-01 11:00:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-10 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691522] [to:15177409389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-21 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949885001] [to:+447451232943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-20 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447914394989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-10 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032240942] [to:+12138223746] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612469761] [to:+12139298888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-10 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703746136] [to:+16783941417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:35 ip-10-0-64-10 mdr: 2016-02-01 11:00:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:35 ip-10-0-0-11 mdr: 2016-02-01 11:00:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123633247] [to:+12134785638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086468961] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065400032] [to:+15068008860] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065568323] [to:+12069469067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126290297] [to:+18326502986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137688053] [to:+14158532808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185723417] [to:+15817009274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757032084] [to:+19172610625] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:12345641232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634993] [to:16085673250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873389595] [to:+15874097949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:36 ip-10-0-0-11 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:36 ip-10-0-64-10 mdr: 2016-02-01 11:00:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945342] [to:14384984686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:17163787914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209068120] [to:+15204333433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19137250312] [to:+18653209476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756595] [to:19286144764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-20 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:17163787914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026073889] [to:+13024398480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376229] [to:18645254496] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046202415] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018334001] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-11 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18063335900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889733] [to:13175137664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413007] [to:19564381260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:37 ip-10-0-64-10 mdr: 2016-02-01 11:00:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596458992] [to:+17077502912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:37 ip-10-0-0-10 mdr: 2016-02-01 11:00:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592884245] [to:+12138221916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197796565] [to:+12262716744] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18473430471] [to:+18477568669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316559780] [to:+19018422448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958964] [to:14025781979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995116] [to:13238344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597956575] [to:+14156491023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127920003] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995116] [to:13238344617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14383451357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320060] [to:13236499521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156170394] [to:+12627774077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-21 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581423589] [to:+447451223142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-10 mdr: 2016-02-01 11:00:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783679326] [to:+13479067898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:38 ip-10-0-0-10 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:38 ip-10-0-64-11 mdr: 2016-02-01 11:00:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447855724128] [to:+14158539777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137822018] [to:+12482068388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768700153] [to:+13476677111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-11 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546816679] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-0-10 mdr: 2016-02-01 11:00:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024923084] [to:+15028041159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558280] [to:16514449100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16148153992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-10 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:39 ip-10-0-64-11 mdr: 2016-02-01 11:00:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799595] [to:16623867708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472842626] [to:+13658001519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-20 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330519] [to:+447919968938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082549] [to:15169670421] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097490452] [to:+17097019101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19737278708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233710239] [to:+16125021182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-11 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506179735] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-11 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019519532] [to:+12016215365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488471] [to:15416137779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:40 ip-10-0-64-10 mdr: 2016-02-01 11:00:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:40 ip-10-0-0-10 mdr: 2016-02-01 11:00:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615471] [to:13048405048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691756] [to:15074004283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077389282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198102] [to:+19172751143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024155115] [to:+12136349038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805912999] [to:+13103470120] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-11 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198102] [to:+19172751143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173296833] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:41 ip-10-0-0-10 mdr: 2016-02-01 11:00:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:41 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875858901] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168289822] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005055] [to:14044472216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613762791] [to:+19093431018] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-11 mdr: 2016-02-01 11:00:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12165133728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:42 ip-10-0-0-10 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-10 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:42 ip-10-0-64-11 mdr: 2016-02-01 11:00:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153850435] [to:+14843977201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846149] [to:17329840777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-21 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447746878103] [to:+447451249229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265040857] [to:+12267983065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065705339] [to:+13479805404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-10 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-11 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873231799] [to:14035932706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:43 ip-10-0-0-10 mdr: 2016-02-01 11:00:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19899922646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:43 ip-10-0-64-11 mdr: 2016-02-01 11:00:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154590297] [to:+12679232812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527193] [to:18102921711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733039] [to:13659491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778162] [to:19735341343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315959] [to:18437438342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078104] [to:14388036635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062294043] [to:+15068029604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079379280] [to:+13479789293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:15053850718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-10 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040626] [to:+16692223797] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:44 ip-10-0-64-11 mdr: 2016-02-01 11:00:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028302162] [to:+16475567404] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-10 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065070] [to:13606705514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233366111] [to:16613707095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:44 ip-10-0-0-11 mdr: 2016-02-01 11:00:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470888] [to:19104746974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478499438] [to:+19177370309] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17655090807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258364] [to:18188241344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125455480] [to:+18126709273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427504] [to:10636425552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008854] [to:13478220308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024266722] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-10 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:45 ip-10-0-0-11 mdr: 2016-02-01 11:00:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605402] [to:19283495865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:45 ip-10-0-64-11 mdr: 2016-02-01 11:00:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144177218] [to:+16692223797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092934224] [to:+15817008413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:16477610874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-20 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232859] [to:+447401128232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16477924552] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:15633216780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477097922] [to:+16474941589] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927989] [to:14384961763] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:46 ip-10-0-64-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419613103] [to:+18629551706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-11 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:46 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849036254] [to:+16465136354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079470430] [to:+19172592230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525522] [to:17692747293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-10 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162675984] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-10 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:47 ip-10-0-0-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127920003] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-10 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297550] [to:17609051394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:47 ip-10-0-64-11 mdr: 2016-02-01 11:00:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075511] [to:15148870342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009274] [to:14185723417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-11 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996178] [to:19704249476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941417] [to:17703746136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-11 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348515175] [to:+13479319365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-64-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133718614] [to:+16467691379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-21 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212925] [to:+447985120559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:48 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968975] [to:17855778436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18085905628] [to:+17027478360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452757515] [to:+18453632660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367451587] [to:+13366452036] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407355180] [to:+18173637168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-10 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158482] [to:19209032554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-11 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:49 ip-10-0-0-11 mdr: 2016-02-01 11:00:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:49 ip-10-0-64-10 mdr: 2016-02-01 11:00:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187071863] [to:+13476673110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320060] [to:13236499521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508005618] [to:+16475567182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339112] [to:19168036093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523421211] [to:+13524150282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549606] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093310629] [to:+15108244250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127628] [to:+19142060462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:50 ip-10-0-0-10 mdr: 2016-02-01 11:00:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:50 ip-10-0-64-11 mdr: 2016-02-01 11:00:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284858964] [to:+19172834340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082057171] [to:+19086597273] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152765043] [to:+13476969338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-11 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258479] [to:12092513137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838988] [to:14235448688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018877470] [to:+15513336948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-11 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-11 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:15133485878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:51 ip-10-0-64-10 mdr: 2016-02-01 11:00:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:51 ip-10-0-0-10 mdr: 2016-02-01 11:00:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147707241] [to:+17145927130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538764327] [to:+12064008711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635388332] [to:15635930814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082057171] [to:+19086597273] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028403124] [to:+16139092407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:18325312919] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-10 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:52 ip-10-0-0-11 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143585167] [to:+17097000587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-11 mdr: 2016-02-01 11:00:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:52 ip-10-0-64-10 mdr: 2016-02-01 11:00:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000661] [to:15875886289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412261797] [to:+19703158825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013384523] [to:+14044811503] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251509] [to:19724087808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812048] [to:18327282815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559335] [to:16467631400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:53 ip-10-0-64-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595130421] [to:+18639492018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-11 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067268430] [to:+12138228203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:53 ip-10-0-0-10 mdr: 2016-02-01 11:00:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477163730] [to:+16474963947] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353661] [to:18133602452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083919856] [to:+15099550816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364647] [to:+12048086978] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312238837] [to:+18312188963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587493] [to:12154397156] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387930985] [to:15146255566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491023] [to:15597956575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-11 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032C0301] -Feb 1 11:00:54 ip-10-0-0-11 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043043035] [to:+18046246508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:54 ip-10-0-64-11 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:54 ip-10-0-0-10 mdr: 2016-02-01 11:00:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412105] [to:19786756713] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040113] [to:+17028158270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158009272] [to:+12138223823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434091720] [to:+17727740686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0202] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753127257] [to:+15754483723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512531145] [to:+16317705442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886921] [to:+18133208530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086468961] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808439036] [to:+13072138974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024193366] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412105] [to:19786756713] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785536558] [to:+14706731871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263763030] [to:+12267793908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562529460] [to:+12138733039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19419200036] [to:+19418705362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189029993] [to:+19177320539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13196016284] [to:+13193837253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023996838] [to:+14402528421] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603167982] [to:+13477690322] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513229544] [to:+19172659241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18154040763] [to:+18572193374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167695827] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009274] [to:14185723417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463849810] [to:+13478969385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15098443839] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032C0302] -Feb 1 11:00:55 ip-10-0-64-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:14055087677] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:14055087677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-10 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:55 ip-10-0-0-11 mdr: 2016-02-01 11:00:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025793496] [to:+19027004305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:55 ip-10-0-64-11 mdr: 2016-02-01 11:00:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044682501] [to:+14043411996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474445610] [to:+13479471092] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470120] [to:15805912999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920788] [to:15174890318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-11 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-11 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-10 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:56 ip-10-0-0-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054103417] [to:+13103470120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-11 mdr: 2016-02-01 11:00:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:56 ip-10-0-64-10 mdr: 2016-02-01 11:00:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059283570] [to:+15873323502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415301908] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019101] [to:17097490452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750149] [to:14804004176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228135] [to:16147434325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-20 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875097527] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075511] [to:14388757916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555307] [to:12269274720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052980921] [to:+17027181096] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127753776] [to:+15129523446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173296833] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-64-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944904] [to:17735841900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032174414] [to:+12138619172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-11 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:57 ip-10-0-0-10 mdr: 2016-02-01 11:00:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022295] [to:17632026361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-10 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605157309] [to:+12602327539] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005312] [to:17097644100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515624] [to:17869914898] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-11 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-11 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951899] [to:17097697477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:58 ip-10-0-64-11 mdr: 2016-02-01 11:00:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:58 ip-10-0-0-10 mdr: 2016-02-01 11:00:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041533] [to:15066087415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049723990] [to:+14242835182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488228] [to:15415305654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-11 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104767254] [to:+19175809802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-11 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042556737] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593607] [to:16048808779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-20 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232943] [to:+447949885001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-11 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19415254355] [to:+14074424055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:00:59 ip-10-0-64-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:00:59 ip-10-0-0-10 mdr: 2016-02-01 11:00:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:00 ip-10-0-64-11 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-10 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187215769] [to:+12243238942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-10 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602959] [to:18566858713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-21 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502997487] [to:+447520674063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:00 ip-10-0-64-11 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:00 ip-10-0-64-11 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-11 mdr: 2016-02-01 11:01:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:00 ip-10-0-0-11 mdr: 2016-02-01 11:01:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106726718] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-11 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146191486] [to:+14387940492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-20 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751652158] [to:+447418327246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:01 ip-10-0-0-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19798204215] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-11 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016466746] [to:+13012885047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:01 ip-10-0-64-10 mdr: 2016-02-01 11:01:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106726718] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:14698319662] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022015982] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732780] [to:14234431965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086724574] [to:+13072138974] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693537743] [to:14078790956] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092190] [to:18435425792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:14698319662] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004811] [to:17097700643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991277] [to:12504230244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317672927] [to:+15168302393] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470730] [to:18068911269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156170394] [to:+12627774077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:02 ip-10-0-64-10 mdr: 2016-02-01 11:01:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:02 ip-10-0-0-11 mdr: 2016-02-01 11:01:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035241402] [to:+13479544004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:18623730813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185049868] [to:16083326264] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396039853] [to:+18622278144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-10 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035932706] [to:+15873231799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-10 mdr: 2016-02-01 11:01:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-10 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597034] [to:19736100222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19029814189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345479] [to:19044088591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:03 ip-10-0-64-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:03 ip-10-0-0-11 mdr: 2016-02-01 11:01:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309539015] [to:+13309157320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12065568323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675368195] [to:+12138062922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075511] [to:14388757916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-11 mdr: 2016-02-01 11:01:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037250169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037250169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682263] [to:19033405093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-64-10 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786527764] [to:17783173075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015524] [to:18052330557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:04 ip-10-0-0-11 mdr: 2016-02-01 11:01:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18154040763] [to:+18572193374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479967997] [to:+16474910367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032C0303] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102921711] [to:+18108527193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15418972188] [to:+15413257355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18154040763] [to:+18572193374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132851211] [to:+16139120973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837048] [to:16236339728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103618197] [to:+15103137377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060637] [to:18135631647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440259] [to:13369654758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-11 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751257] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:05 ip-10-0-64-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:05 ip-10-0-0-10 mdr: 2016-02-01 11:01:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13143093831] [to:13149144598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049723990] [to:+14242835182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618116] [to:19105542832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708459762] [to:+15103403586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-10 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:06 ip-10-0-0-11 mdr: 2016-02-01 11:01:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:06 ip-10-0-64-11 mdr: 2016-02-01 11:01:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12506179735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022368746] [to:+17278196489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500035D0202] -Feb 1 11:01:07 ip-10-0-0-21 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244958] [to:+447516694449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500035D0201] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269356] [to:14157860624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491516] [to:19568987036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794776] [to:13179924369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188056196] [to:+15817016485] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-10 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269865] [to:13126188929] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16309150363] [to:+16307555225] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:07 ip-10-0-64-11 mdr: 2016-02-01 11:01:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603220526] [to:+16316141113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-11 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033684624] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:07 ip-10-0-0-10 mdr: 2016-02-01 11:01:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193909] [to:18083438968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478762278] [to:+19173963257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315959] [to:18437438342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074324743] [to:+14072160013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015073039] [to:+17402017790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182733] [to:17752762175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194709235] [to:+17193561038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-10 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-21 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:13024193366] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:08 ip-10-0-64-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148095] [to:+16822314077] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-11 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:08 ip-10-0-0-21 mdr: 2016-02-01 11:01:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156401512] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004811] [to:17097700643] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142589] [to:18599828018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479263576] [to:+17053024686] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048085872] [to:+13478685892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039186591] [to:+13478966204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-11 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635622483] [to:14076247442] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-10 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:09 ip-10-0-0-11 mdr: 2016-02-01 11:01:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:09 ip-10-0-64-10 mdr: 2016-02-01 11:01:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15097397638] [to:13134045272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550991] [to:14109467326] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653466472] [to:+15169269582] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137788910] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105071348] [to:+12343867680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077358365] [to:+13479978618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-10 mdr: 2016-02-01 11:01:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:10 ip-10-0-0-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13373084215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-11 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:10 ip-10-0-64-10 mdr: 2016-02-01 11:01:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17163812202] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969288] [to:17174727839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025941] [to:19097136685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144342539] [to:+16825007349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-10 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082103492] [to:+15129526377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] Dallas Addie: Still have i can come p... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478220308] [to:+16102008854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163760249] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:11 ip-10-0-64-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673428220] [to:+16464179308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-11 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:11 ip-10-0-0-10 mdr: 2016-02-01 11:01:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:17163787914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-10 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587255] [to:14404205154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18434329860] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587493] [to:12672614181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046192519] [to:+16042652478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:12 ip-10-0-0-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-11 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026040460] [to:+13024000586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:12 ip-10-0-64-10 mdr: 2016-02-01 11:01:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306417725] [to:+14158909052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739075] [to:17403091504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18018334001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154291] [to:+13479131048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12504230244] [to:+16477991277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079673] [to:15146473843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137960651] [to:+16136047744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-11 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-21 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451243805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064556] [to:19094380210] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673682164] [to:+12677588756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:13 ip-10-0-0-10 mdr: 2016-02-01 11:01:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168049080] [to:+16474954230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:13 ip-10-0-64-11 mdr: 2016-02-01 11:01:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-20 mdr: 2016-02-01 11:01:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178280520] [to:+13176444526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673387033] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636590] [to:+13477866731] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-0-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156972917] [to:+16149965978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-10 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19713036504] [to:+19715128671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:14 ip-10-0-64-11 mdr: 2016-02-01 11:01:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403390931] [to:+13474863238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886793] [to:+19177248565] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610625] [to:15757032084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181083] [to:18455967349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133701126] [to:+13476764410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989413] [to:13473282292] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673387033] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833156] [to:19568217885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740469] [to:+14158916638] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:15 ip-10-0-64-10 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745398] [to:14234916623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:15 ip-10-0-0-11 mdr: 2016-02-01 11:01:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297733] [to:12765941664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388036635] [to:+14388078104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415301908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805397] [to:14234650830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347022] [to:18637096783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515996711] [to:+19148486395] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042556737] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-20 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209811] [to:+447960638118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459177] [to:14194630691] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768620] [to:14234944529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-10 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:16 ip-10-0-64-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253109530] [to:19165195238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:16 ip-10-0-0-11 mdr: 2016-02-01 11:01:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12154590297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005312] [to:17097644100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376187] [to:10015175740470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181083] [to:18455967349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082061490] [to:+13478967904] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307880583] [to:+16475037529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169724010] [to:+13476677218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137640] [to:16033414661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376187] [to:10012025533767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605402] [to:19283495865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-11 mdr: 2016-02-01 11:01:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:17 ip-10-0-0-11 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269806097] [to:+12262431580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:17 ip-10-0-64-10 mdr: 2016-02-01 11:01:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-10 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262534298] [to:+12132950236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677111] [to:12768700153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-10 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-10 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:17069790338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-10 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613762791] [to:+19093431018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-10 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505244540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:18 ip-10-0-64-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269806097] [to:+12262431580] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:18 ip-10-0-0-11 mdr: 2016-02-01 11:01:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18302200508] [to:+17279987517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064353655] [to:+15068040546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000587] [to:15143585167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102095923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597956575] [to:+14156491023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195372019] [to:+15103353130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060462] [to:19199127628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:12036310134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762459285] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056265642] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232166672] [to:+12133752629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-11 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125455480] [to:+18126709273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077730] [to:12409388865] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:19 ip-10-0-64-10 mdr: 2016-02-01 11:01:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013496954] [to:+13012885452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:19 ip-10-0-0-10 mdr: 2016-02-01 11:01:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-20 mdr: 2016-02-01 11:01:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-10 mdr: 2016-02-01 11:01:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298790] [to:19122379374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102156] [to:17057838614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162827967] [to:+13479066526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063143353] [to:+14064043400] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-10 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:20 ip-10-0-0-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168286778] [to:+13134246526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:20 ip-10-0-64-11 mdr: 2016-02-01 11:01:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-10 mdr: 2016-02-01 11:01:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:21 ip-10-0-0-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603011934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:21 ip-10-0-0-11 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17169986673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:21 ip-10-0-64-10 mdr: 2016-02-01 11:01:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969338] [to:18152765043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18434329860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953783] [to:16474641191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370745] [to:12094221899] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-10 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-10 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-10 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:22 ip-10-0-0-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314177211] [to:19203491496] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-10 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:22 ip-10-0-64-11 mdr: 2016-02-01 11:01:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12136345718] [to:+13478084152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+12342315469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046401448] [to:+12136163060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096680939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802966969] [to:+15874101434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017729] [to:17402229596] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324724] [to:16159229807] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:17063294862] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068388] [to:13137822018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-11 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724185045] [to:+16122557827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:23 ip-10-0-0-10 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:23 ip-10-0-64-11 mdr: 2016-02-01 11:01:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802701641] [to:+16474913915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532985766] [to:+14073371857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753428813] [to:+17027181259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046778] [to:+13479979060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029803056] [to:+17145927134] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-20 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949885001] [to:+447451232943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920788] [to:15174890318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953475] [to:14163584473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14424000462] [to:+16465319148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709273] [to:18125455480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-10 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:24 ip-10-0-0-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:24 ip-10-0-64-11 mdr: 2016-02-01 11:01:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995690] [to:19512922787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-11 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918737] [to:16479987332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-11 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287301477] [to:+17029565380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626558035] [to:+17278600434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:25 ip-10-0-64-10 mdr: 2016-02-01 11:01:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146475787] [to:+14388075531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:25 ip-10-0-0-10 mdr: 2016-02-01 11:01:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105542832] [to:+17723618116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-10 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154916] [to:15874367573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-10 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-10 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:26 ip-10-0-0-10 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698319662] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:26 ip-10-0-64-11 mdr: 2016-02-01 11:01:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-11 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-11 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-11 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-11 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506179735] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-20 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672108] [to:+447443412752] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-11 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040521] [to:15063211497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:27 ip-10-0-0-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18317075924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:27 ip-10-0-64-10 mdr: 2016-02-01 11:01:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099864] [to:12109045694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192904203] [to:+14197767473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843977201] [to:12153850435] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:16146233123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604990974] [to:+12342313903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403983272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13373854539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011385953733038] [to:+19364174567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:13302755522] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:15106726718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069617838] [to:+15068045506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517065913] [to:+16125023518] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13143093831] [to:13149144598] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953475] [to:14163584473] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002988] [to:13023443856] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128664683] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157561] [to:12148607852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-10 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:28 ip-10-0-0-10 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403269146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412261797] [to:+19703158825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:28 ip-10-0-64-11 mdr: 2016-02-01 11:01:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17404855821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092190] [to:18033699534] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:13302755463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19729976481] [to:+14692057811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17408145515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403900827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:14165565382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415301908] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434563792] [to:+16233836442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C10202] -Feb 1 11:01:29 ip-10-0-0-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788092607] [to:+16042438369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101881] [to:19372052382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677773] [to:15619698550] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:29 ip-10-0-0-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-11 mdr: 2016-02-01 11:01:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:29 ip-10-0-64-10 mdr: 2016-02-01 11:01:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:17734031665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674756] [to:19134019235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-11 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384925370] [to:+14387943046] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-21 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520625379] [to:+447717477719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864395] [to:13232056122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747738130] [to:18025797462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958964] [to:18176157728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12546307338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-64-10 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362427473] [to:+19365878658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-11 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409574] [to:15192420504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:30 ip-10-0-0-21 mdr: 2016-02-01 11:01:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488536] [to:17703749498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-21 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18434329860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-11 mdr: 2016-02-01 11:01:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612909416] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-11 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419703] [to:19727402676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599799074] [to:+14243364291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183624] [to:19562520761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764410] [to:15133701126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137432] [to:12536666916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733044] [to:19522231264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:31 ip-10-0-64-11 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:31 ip-10-0-0-10 mdr: 2016-02-01 11:01:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029297440] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19034747763] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449054] [to:19019001329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801237] [to:12074596298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652561588] [to:+12135296614] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853313611] [to:+17162792534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097072] [to:16134137417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474941978] [to:16478647943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:32 ip-10-0-0-10 mdr: 2016-02-01 11:01:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154087699] [to:+17572969390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:32 ip-10-0-64-11 mdr: 2016-02-01 11:01:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719938] [to:18102930066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125201843] [to:+18572193275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146324159] [to:+14388071674] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173534994] [to:+16034132277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129730265] [to:+17089467128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066087415] [to:+15068041533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236439744] [to:+19093615226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096137647] [to:+14158530538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:33 ip-10-0-0-11 mdr: 2016-02-01 11:01:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203943547] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-11 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032357326] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:33 ip-10-0-64-10 mdr: 2016-02-01 11:01:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406890] [to:+13194507976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388036635] [to:+14388078104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816617] [to:12017138871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193766789] [to:+13479971508] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269806097] [to:+12262431580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059289050] [to:+12262417402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-11 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593484] [to:13128109255] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323502] [to:19059283570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:34 ip-10-0-64-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023128882] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-10 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:34 ip-10-0-0-11 mdr: 2016-02-01 11:01:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642304531] [to:+14703334933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986354] [to:17276449338] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-20 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232943] [to:+447949885001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-20 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697537] [to:12525924323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358244] [to:19193454714] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148949166] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-0-21 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411443500] [to:+447451226628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-10 mdr: 2016-02-01 11:01:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:35 ip-10-0-64-11 mdr: 2016-02-01 11:01:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369940] [to:12533026790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808029257] [to:+15874100883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069790338] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13196936758] [to:+17278196873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-10 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889733] [to:13175137664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:36 ip-10-0-0-11 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:36 ip-10-0-64-10 mdr: 2016-02-01 11:01:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097072] [to:16134137417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-10 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19726665632] [to:12175027747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-20 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672108] [to:+447443412752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563283493] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037693] [to:19548160377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:37 ip-10-0-0-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997185] [to:17169975095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625455587] [to:+17604748326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-11 mdr: 2016-02-01 11:01:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296356] [to:15742816635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:37 ip-10-0-64-10 mdr: 2016-02-01 11:01:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643457452] [to:+17277053475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572381442] [to:+16172132950] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822326] [to:16077936587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158828259] [to:+12404077446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053941708] [to:18058637223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164282] [to:16787890796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:19056265642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:38 ip-10-0-64-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991277] [to:12504230244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:38 ip-10-0-64-11 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692027278] [to:12148743227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:38 ip-10-0-0-10 mdr: 2016-02-01 11:01:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838988] [to:14235448688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000587] [to:15143585167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043094768] [to:+13476969338] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123504297] [to:+12105718194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152765043] [to:+13476969338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419703] [to:19727402676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-0-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928479] [to:13069408167] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-10 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156170128] [to:+12677938310] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:39 ip-10-0-64-11 mdr: 2016-02-01 11:01:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294214940] [to:+12139927950] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024208] [to:16614188581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:15148949166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:15312894745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-20 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447907640139] [to:+447520670376] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068544195] [to:+13214062781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132890733] [to:+18572193221] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479618849] [to:+16474912654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886843] [to:+13476504917] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-11 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:40 ip-10-0-64-10 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:40 ip-10-0-0-11 mdr: 2016-02-01 11:01:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375974182] [to:+19172668074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-20 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332325] [to:+447470020431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033405093] [to:+13478682263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166403118] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13374668692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857687791] [to:+12813066412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142149] [to:17732314829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-10 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-10 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:41 ip-10-0-64-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:41 ip-10-0-0-11 mdr: 2016-02-01 11:01:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18676895133] [to:+18678883719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300824] [to:18019804250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347070234] [to:+12139359912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-20 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165606849] [to:+12138025291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148247] [to:17405177729] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-20 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447984719981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233527018] [to:+16784345629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:42 ip-10-0-64-10 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-10 mdr: 2016-02-01 11:01:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:42 ip-10-0-0-11 mdr: 2016-02-01 11:01:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:16268244456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784074223] [to:+12133550262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765941664] [to:+12135297733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756713] [to:+19298412105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725347179] [to:17606983768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623730813] [to:+12134784359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567701926] [to:+19172592230] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088189284] [to:14086650727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047264411] [to:+19142066720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:43 ip-10-0-64-11 mdr: 2016-02-01 11:01:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:43 ip-10-0-0-10 mdr: 2016-02-01 11:01:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970624] [to:12815031165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-10 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612909416] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-10 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035568240] [to:+19177328563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:44 ip-10-0-0-11 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188145] [to:19104788784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:17742006083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:44 ip-10-0-0-10 mdr: 2016-02-01 11:01:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:44 ip-10-0-64-11 mdr: 2016-02-01 11:01:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:17742006083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756713] [to:+19298412105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005442] [to:17092930408] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15147066380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005442] [to:17092930408] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478420787] [to:+16463496231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319148] [to:14424000462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124489643] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-11 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-21 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339938] [to:+447816850613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-11 mdr: 2016-02-01 11:01:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062503417] [to:+14256789365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:45 ip-10-0-0-10 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:45 ip-10-0-64-10 mdr: 2016-02-01 11:01:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784699041] [to:+16784338503] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604406865] [to:+12606355234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001937] [to:16813137897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15413212741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-20 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153850435] [to:+14843977201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918737] [to:16479987332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072186091] [to:+16125021426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-11 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073311514] [to:+19787869369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-11 mdr: 2016-02-01 11:01:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:46 ip-10-0-64-11 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:46 ip-10-0-0-10 mdr: 2016-02-01 11:01:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250777] [to:15179775650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071647] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-10 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-10 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314177211] [to:16312949683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13612909416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-10 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996758] [to:17204292244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478654818] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474236790] [to:+16465688208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-10 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:47 ip-10-0-64-11 mdr: 2016-02-01 11:01:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349038] [to:14024155115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-11 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317672927] [to:+15168302393] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:47 ip-10-0-0-10 mdr: 2016-02-01 11:01:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647152845] [to:+16476937093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073783969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165195238] [to:+19253109530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048081863] [to:+17786530138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134892265] [to:+18572400640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703569033] [to:+13473797049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12154590297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:48 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168820658] [to:+13479138121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:48 ip-10-0-0-11 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-10 mdr: 2016-02-01 11:01:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549371606] [to:+19543143634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504429] [to:17875088270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953042] [to:16474035639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246920] [to:13136295704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710479] [to:12404443155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478360] [to:18085905628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:16268244456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437046] [to:12493589987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:49 ip-10-0-64-11 mdr: 2016-02-01 11:01:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793065244] [to:+12139297409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:49 ip-10-0-0-10 mdr: 2016-02-01 11:01:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-10 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031469] [to:+12362373471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-10 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-20 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:18325312919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:50 ip-10-0-64-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-20 mdr: 2016-02-01 11:01:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447455014197] [to:+447451207727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031A0202] -Feb 1 11:01:50 ip-10-0-64-10 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:50 ip-10-0-0-11 mdr: 2016-02-01 11:01:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-10 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-10 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185271601] [to:+18572404039] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-21 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447455014197] [to:+447451207727] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031A0201] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016927120] [to:+17193437467] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-20 mdr: 2016-02-01 11:01:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520621972] [to:+447773775324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-10 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137770749] [to:+18572400640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767473] [to:14192904203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:51 ip-10-0-0-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13378534520] [to:+14092205982] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:51 ip-10-0-64-11 mdr: 2016-02-01 11:01:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857430874] [to:+15852823243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149798547] [to:15142982854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201587] [to:17174240009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604417264] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313003] [to:15857437698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12369935860] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17743570125] [to:15307126190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-10 mdr: 2016-02-01 11:01:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-10 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745936] [to:12073189901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:52 ip-10-0-0-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:52 ip-10-0-64-11 mdr: 2016-02-01 11:01:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-21 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805901364] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-10 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677737] [to:19094549604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-20 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198515] [to:19177240266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:53 ip-10-0-64-11 mdr: 2016-02-01 11:01:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:53 ip-10-0-0-10 mdr: 2016-02-01 11:01:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405137] [to:12486626886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491023] [to:15597956575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12104592979] [to:+18326506295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047457191] [to:+13606027089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472496796] [to:+14153408008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215365] [to:12019519532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702399379] [to:+19148208065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138614516] [to:13158167032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981199] [to:15196159269] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18507608820] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072138974] [to:16059419108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:54 ip-10-0-64-11 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808859646] [to:+15874090821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:54 ip-10-0-0-11 mdr: 2016-02-01 11:01:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00201] -Feb 1 11:01:54 ip-10-0-0-10 mdr: 2016-02-01 11:01:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021182] [to:14233710239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165804211] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064353655] [to:+15068040546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026040460] [to:+13024000586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477581058] [to:+13475188742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549606] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543308515] [to:+13054174113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C10201] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633216780] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032850195] [to:+12019955744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016602798] [to:+16463491978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647231321] [to:+16783941217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-20 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531386] [to:12054943645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166171795] [to:+13218329644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204317153] [to:+15207278540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419719535] [to:+15419182046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449905] [to:17316109658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042435069] [to:+16474912464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536666916] [to:+15103137432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035731372] [to:+19172660096] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076449] [to:15102820903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109045694] [to:+13125099864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879982866] [to:+16475037260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319148] [to:17602964805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054396181] [to:+12262401175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-64-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474941978] [to:16478647943] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-11 mdr: 2016-02-01 11:01:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00202] -Feb 1 11:01:55 ip-10-0-0-10 mdr: 2016-02-01 11:01:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609051394] [to:+12139297550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-10 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096655907] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18674458176] [to:+16474941383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606027398] [to:13604300048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:56 ip-10-0-0-11 mdr: 2016-02-01 11:01:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:56 ip-10-0-64-10 mdr: 2016-02-01 11:01:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:12762459285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077882844] [to:14185401216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-10 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234944529] [to:+14242768620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-11 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-10 mdr: 2016-02-01 11:01:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:57 ip-10-0-0-20 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447535731524] [to:+447451235560] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:57 ip-10-0-64-11 mdr: 2016-02-01 11:01:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342029966] [to:+17126428028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405090923] [to:+15617666160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786531090] [to:16472859979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-11 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:17169367983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176099885] [to:+13475808720] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18125300624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-11 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:58 ip-10-0-64-10 mdr: 2016-02-01 11:01:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:58 ip-10-0-0-10 mdr: 2016-02-01 11:01:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488536] [to:17703749498] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002515] [to:17209894553] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546816679] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18142186063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13378315582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-10 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047264411] [to:+19142066720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450618] [to:13363258942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-64-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093224073] [to:+15093182120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-10 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868437] [to:19125921795] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:01:59 ip-10-0-0-11 mdr: 2016-02-01 11:01:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:17204515733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157773] [to:13068217201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537669290] [to:+12536422461] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-11 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058211434] [to:+13214068108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157773] [to:13068217201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-64-10 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969288] [to:17174727839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-10 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990309] [to:18723015797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:00 ip-10-0-0-11 mdr: 2016-02-01 11:02:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092022293] [to:+18569429154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080471A60301] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12068412086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234916623] [to:+17604745398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735593927] [to:19738975185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735593927] [to:19738975185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137377] [to:15103618197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088993] [to:16134026855] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-21 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447917690081] [to:+447520627275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092022293] [to:+18569429154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080471A60302] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316463] [to:14042685755] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-10 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505171442] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-10 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778472] [to:14084306308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:01 ip-10-0-64-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:01 ip-10-0-0-11 mdr: 2016-02-01 11:02:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-10 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-11 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-21 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232943] [to:+447949885001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-11 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-10 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-10 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045099882] [to:+19164687656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:02 ip-10-0-64-11 mdr: 2016-02-01 11:02:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-10 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:02 ip-10-0-0-11 mdr: 2016-02-01 11:02:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042444631] [to:+18185401199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265017] [to:17196391930] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-21 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447717477719] [to:+447520625379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-11 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089570] [to:14356804262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-10 mdr: 2016-02-01 11:02:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-10 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671558] [to:18049391085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-21 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622725] [to:+447412913438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:03 ip-10-0-0-11 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:03 ip-10-0-64-10 mdr: 2016-02-01 11:02:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:18702752350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12563283493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049606722] [to:+19298410646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049606722] [to:+19298410646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-11 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102792063] [to:+19179797074] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-10 mdr: 2016-02-01 11:02:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16286001291] [to:+19172594650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018101476] [to:18016669354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:04 ip-10-0-0-20 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231785] [to:+447702313849] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:04 ip-10-0-64-10 mdr: 2016-02-01 11:02:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102792063] [to:+19179797074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206600706] [to:+19705481282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128109255] [to:+15635593484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022215348] [to:+18638554129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324691452] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522252126] [to:+17865030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102792063] [to:+19179797074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852497736] [to:+18018907412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875088270] [to:+13476504429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255479] [to:19414474501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195905363] [to:+14149731423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597273] [to:19082057171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765941664] [to:+12135297733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033699534] [to:+19802092190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918737] [to:16479987332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338924] [to:16785938560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:05 ip-10-0-0-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19033737093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-11 mdr: 2016-02-01 11:02:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:05 ip-10-0-64-10 mdr: 2016-02-01 11:02:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044139214] [to:+13369382977] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826378] [to:18643139818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472681821] [to:+16474955069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187757002] [to:+16476937314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500030E0201] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199941670] [to:+17194266053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500030E0202] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-11 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147049] [to:16155610682] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-64-10 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-21 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157568446] [to:+12138062918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:06 ip-10-0-0-11 mdr: 2016-02-01 11:02:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015224] [to:12299778691] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996758] [to:17204292244] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502817] [to:12096966467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12285962407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-11 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-11 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-10 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:07 ip-10-0-64-10 mdr: 2016-02-01 11:02:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044088591] [to:+18435345479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:07 ip-10-0-0-20 mdr: 2016-02-01 11:02:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520626091] [to:+447764199955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725939] [to:12148748198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886857] [to:+13478683837] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-21 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015483] [to:12525253593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183614043] [to:+15817015342] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142682236] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976036] [to:19286374267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-11 mdr: 2016-02-01 11:02:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263498103] [to:+12267901959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-64-11 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037260] [to:15879982866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500838] [to:12136342247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:08 ip-10-0-0-10 mdr: 2016-02-01 11:02:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18033684624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-11 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-11 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165298807] [to:+16139122415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733039] [to:12053659491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422090] [to:19183991084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:09 ip-10-0-64-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19548379923] [to:17865870820] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:09 ip-10-0-0-10 mdr: 2016-02-01 11:02:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:10 ip-10-0-0-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-10 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-10 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961023] [to:16105298570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535623] [to:16099549315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361035] [to:18596993321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-10 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:10 ip-10-0-0-10 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148949166] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-0-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:10 ip-10-0-64-11 mdr: 2016-02-01 11:02:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877734290] [to:+15874090792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19026912260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148200] [to:+19082809027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075381175] [to:+15204337276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018588] [to:19027493918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342295] [to:16786409777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-10 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:11 ip-10-0-0-21 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447796925333] [to:+447418337083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:11 ip-10-0-64-11 mdr: 2016-02-01 11:02:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157099146] [to:+13473439794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879877226] [to:+15873175085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524401] [to:16169028250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-11 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138842736] [to:+16139092504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-11 mdr: 2016-02-01 11:02:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:12 ip-10-0-64-11 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062647] [to:19022335074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887491] [to:16052094801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:12 ip-10-0-0-10 mdr: 2016-02-01 11:02:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077097249] [to:+12362373368] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12259242559] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602959] [to:18566858713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405036424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:16143967060] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:13 ip-10-0-64-10 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343039128] [to:+12342312118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-10 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0201] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403937194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-10 mdr: 2016-02-01 11:02:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436227369] [to:+12026609123] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:14194969629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405049570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:13 ip-10-0-0-11 mdr: 2016-02-01 11:02:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17404858475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677604] [to:12034109337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866614611] [to:+18653473006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804432] [to:12704278506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032D0201] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041738] [to:15064674277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252264906] [to:+14694148456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186389486] [to:+19492453888] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479714194] [to:15732866969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245709977] [to:+14122302008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164955332] [to:+16466289454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147049] [to:16155610682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335314] [to:15202783039] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951824] [to:18482604663] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528926] [to:14402314991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-10 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:14 ip-10-0-64-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:14 ip-10-0-0-11 mdr: 2016-02-01 11:02:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175871] [to:13054578913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109922961] [to:+12105718114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405074765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17405074983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:13304735512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13373562975] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:17403993047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796432] [to:16145617817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255479] [to:19414474501] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252264906] [to:+14694148456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025389] [to:13046422202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:13344218808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477638693] [to:+13478022410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14424000462] [to:+16465319148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168795408] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961023] [to:12152076645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18125281288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084443] [to:+13069928762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-10 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136680247] [to:+13478967643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:15 ip-10-0-0-11 mdr: 2016-02-01 11:02:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157568446] [to:+12138062918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:15 ip-10-0-64-11 mdr: 2016-02-01 11:02:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388752620] [to:+15817005447] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-21 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201674] [to:+447754816637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736100222] [to:+19086597034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049572286] [to:+15103222971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596458992] [to:+17077502912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:18134059382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873389595] [to:+15874097949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15852014807] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886979] [to:+15109486319] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:16 ip-10-0-64-10 mdr: 2016-02-01 11:02:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:16 ip-10-0-0-11 mdr: 2016-02-01 11:02:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049000550] [to:17789189073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812690] [to:15206125122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003770201] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303572499] [to:+14402528629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-20 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-11 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166829810] [to:+12162394370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:17 ip-10-0-64-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003770202] -Feb 1 11:02:17 ip-10-0-0-10 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:17 ip-10-0-0-11 mdr: 2016-02-01 11:02:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252680022] [to:+14582023869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605400052] [to:+13476762356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032D0202] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645178606] [to:+17123826378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778352] [to:12312507479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-10 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778352] [to:12312507479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:18 ip-10-0-64-10 mdr: 2016-02-01 11:02:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:18 ip-10-0-0-11 mdr: 2016-02-01 11:02:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032E0202] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255479] [to:19414474501] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-20 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465955897] [to:+16465472212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094821] [to:13472583920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094821] [to:13472583920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720930] [to:12296995043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16694002550] [to:13194290073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-11 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148638899] [to:+12148148917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084443] [to:+13069928762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-11 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977968] [to:13472459052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:19 ip-10-0-64-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:19 ip-10-0-0-10 mdr: 2016-02-01 11:02:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035731372] [to:+19172660096] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862689] [to:+19148208532] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19034314102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:18028585558] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183624] [to:19562520761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583446] [to:+15614052910] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059199574] [to:+17053001713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:16023480104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496231] [to:13478420787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:20 ip-10-0-64-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:20 ip-10-0-0-11 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-10 mdr: 2016-02-01 11:02:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15818873117] [to:+14388095229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18085905628] [to:+17027478360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506304546] [to:+15102540241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053941708] [to:18058637223] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-21 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338903] [to:+447834465450] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-10 mdr: 2016-02-01 11:02:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:21 ip-10-0-0-11 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:21 ip-10-0-64-11 mdr: 2016-02-01 11:02:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887797390] [to:+447451223512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189529616] [to:+15817041298] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356196276] [to:+13145488977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304403409] [to:+13308503616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:19124232550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447736167892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033566] [to:18504911454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308747] [to:17728008416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201674] [to:+447754816637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597956575] [to:+14156491023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483723] [to:15753127257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-21 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447736167892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388752620] [to:+15817005447] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-10 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:22 ip-10-0-0-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:22 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065568323] [to:+12069469067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726390745] [to:+19729470857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206867] [to:+17074097174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036519372] [to:+15873151984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14694224806] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14694224806] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-11 mdr: 2016-02-01 11:02:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138250] [to:213560434126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:23 ip-10-0-64-10 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:23 ip-10-0-0-11 mdr: 2016-02-01 11:02:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025363543] [to:+13867425958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149699379] [to:+19173963320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210439] [to:17325109289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252098762] [to:+13609727400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801409] [to:12522872360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885220] [to:12405156314] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474940982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:19165336541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14694224806] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-20 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520625379] [to:+447717477719] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-10 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-20 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:24 ip-10-0-0-11 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:13302077387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:24 ip-10-0-64-10 mdr: 2016-02-01 11:02:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772934] [to:+19149089954] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578423] [to:19049453385] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023777699] [to:+13024001317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772934] [to:+19149089954] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-11 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:25 ip-10-0-64-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:25 ip-10-0-0-10 mdr: 2016-02-01 11:02:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175148281] [to:+19292689673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742816635] [to:+12139296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447793063354] [to:+13476304546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003AA0201] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15676444540] [to:+14403594248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253701] [to:14062406843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:26 ip-10-0-64-11 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062647] [to:19022335074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:26 ip-10-0-0-10 mdr: 2016-02-01 11:02:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903713] [to:18455058888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333691] [to:14045635711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447793063354] [to:+13476304546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AA0202] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421913] [to:18323428517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496231] [to:13478420787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668818] [to:17867978887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-10 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-10 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:27 ip-10-0-64-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:27 ip-10-0-0-11 mdr: 2016-02-01 11:02:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174965420] [to:+16413165184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183624] [to:19562520761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921335] [to:14384982435] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:19089021138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987480] [to:16032196667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:12812173418] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921335] [to:14384982435] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006626] [to:12899680164] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563004245] [to:+18563125405] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632026361] [to:+16125022295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899390] [to:17042952985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-11 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236291702] [to:+15624162183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-11 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:28 ip-10-0-0-10 mdr: 2016-02-01 11:02:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:28 ip-10-0-64-10 mdr: 2016-02-01 11:02:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062849122] [to:+14703152718] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233420235] [to:+14155493749] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838381] [to:13235583113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12504230244] [to:+16477991277] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536422461] [to:12537669290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-10 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:15633216780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-11 mdr: 2016-02-01 11:02:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:29 ip-10-0-64-10 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:29 ip-10-0-0-11 mdr: 2016-02-01 11:02:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204475937] [to:+19703156436] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049391085] [to:+13476671558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074934983] [to:+17633015839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149163410] [to:+14387931246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17184518061] [to:+18133206148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12896544299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-11 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:30 ip-10-0-0-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196391930] [to:+17194265017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-10 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041738] [to:15064674277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:30 ip-10-0-64-11 mdr: 2016-02-01 11:02:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-10 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12285962407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:17866633112] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:17866633112] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:17866633112] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:31 ip-10-0-64-10 mdr: 2016-02-01 11:02:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:31 ip-10-0-0-11 mdr: 2016-02-01 11:02:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:32 ip-10-0-0-11 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:32 ip-10-0-0-10 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:32 ip-10-0-0-10 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143318250] [to:+17162790512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882294] [to:15304006125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-11 mdr: 2016-02-01 11:02:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:32 ip-10-0-64-10 mdr: 2016-02-01 11:02:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476482654] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238942] [to:19187215769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645254496] [to:+13479376229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091817] [to:16134477368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-11 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12624704197] [to:+14132736961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:33 ip-10-0-64-10 mdr: 2016-02-01 11:02:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:33 ip-10-0-0-11 mdr: 2016-02-01 11:02:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-21 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447702313849] [to:+447451231785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049391085] [to:+13476671558] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142149] [to:17732314829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097794] [to:19252376075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987480] [to:16032196667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18016335145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032707871] [to:+13479788207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497350679] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040448] [to:14502303473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016901015] [to:+19015042089] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12158662938] [to:12674145867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488332] [to:15304430204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310588] [to:13364044171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-10 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-10 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:34 ip-10-0-64-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:18028585558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:34 ip-10-0-0-11 mdr: 2016-02-01 11:02:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-10 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13237629747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-10 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016901015] [to:+19015042089] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-20 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862153] [to:13479093157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-10 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553169] [to:18639908090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477020275] [to:+16463493084] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-10 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:35 ip-10-0-64-11 mdr: 2016-02-01 11:02:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:35 ip-10-0-0-11 mdr: 2016-02-01 11:02:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017428801] [to:19176207727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-21 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451219672] [to:+447708290007] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420504] [to:+12262409574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879982866] [to:+16475037260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-11 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:36 ip-10-0-64-10 mdr: 2016-02-01 11:02:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193451] [to:14125135977] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:36 ip-10-0-0-10 mdr: 2016-02-01 11:02:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033103] [to:17248825599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096394536] [to:+16465648975] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-11 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-11 mdr: 2016-02-01 11:02:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874079632] [to:+16474941331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916071] [to:16079689983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:37 ip-10-0-0-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996437] [to:14807351320] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:37 ip-10-0-64-10 mdr: 2016-02-01 11:02:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172033211] [to:+13477749835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:13433333265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995814] [to:13472903163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762459285] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-10 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:38 ip-10-0-64-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142549606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:38 ip-10-0-0-11 mdr: 2016-02-01 11:02:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024973940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796131] [to:19374511725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785510520] [to:+19785335083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17085410150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-0-11 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556651] [to:16167178408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:39 ip-10-0-0-10 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503067616] [to:+17784025167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:39 ip-10-0-0-11 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132848791] [to:+18133086866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:39 ip-10-0-64-11 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768700153] [to:+13476677111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867978887] [to:+17736668818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295359] [to:15132003129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040417] [to:15146532399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803058] [to:13524404212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415301908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875088270] [to:+13476504429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398617] [to:12055777594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553437] [to:18437086718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223303] [to:18592001328] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-11 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:40 ip-10-0-0-10 mdr: 2016-02-01 11:02:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:40 ip-10-0-64-10 mdr: 2016-02-01 11:02:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149294] [to:13305416855] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504053230] [to:+14387924469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383455600] [to:+15146008089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014081073] [to:+12136946214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146207] [to:12542148625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046715170] [to:+18583605465] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-20 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465955897] [to:+16465472212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211781] [to:16125982359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043602573] [to:+17279353217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549440] [to:12507318176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-10 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:41 ip-10-0-64-11 mdr: 2016-02-01 11:02:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:41 ip-10-0-0-11 mdr: 2016-02-01 11:02:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023777699] [to:+13024001317] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969338] [to:17043094768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784698] [to:18283471157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324919] [to:18087417753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-11 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593075677] [to:+14153407827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233710239] [to:+16125021182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574496] [to:18174875564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:42 ip-10-0-64-10 mdr: 2016-02-01 11:02:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960578] [to:14044537504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-11 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:42 ip-10-0-0-10 mdr: 2016-02-01 11:02:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-11 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334443] [to:17575356129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-11 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039577662] [to:+15034868567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-11 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124489643] [to:+17072427827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:43 ip-10-0-64-10 mdr: 2016-02-01 11:02:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082085243] [to:+16058887760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:43 ip-10-0-0-10 mdr: 2016-02-01 11:02:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:12254394727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614808155] [to:+16612287472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18189614463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225987] [to:13047744681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-11 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:44 ip-10-0-0-10 mdr: 2016-02-01 11:02:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:44 ip-10-0-64-10 mdr: 2016-02-01 11:02:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134912028] [to:+15134567683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092229292] [to:+15874087595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017561753] [to:+17605896745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248415659] [to:+13479801185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604639534] [to:+13609494678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322779207] [to:+19086597519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838138] [to:12709220398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:45 ip-10-0-64-11 mdr: 2016-02-01 11:02:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:45 ip-10-0-0-10 mdr: 2016-02-01 11:02:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134058195] [to:+14158530364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:19173370838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-11 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638551721] [to:15185530957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175148281] [to:+19292689673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040125] [to:15874053138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:18325312919] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-11 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508486070] [to:+14502327788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-11 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262240865] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-0-11 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836266] [to:16232413848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:46 ip-10-0-64-10 mdr: 2016-02-01 11:02:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258479] [to:12092513137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258479] [to:12092513137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391490] [to:14437393446] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315330] [to:19378299028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092694110] [to:+15107756141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037529] [to:16307880583] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:47 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286768543] [to:+16783941572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-11 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413982] [to:18083642485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391490] [to:14437393446] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:47 ip-10-0-64-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13014423424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315330] [to:19378299028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046267895] [to:+19802097887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13174965420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:15148949166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477568669] [to:18473430471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635893196] [to:+16096144837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914413] [to:12892786061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462018749] [to:+19148485395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626099044] [to:+19015042554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-10 mdr: 2016-02-01 11:02:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:48 ip-10-0-64-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:48 ip-10-0-0-11 mdr: 2016-02-01 11:02:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-10 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-10 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479856453] [to:+16477997154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092190] [to:18033699534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-10 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038418700] [to:+17077502967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-10 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074978890] [to:+13219265443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:49 ip-10-0-64-11 mdr: 2016-02-01 11:02:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:49 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203273679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203273679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238942] [to:19187215769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596936021] [to:+13479373310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040420] [to:+18133087963] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437400936] [to:+14434530428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927134] [to:17029803056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-21 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502912] [to:15596458992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472799185] [to:+16572076488] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:50 ip-10-0-64-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192793415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:50 ip-10-0-0-11 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062647] [to:19022335074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035223253] [to:+16783941312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074978890] [to:+13219265443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689673] [to:17175148281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-0-11 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608492253] [to:+17277679181] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-11 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:51 ip-10-0-64-10 mdr: 2016-02-01 11:02:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-10 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15419182046] [to:15419719535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063816332] [to:+15068029945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638726] [to:14256584234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172604301] [to:+18572409641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:14403815097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:52 ip-10-0-64-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:52 ip-10-0-0-11 mdr: 2016-02-01 11:02:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-21 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520606018] [to:+447961321018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024973940] [to:+17053028393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001429] [to:19802982913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13617012865] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:18623730813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023091456] [to:+19027041247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750149] [to:17022650432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12048696571] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183991084] [to:+12819422090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:17622129412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:53 ip-10-0-0-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-10 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:53 ip-10-0-64-11 mdr: 2016-02-01 11:02:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052094801] [to:+16058887491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024973940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610519] [to:18047279355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074998890] [to:+19282976080] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16189218286] [to:+13867428541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13372901763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:54 ip-10-0-0-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737145924] [to:+15733623306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401199] [to:18042444631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-10 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:54 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003710201] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567610] [to:18136506480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014569] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092022293] [to:+18569429154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080471A60303] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123041537] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786512403] [to:+15873323594] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073189901] [to:+14108745936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068318498] [to:+15107756786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094221899] [to:+12362370745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475496363] [to:+15164724390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016669354] [to:+18018101476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388752620] [to:+15817005447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647048424] [to:+19148818126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302077387] [to:+13477690201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373364082] [to:+13219993171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092930408] [to:+17097005442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726390745] [to:+19729470857] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852014807] [to:+15852823243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443856] [to:+13024002988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076943509] [to:+19599999401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752914623] [to:+15754497115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137776090] [to:+14132736765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497350679] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677518] [to:18122165469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136183787] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043767524] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14757770158] [to:+19142815051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-0-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000755] [to:12893850718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-10 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733039] [to:12053659491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:55 ip-10-0-64-11 mdr: 2016-02-01 11:02:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319522] [to:16122135786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237424754] [to:+13108792193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132130894] [to:+18327772857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:12762459285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784005829] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-11 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-20 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447815512534] [to:+447451210408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134535339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-64-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169018] [to:18034604531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-11 mdr: 2016-02-01 11:02:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:56 ip-10-0-0-10 mdr: 2016-02-01 11:02:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676237] [to:17577297298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749835] [to:17172033211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19209796006] [to:+12628884640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473510871] [to:+13479191462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899960503] [to:+12264557648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-64-10 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:57 ip-10-0-0-11 mdr: 2016-02-01 11:02:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607197167] [to:+17184812199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178992133] [to:+19142816988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505171442] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-10 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-21 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201877] [to:+447783930972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:58 ip-10-0-0-21 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239815] [to:+447508020511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17085399506] [to:+18724003564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488332] [to:15304430204] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:02:58 ip-10-0-64-11 mdr: 2016-02-01 11:02:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019956298] [to:12012383267] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239570813] [to:+12135297521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-11 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473349] [to:18652023296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-11 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:19373057034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-10 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:02:59 ip-10-0-0-20 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532328212] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-11 mdr: 2016-02-01 11:02:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612287472] [to:16614808155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:02:59 ip-10-0-64-10 mdr: 2016-02-01 11:02:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063728205] [to:+14704446753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344766227] [to:+15862488189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473349] [to:18652023296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016214998] [to:584123584115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-10 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15862775604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19128502855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-10 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432822] [to:16412028738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:00 ip-10-0-0-11 mdr: 2016-02-01 11:03:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-11 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202783039] [to:+15204335314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:00 ip-10-0-64-10 mdr: 2016-02-01 11:03:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12164077291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-10 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004388] [to:13062903749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-11 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627124203] [to:+17474006569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-21 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797807] [to:18182313519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-10 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-11 mdr: 2016-02-01 11:03:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:13344218808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-21 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-0-10 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021557] [to:17056655362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:01 ip-10-0-64-11 mdr: 2016-02-01 11:03:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170382] [to:18656609218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003710202] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058545] [to:12149942194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024155115] [to:+12136349038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609856432] [to:+19196504587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406675674] [to:+12162393053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836626] [to:16024913004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-10 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908672] [to:14232840655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176827583] [to:+14696292862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-10 mdr: 2016-02-01 11:03:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:02 ip-10-0-64-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:02 ip-10-0-0-11 mdr: 2016-02-01 11:03:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835693] [to:19075659411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095419500] [to:+16095434148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221172] [to:13137403603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488969] [to:15412974725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176827583] [to:+14696292862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545043366] [to:+19404638755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137745] [to:17046122127] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416379705] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869206] [to:18436090492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:03 ip-10-0-64-10 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:03 ip-10-0-0-11 mdr: 2016-02-01 11:03:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198053477] [to:+13473439765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310588] [to:13364044171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024973940] [to:+17053028393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297550] [to:17609051394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:04 ip-10-0-64-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-21 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344014113] [to:+14342340199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-11 mdr: 2016-02-01 11:03:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632026361] [to:+16125022295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:04 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087132397] [to:+16088568828] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156577262] [to:+12342315091] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525203336] [to:+14242865871] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105446503] [to:+12134788873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642304531] [to:+14703334933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627124203] [to:+17474006569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CC0201] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16478654818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16478654818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-11 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:05 ip-10-0-64-10 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022181514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:05 ip-10-0-0-11 mdr: 2016-02-01 11:03:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034747763] [to:+19033076562] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-11 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188753949] [to:18184043427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-20 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239815] [to:+447508020511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047744681] [to:+15103225987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223303] [to:18592001328] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-10 mdr: 2016-02-01 11:03:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-10 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:06 ip-10-0-0-20 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447943814260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:06 ip-10-0-64-11 mdr: 2016-02-01 11:03:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432261489] [to:+12138065759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14049027780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907745] [to:12253337739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789853182] [to:+19782384293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438677099] [to:+14437201268] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-10 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009418] [to:17053581578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-11 mdr: 2016-02-01 11:03:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047896893] [to:+19177329823] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:07 ip-10-0-0-11 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862531] [to:+19142795374] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:07 ip-10-0-64-10 mdr: 2016-02-01 11:03:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146532399] [to:+14388040417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542135644] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024557641] [to:+18639491812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148949166] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034737] [to:17248094416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-10 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465955897] [to:+16465472212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:08 ip-10-0-64-11 mdr: 2016-02-01 11:03:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053692098] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:08 ip-10-0-0-10 mdr: 2016-02-01 11:03:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997631] [to:16204742005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413982] [to:18083642485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872246094] [to:+15873322304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-20 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011923071000000] [to:+18077889753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016887766] [to:+17324447901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-11 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:09 ip-10-0-64-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:15679983521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:09 ip-10-0-0-10 mdr: 2016-02-01 11:03:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199098616] [to:+19199163763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+12606337174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347214] [to:16162503856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-10 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:10 ip-10-0-64-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:10 ip-10-0-0-11 mdr: 2016-02-01 11:03:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19497350679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637986] [to:17208391758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078500017] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049068698] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784238050] [to:+19789697267] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003210202] -Feb 1 11:03:11 ip-10-0-0-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438342751] [to:+14438550480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:11 ip-10-0-64-10 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12253809672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203738022] [to:16614745420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603299199] [to:+17344366987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477420699] [to:14189286679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-11 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097893] [to:15878967775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15178623617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:12 ip-10-0-0-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-11 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:12 ip-10-0-64-10 mdr: 2016-02-01 11:03:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15852014807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-21 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332842] [to:+447946498815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148870342] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253701] [to:14062406843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046747206] [to:+19047584577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374511725] [to:+17408796131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911307] [to:16479956239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089377119] [to:+18084681132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15099454577] [to:+15097397079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-10 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-11 mdr: 2016-02-01 11:03:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:13 ip-10-0-0-10 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:13 ip-10-0-64-11 mdr: 2016-02-01 11:03:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152262404] [to:+19142793870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031C0201] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14436242954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14436242954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995585] [to:18644019980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477420699] [to:14189286679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14436242954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:15155050546] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165982435] [to:+15817005108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-11 mdr: 2016-02-01 11:03:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12065568323] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-21 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447736167892] [to:+447451210646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:14 ip-10-0-0-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003EB0201] -Feb 1 11:03:14 ip-10-0-64-11 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:14 ip-10-0-64-10 mdr: 2016-02-01 11:03:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038444009] [to:+16475566752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778352] [to:12314088183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17022734048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-10 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19542430749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699957] [to:14102314898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-11 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:16614337235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745398] [to:14234916623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:15 ip-10-0-0-10 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:15 ip-10-0-64-11 mdr: 2016-02-01 11:03:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160724] [to:15613074897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059419108] [to:+13072138974] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159716331] [to:+17125255732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325109289] [to:+17348210439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243255451] [to:+13476908375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172033211] [to:+13477749835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:15309050737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677111] [to:12768700153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-10 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-10 mdr: 2016-02-01 11:03:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:16 ip-10-0-0-11 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16476482654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:16 ip-10-0-64-11 mdr: 2016-02-01 11:03:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042444631] [to:+18185401199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060530] [to:12148545790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695990] [to:+12048086878] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003EB0202] -Feb 1 11:03:17 ip-10-0-0-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144792334] [to:+19529778850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757032084] [to:+19172610625] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126436972] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105297] [to:16098324737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513095201] [to:12196041310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:17 ip-10-0-0-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027075] [to:19143386106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-10 mdr: 2016-02-01 11:03:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:17 ip-10-0-64-11 mdr: 2016-02-01 11:03:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15058181746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-21 mdr: 2016-02-01 11:03:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805633295] [to:+447451207602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-10 mdr: 2016-02-01 11:03:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126436972] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-10 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145414] [to:17604131920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-10 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513095201] [to:12196041310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377116] [to:13379458050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:18 ip-10-0-0-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:18 ip-10-0-64-11 mdr: 2016-02-01 11:03:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556651] [to:16167178408] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16193723930] [to:+19292146677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154590297] [to:+12679232812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12896544299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472459052] [to:+13479977968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085562715] [to:12012057683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:19024719124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046439667] [to:+14049001136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-21 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447405760391] [to:+447418320166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-11 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:19 ip-10-0-64-10 mdr: 2016-02-01 11:03:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-10 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:19 ip-10-0-0-21 mdr: 2016-02-01 11:03:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632026361] [to:+16125022295] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-10 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-10 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15878967775] [to:+15874097893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:20 ip-10-0-0-10 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:20 ip-10-0-64-11 mdr: 2016-02-01 11:03:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996487] [to:13076223181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-21 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951414] [to:12502559211] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-20 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235560] [to:+447535731524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-20 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235197] [to:+447754994523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732405] [to:13167061424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473510871] [to:+13479191462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976080] [to:17074998890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009418] [to:17053581578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-11 mdr: 2016-02-01 11:03:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146422] [to:18622769237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:21 ip-10-0-0-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:21 ip-10-0-64-10 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:14165804211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199098616] [to:+19199163763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149294] [to:13305416855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135464525] [to:+19142670324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-20 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548722] [to:16609734439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854447751] [to:+16193593551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049000550] [to:17789189073] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963675] [to:12109527901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:22 ip-10-0-64-10 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:15083673216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:22 ip-10-0-0-10 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063101] [to:19129773863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248825599] [to:+17248033103] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548722] [to:16609734439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725977208] [to:17706050548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455980444] [to:+19014449173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-11 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-11 mdr: 2016-02-01 11:03:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:23 ip-10-0-0-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:23 ip-10-0-64-10 mdr: 2016-02-01 11:03:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322783383] [to:+16096144458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152262404] [to:+19142793870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031C0202] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-11 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373310] [to:18596936021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089745] [to:+14387941260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-11 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:24 ip-10-0-0-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:24 ip-10-0-64-10 mdr: 2016-02-01 11:03:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:16107399605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698208206] [to:+12692207186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818895568] [to:+15129524048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:17784005829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364271] [to:13364703257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744844] [to:13025052122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:19174590451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-10 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-10 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:25 ip-10-0-64-11 mdr: 2016-02-01 11:03:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175888] [to:19192227229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:25 ip-10-0-0-11 mdr: 2016-02-01 11:03:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15019529950] [to:+12132950044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-11 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790512] [to:18143318250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155946831] [to:+12678444097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-10 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059469036] [to:+12132896519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-10 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-10 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159716331] [to:+17125255732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:26 ip-10-0-64-11 mdr: 2016-02-01 11:03:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366473] [to:12694149384] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-11 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505860066] [to:+16025527271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:26 ip-10-0-0-20 mdr: 2016-02-01 11:03:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805633295] [to:+447451207602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505244540] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855035329] [to:+15852824993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572076488] [to:13472799185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231888] [to:12045575508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073430202] [to:+14243360234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068756653] [to:+15068038780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637096783] [to:+18637347022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-21 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142589] [to:18599828018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:27 ip-10-0-64-11 mdr: 2016-02-01 11:03:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:27 ip-10-0-0-10 mdr: 2016-02-01 11:03:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434035984] [to:12402893027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018220] [to:13864330312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477935938] [to:+16475039712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:13302077387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210439] [to:17325109289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307177302] [to:+19784896401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109047578] [to:+14155494874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073783969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-21 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247514] [to:+447447071528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269751208] [to:+12267982375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:14349648928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950423] [to:13045532810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785985] [to:15018588415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071647] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-0-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15169678493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-10 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785985] [to:15018588415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:28 ip-10-0-64-11 mdr: 2016-02-01 11:03:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009541] [to:12535170425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312034194] [to:+14155212597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439832454] [to:+14108884760] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748088496] [to:+15744850497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538764327] [to:+12064008711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364988] [to:+16125022027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] peiseubug injeungkodeu-ibnida] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014423424] [to:+12027179714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:29 ip-10-0-64-10 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-10 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:29 ip-10-0-0-11 mdr: 2016-02-01 11:03:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16034774307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014259] [to:+16139099320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896683] [to:12704731404] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202758505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202758505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195270020] [to:+18194140747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497000836] [to:17059783766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046734230] [to:+12405732311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365991] [to:15854107957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-11 mdr: 2016-02-01 11:03:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15122886373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12123005905] [to:+13392304790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:30 ip-10-0-0-10 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:30 ip-10-0-64-11 mdr: 2016-02-01 11:03:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-20 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224314] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-11 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:17248886890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135076732] [to:+12139213154] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869196] [to:17323061599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-11 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-11 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12267792777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-11 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-10 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-11 mdr: 2016-02-01 11:03:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:31 ip-10-0-64-11 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16192004141] [to:+17027183470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:31 ip-10-0-0-10 mdr: 2016-02-01 11:03:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786518544] [to:+16784123886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167178408] [to:+18638556651] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+12604076854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640613] [to:13232378047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163171627] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18084681132] [to:18089377119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:32 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:32 ip-10-0-64-11 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16138887252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963675] [to:12109527901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537669290] [to:+12536422461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560716] [to:16127439881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622121652] [to:+14157879336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184309612] [to:+18572192181] [flags:-1:0:-1:0:-1] [msg:29:Just waking up.[CB]9184309612] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083438968] [to:+13479193909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17165487574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361513] [to:17743647932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-11 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262200567] [to:+12262717181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463442379] [to:+12138223230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:33 ip-10-0-64-10 mdr: 2016-02-01 11:03:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472859979] [to:+17786531090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:33 ip-10-0-0-11 mdr: 2016-02-01 11:03:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076354] [to:19144887787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083438968] [to:+13479193909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155946831] [to:+12678444097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16286002304] [to:+17145927203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213131374] [to:+19148740516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:34 ip-10-0-0-11 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:34 ip-10-0-64-11 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895129] [to:16825609286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:13344218808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18065179868] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051061] [to:14692032122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162503856] [to:+12488347214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463442379] [to:+12138223230] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185713597] [to:+14387941262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535340] [to:17062068160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-21 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461552] [to:12816162988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:35 ip-10-0-64-10 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:35 ip-10-0-0-11 mdr: 2016-02-01 11:03:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19042587588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579751676] [to:+13479130059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195270020] [to:+18194140747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930523] [to:15875016003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024596] [to:17786798072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463442379] [to:+12138223230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140137] [to:14502781333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-10 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250777] [to:19285803715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:36 ip-10-0-0-20 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783930972] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-10 mdr: 2016-02-01 11:03:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140137] [to:14502781333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:36 ip-10-0-64-11 mdr: 2016-02-01 11:03:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560716] [to:16127439881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428541] [to:16189218286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019101] [to:17097490452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508572363] [to:+17784030979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702948301] [to:+15703977883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352263209] [to:+13475086088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:37 ip-10-0-0-10 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:37 ip-10-0-64-11 mdr: 2016-02-01 11:03:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201587] [to:17174240009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064780580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914413] [to:12892786061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-10 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138687161] [to:+16136047844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463054] [to:18328475042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-10 mdr: 2016-02-01 11:03:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:38 ip-10-0-0-11 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:38 ip-10-0-64-11 mdr: 2016-02-01 11:03:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109467326] [to:+14438550991] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15173033497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-11 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199098616] [to:+19199163763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109273566] [to:+12167990685] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587417] [to:19045343117] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470172] [to:18316656221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-10 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:39 ip-10-0-64-10 mdr: 2016-02-01 11:03:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:39 ip-10-0-0-11 mdr: 2016-02-01 11:03:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241425] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017202059] [to:+12139297761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202021097] [to:+19203956423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545045539] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398617] [to:12055777594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18567233333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136337873] [to:+16136047763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463493591] [to:13208155933] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-0-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182468] [to:17024234159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-11 mdr: 2016-02-01 11:03:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:40 ip-10-0-64-10 mdr: 2016-02-01 11:03:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-11 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335314] [to:15202783039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-20 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053692098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19129773863] [to:+12138063101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199559248] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:41 ip-10-0-64-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014723] [to:+18455797560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105297] [to:16098324737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-10 mdr: 2016-02-01 11:03:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-10 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:41 ip-10-0-0-11 mdr: 2016-02-01 11:03:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-10 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144458] [to:17322783383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15164506767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427504] [to:10636425552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302077387] [to:+13477690201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784027059] [to:16042175401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082841] [to:13309036234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-10 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-64-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-11 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702948301] [to:+15703977883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:42 ip-10-0-0-10 mdr: 2016-02-01 11:03:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123886] [to:16786518544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310588] [to:13364044171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+14153260444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743273240] [to:+15713273938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201016] [to:13529996275] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075163] [to:15146183636] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:12175086134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:43 ip-10-0-64-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023323394] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-11 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:43 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19075215353] [to:+15092622894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:18182617837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034130852] [to:16038583572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-10 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041758] [to:16138647230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469067] [to:12065568323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-21 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606027398] [to:13604300048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:44 ip-10-0-0-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-10 mdr: 2016-02-01 11:03:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175769268] [to:+16466288215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:44 ip-10-0-64-11 mdr: 2016-02-01 11:03:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293967] [to:18507309661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293967] [to:18507309661] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613364145] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253337739] [to:+14158907745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784065] [to:18032872293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-10 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021557] [to:17056655362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176234307] [to:+15167349799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:45 ip-10-0-64-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593517] [to:12508855334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:45 ip-10-0-0-11 mdr: 2016-02-01 11:03:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436090492] [to:+14849869206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725977208] [to:17706050548] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:17819537123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:17802994107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663364] [to:12313503992] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470172] [to:18316656221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199022477] [to:+12819421616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12696356093] [to:12699938528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808769] [to:12769528500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609898540] [to:+12135874645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:46 ip-10-0-0-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-11 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:46 ip-10-0-64-10 mdr: 2016-02-01 11:03:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12896544299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815786] [to:14782463830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-20 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-10 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061839] [to:19102746612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-10 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-10 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027493918] [to:+19028018588] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:47 ip-10-0-64-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164077291] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:47 ip-10-0-0-11 mdr: 2016-02-01 11:03:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035591019] [to:+19298410384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-11 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763251340] [to:+12136324663] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505244540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-11 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074998890] [to:+19282976080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-11 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-11 mdr: 2016-02-01 11:03:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:15879204253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025941] [to:19097136685] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:48 ip-10-0-0-11 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303932] [to:12542135644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:48 ip-10-0-64-10 mdr: 2016-02-01 11:03:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154249614] [to:+19709996142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786372067] [to:+16784123602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265017] [to:17196391930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193437923] [to:15086856001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623674331] [to:+16692223660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623674331] [to:+16692223660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-10 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736322647] [to:+19734466359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-10 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137489717] [to:+15413635820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:49 ip-10-0-64-11 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:49 ip-10-0-0-20 mdr: 2016-02-01 11:03:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951299236] [to:+447451211156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015969616] [to:+19018428197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614808155] [to:+16612287472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252289830] [to:+12134785730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091817] [to:16134477368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604417264] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-0-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470172] [to:18316656221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-11 mdr: 2016-02-01 11:03:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:50 ip-10-0-64-10 mdr: 2016-02-01 11:03:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:17819537123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564057439] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606342948] [to:+16467019957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15168598289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094380210] [to:+12138064556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365289] [to:17342058321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149157671] [to:+14388085955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-11 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:51 ip-10-0-0-10 mdr: 2016-02-01 11:03:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168269534] [to:+13479805662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:51 ip-10-0-64-11 mdr: 2016-02-01 11:03:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12484601120] [to:15865801307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303572499] [to:+14402528629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19797391037] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234916623] [to:+17604745398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053581578] [to:+12497009418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:19012100539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146133468] [to:+19729470750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528825] [to:13134821810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19109871259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:15083673216] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:17819537123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427786] [to:17073303759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:52 ip-10-0-64-10 mdr: 2016-02-01 11:03:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-11 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:52 ip-10-0-0-10 mdr: 2016-02-01 11:03:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411275] [to:14042548689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736961] [to:12624704197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786518544] [to:+16784123886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436714331] [to:+18653209476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-10 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856835990] [to:+14073373720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18329441253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-0-10 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074258094] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:53 ip-10-0-64-11 mdr: 2016-02-01 11:03:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364220] [to:+13218329512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-11 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:54 ip-10-0-0-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-11 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:54 ip-10-0-64-10 mdr: 2016-02-01 11:03:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627545799] [to:+18053942075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172403440] [to:+15172585347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328418130] [to:+14022560635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054578913] [to:+13054175871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CC0202] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035223253] [to:+14044811874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921034] [to:+17604746450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094221899] [to:+12362370745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784238050] [to:+19789697267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003210201] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196073418] [to:+19199162480] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066150420] [to:+17277053094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594309294] [to:+15592239429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103618197] [to:+15103137377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174062949] [to:+12134784739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307202009] [to:+12342312846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12539619852] [to:+13052037755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194293390] [to:+17194265351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609051394] [to:+12139297550] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195817250] [to:+12148148449] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197122328] [to:+18193035229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:15148258269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649389] [to:15673153015] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:12245186012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-11 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-64-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-10 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-11 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:55 ip-10-0-0-20 mdr: 2016-02-01 11:03:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16694009950] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095575257] [to:+19093615805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178623617] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429154] [to:16092022293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202537787] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086961] [to:19316917175] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041758] [to:16138647230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402647966] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149699379] [to:+19173963320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0202] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149699379] [to:+19173963320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031B0201] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556651] [to:16167178408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040378] [to:+17277568507] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:56 ip-10-0-64-10 mdr: 2016-02-01 11:03:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:16015668482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:56 ip-10-0-0-11 mdr: 2016-02-01 11:03:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158778847] [to:+13479196773] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-20 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Parentmail] [to:+447520607439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-10 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14102791502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14102791502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-10 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532782819] [to:+18583605368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:14102791502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:57 ip-10-0-0-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18772178512] [to:+14437201512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:57 ip-10-0-64-11 mdr: 2016-02-01 11:03:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-10 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182468] [to:17024234159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-10 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123008401] [to:14435343299] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-10 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690201] [to:13302077387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-0-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:58 ip-10-0-64-11 mdr: 2016-02-01 11:03:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039712] [to:16477935938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189286679] [to:+16477420699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732405] [to:13167061424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073418991] [to:12095529412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+15146137413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18159190910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392238495] [to:+17864804622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008399] [to:17097278456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-0-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-11 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19717709812] [to:+15034555101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:03:59 ip-10-0-64-10 mdr: 2016-02-01 11:03:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-10 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177627] [to:12675715685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-11 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152076645] [to:+12155961023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-11 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605510850] [to:+18107725944] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-10 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:00 ip-10-0-64-10 mdr: 2016-02-01 11:04:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:00 ip-10-0-0-10 mdr: 2016-02-01 11:04:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-10 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198256] [to:17206286491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:01 ip-10-0-0-11 mdr: 2016-02-01 11:04:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:01 ip-10-0-64-11 mdr: 2016-02-01 11:04:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019286259] [to:+13219269288] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059283570] [to:+15873323502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221172] [to:13137403603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-21 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868567] [to:15039577662] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334443] [to:17575356129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-11 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796943] [to:14693283011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566631] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188553102] [to:+16233838643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-10 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796943] [to:14693283011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209855132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:02 ip-10-0-64-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19034747763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209855132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:02 ip-10-0-0-11 mdr: 2016-02-01 11:04:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614188581] [to:+16614024208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-11 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14388071647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558652] [to:13473536652] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-11 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179924369] [to:+19142794776] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:03 ip-10-0-0-11 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:03 ip-10-0-64-10 mdr: 2016-02-01 11:04:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349038] [to:14024155115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048086830] [to:12046204482] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-11 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338222] [to:15595190342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:04 ip-10-0-0-10 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-11 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174039644] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:04 ip-10-0-64-10 mdr: 2016-02-01 11:04:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081016] [to:18125254582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049187235] [to:+14243363679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+12602777543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084443] [to:+13069928762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169474627] [to:+16162390168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610616] [to:12036091110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046692439] [to:+19142671441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731039] [to:17067660461] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14312312817] [to:+12048087988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-20 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447952608084] [to:+447451247614] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:05 ip-10-0-64-10 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735564] [to:17709122012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-20 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447547216310] [to:+447520670075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-11 mdr: 2016-02-01 11:04:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:05 ip-10-0-0-10 mdr: 2016-02-01 11:04:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248886890] [to:+14125354593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572899] [to:15058042151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363147] [to:14173895833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024719124] [to:+19027062347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161490213594] [to:+15712103355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725977208] [to:17706050548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-10 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:06 ip-10-0-64-11 mdr: 2016-02-01 11:04:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:06 ip-10-0-0-11 mdr: 2016-02-01 11:04:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583605877] [to:19735254152] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203738022] [to:16614745420] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073783969] [to:+17605899538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-11 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12154590297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364132] [to:+19142066091] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-11 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022370051] [to:+12133773242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:07 ip-10-0-64-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15178623617] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-20 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451222968] [to:+447930208653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:07 ip-10-0-0-10 mdr: 2016-02-01 11:04:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:08 ip-10-0-64-11 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036075265] [to:+17726175471] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:08 ip-10-0-64-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181259] [to:17753428813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804227] [to:12392001221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968775] [to:19312793969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-11 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003940201] -Feb 1 11:04:08 ip-10-0-64-10 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784699041] [to:+16784338503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:08 ip-10-0-0-10 mdr: 2016-02-01 11:04:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003940202] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039186591] [to:+13478966204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159229807] [to:+16197324724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500037C0201] -Feb 1 11:04:09 ip-10-0-0-11 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298026] [to:19107291112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262406] [to:12022464931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:09 ip-10-0-64-11 mdr: 2016-02-01 11:04:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195925834] [to:+18193070211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:09 ip-10-0-0-10 mdr: 2016-02-01 11:04:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045343117] [to:+19047587417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-20 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058211434] [to:+13214068108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-10 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17164360916] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:10 ip-10-0-0-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693158673] [to:+14694148583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:10 ip-10-0-64-11 mdr: 2016-02-01 11:04:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047896893] [to:+19177329823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801715721959] [to:+14706734411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542148625] [to:+12148146207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572899] [to:15058042151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232166672] [to:+12133752629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041385] [to:14183944181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022370051] [to:+12133773242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:11 ip-10-0-64-10 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:11 ip-10-0-0-11 mdr: 2016-02-01 11:04:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108588627] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383233079] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302070940] [to:+13309358133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024266722] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804227] [to:12392001221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625009805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796279] [to:17406180315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-11 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327539] [to:12605157309] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:12 ip-10-0-64-10 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-11 mdr: 2016-02-01 11:04:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:12 ip-10-0-0-10 mdr: 2016-02-01 11:04:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974558] [to:17077206765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072656] [to:14389354434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432092962] [to:+14502334398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016241] [to:12293009353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-11 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233366395] [to:17863127476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705768718] [to:+17204637964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156974070] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-11 mdr: 2016-02-01 11:04:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630210] [to:13473091600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12283836862] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024938] [to:19046355054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081016] [to:18125254582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:13 ip-10-0-64-10 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130059] [to:17579751676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:13 ip-10-0-0-11 mdr: 2016-02-01 11:04:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:18312782279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-64-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182468] [to:17024234159] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045532810] [to:+12132950423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-10 mdr: 2016-02-01 11:04:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016045593] [to:+13473899768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:14 ip-10-0-0-11 mdr: 2016-02-01 11:04:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099864] [to:12109045694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18567233333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-11 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364238] [to:+17073009492] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103012499] [to:+14844188821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:13234332567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-11 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:15 ip-10-0-64-10 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819019276] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-21 mdr: 2016-02-01 11:04:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451243805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:15 ip-10-0-0-10 mdr: 2016-02-01 11:04:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572409981] [to:18572659206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202021097] [to:+19203956423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022370051] [to:+12133773242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102674] [to:12677765584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718731] [to:12107095588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:16 ip-10-0-0-10 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18723015797] [to:+17199990309] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:16 ip-10-0-64-11 mdr: 2016-02-01 11:04:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-20 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-10 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252185738] [to:+14253338198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-11 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252109810] [to:+19285992636] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572409981] [to:18572659206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-10 mdr: 2016-02-01 11:04:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-10 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:17 ip-10-0-64-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:17 ip-10-0-0-11 mdr: 2016-02-01 11:04:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095419500] [to:+16095434819] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16189218286] [to:+13867428541] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252289830] [to:+12134785730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073418991] [to:12095529412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583605877] [to:19735254152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-11 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-11 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:18 ip-10-0-0-21 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:18 ip-10-0-64-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-10 mdr: 2016-02-01 11:04:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372150741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033130171] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-10 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-10 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-10 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-10 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205571041] [to:+17206234819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:19 ip-10-0-64-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242419101] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:19 ip-10-0-0-11 mdr: 2016-02-01 11:04:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-10 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576375126] [to:+13475804873] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130059] [to:17579751676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12252298448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800594] [to:18043969681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058211434] [to:+13214068108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-10 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:20 ip-10-0-64-11 mdr: 2016-02-01 11:04:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498603] [to:17708962908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-11 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:20 ip-10-0-0-10 mdr: 2016-02-01 11:04:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-11 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607195459] [to:+15169268345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-10 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720119] [to:19124093094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-10 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572899] [to:15058042151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-10 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178623617] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942510] [to:14165202828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-10 mdr: 2016-02-01 11:04:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:21 ip-10-0-0-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16472849131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:21 ip-10-0-64-11 mdr: 2016-02-01 11:04:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867021510] [to:+17743570327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413635820] [to:15137489717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-11 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065400032] [to:+15068008860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:22 ip-10-0-64-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-11 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187215769] [to:+12243238942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:22 ip-10-0-0-10 mdr: 2016-02-01 11:04:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016799597] [to:+14044811418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071647] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583605877] [to:19735254152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573376925] [to:+19175995086] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695017669] [to:+12694611494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-10 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12032434660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-64-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-10 mdr: 2016-02-01 11:04:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:23 ip-10-0-0-11 mdr: 2016-02-01 11:04:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938240] [to:19077383573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746450] [to:17854921034] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016285016] [to:+12138064089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:19097467830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694149384] [to:+12693366473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796131] [to:19374511725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+18582568539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073783969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013349066] [to:+13479196778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18187441876] [to:+19252382389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193070211] [to:18195925834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-10 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:24 ip-10-0-0-10 mdr: 2016-02-01 11:04:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802089806] [to:+17175909035] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:24 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16193723930] [to:+12064008800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012039515] [to:+14153260444] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016285016] [to:+12138064089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467690121] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041341] [to:19022193329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:25 ip-10-0-0-10 mdr: 2016-02-01 11:04:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:25 ip-10-0-64-10 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-10 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042602976] [to:+16043050899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124489643] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669450] [to:15854696598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669450] [to:15854696598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432942] [to:13046406097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133890711] [to:+18133244997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100883] [to:17808029257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993171] [to:19373364082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-11 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167061424] [to:+14706732405] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072449142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:26 ip-10-0-64-10 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19026912260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-10 mdr: 2016-02-01 11:04:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316656221] [to:+19729470172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:26 ip-10-0-0-11 mdr: 2016-02-01 11:04:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895129] [to:16825609286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631944] [to:+16572071390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019957] [to:18606342948] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072656] [to:14389354434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019957] [to:18606342948] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:19024719124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196512] [to:19016443769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:19097467830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558280] [to:16514449100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555101] [to:19717709812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-11 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15038374109] [to:15036231976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:27 ip-10-0-64-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:27 ip-10-0-0-10 mdr: 2016-02-01 11:04:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777350] [to:18125890387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:17739628723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-11 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022730] [to:17097710997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-64-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706050548] [to:+19725977208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335067] [to:16789494722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-11 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603515276] [to:+16606208954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:28 ip-10-0-0-10 mdr: 2016-02-01 11:04:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990685] [to:13109273566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-10 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642304531] [to:+14703334933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002265] [to:17323378276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075163] [to:15145892486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-10 mdr: 2016-02-01 11:04:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:29 ip-10-0-0-11 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735578] [to:17065534029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:29 ip-10-0-64-10 mdr: 2016-02-01 11:04:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743844] [to:12512091151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:30 ip-10-0-0-20 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052330557] [to:+17029015524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126639631] [to:+12138225880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:30 ip-10-0-0-11 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634435] [to:14699782274] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16309250991] [to:12242381658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-11 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951899] [to:17097697477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:30 ip-10-0-64-10 mdr: 2016-02-01 11:04:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16474566631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694149384] [to:+12693366473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143316638] [to:+16465130037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-20 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514474300] [to:+12512068642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17167778792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-11 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474947023] [to:12896843199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:31 ip-10-0-64-10 mdr: 2016-02-01 11:04:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614539] [to:+12133773846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:31 ip-10-0-0-10 mdr: 2016-02-01 11:04:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049000550] [to:17789189073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322636740] [to:+16615334720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] Radames S Alvarez jr: Thanks ill alre... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178623617] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805662] [to:19168269534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029803056] [to:+17145927134] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007262] [to:12096881550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193499658] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:32 ip-10-0-64-10 mdr: 2016-02-01 11:04:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042175401] [to:+17784027059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:32 ip-10-0-0-11 mdr: 2016-02-01 11:04:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202920094] [to:+15094360132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025574938] [to:+17025085731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995997] [to:19084726225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803223826] [to:+18484824197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14026198246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749841] [to:19105450005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143173246] [to:+18312887941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16813137897] [to:+14429001937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202451740] [to:+13072758220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666176] [to:13372901649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-11 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:33 ip-10-0-0-10 mdr: 2016-02-01 11:04:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:33 ip-10-0-64-10 mdr: 2016-02-01 11:04:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028477811] [to:+12404357813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670514] [to:19015300821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196512] [to:19016443769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352263209] [to:+13475086088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301503] [to:14127080897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524573956] [to:+15072626584] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14789572751] [to:+17073009317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603062341] [to:+12405538727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-20 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850438] [to:12602022710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-10 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-11 mdr: 2016-02-01 11:04:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:34 ip-10-0-64-10 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:34 ip-10-0-0-11 mdr: 2016-02-01 11:04:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077997] [to:14388814299] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245186012] [to:+18729996768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406180315] [to:+17408796279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-11 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592271107] [to:+13123001808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-21 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337837] [to:+447762612255] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-11 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334933] [to:18642304531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:35 ip-10-0-0-10 mdr: 2016-02-01 11:04:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:35 ip-10-0-64-11 mdr: 2016-02-01 11:04:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15019529950] [to:+12132950044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193855] [to:16192066161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527820] [to:15177635125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-10 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13473999095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343201036] [to:+18506315594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199941670] [to:+17194266053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-10 mdr: 2016-02-01 11:04:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094188843] [to:+15103131839] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:36 ip-10-0-0-10 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844472727] [to:+14844124503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039216895] [to:+13473899791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:36 ip-10-0-64-11 mdr: 2016-02-01 11:04:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048612126] [to:+12048135062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004238] [to:16783263516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193074771] [to:18195240204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764062] [to:18652784266] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333691] [to:14045635711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605344869] [to:+17605433115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-11 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:37 ip-10-0-0-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876395260] [to:+19172660125] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:37 ip-10-0-64-10 mdr: 2016-02-01 11:04:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049963] [to:14036176095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038583572] [to:+16034130852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107291112] [to:+12139298026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-10 mdr: 2016-02-01 11:04:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-11 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159667941] [to:+13478022586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:38 ip-10-0-0-20 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447917411735] [to:+447451207485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:38 ip-10-0-64-10 mdr: 2016-02-01 11:04:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044954029] [to:+17049700679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138884754] [to:+12488347168] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793259217] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059412778] [to:+16058887404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579751676] [to:+13479130059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249314792] [to:+17248032285] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-11 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650561] [to:18048960791] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:39 ip-10-0-64-11 mdr: 2016-02-01 11:04:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650561] [to:18048960791] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:39 ip-10-0-0-10 mdr: 2016-02-01 11:04:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:14044459094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248638] [to:17743867272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750739] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014245] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012412241] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044225762] [to:+18134302927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527820] [to:15177635125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233303648] [to:+13478969902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-10 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:19733425882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-11 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:40 ip-10-0-0-11 mdr: 2016-02-01 11:04:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:40 ip-10-0-64-10 mdr: 2016-02-01 11:04:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-10 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297733] [to:12765941664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064330431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144377652] [to:+14703336604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014512944] [to:+17408796622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244605] [to:12698614402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614539] [to:+12133773846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-10 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:13185001379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-21 mdr: 2016-02-01 11:04:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240706] [to:+447444269905] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606851766] [to:+19142967154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:41 ip-10-0-64-10 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:41 ip-10-0-0-11 mdr: 2016-02-01 11:04:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605781670] [to:+12604076752] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19045081108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768063637] [to:+19292201926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:14152403374] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668496] [to:14798569307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039712] [to:16477935938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502912] [to:15596458992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203517582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561038] [to:17194709235] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048181623] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865401507] [to:+18572407590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203517582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-11 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040647] [to:+13476676135] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:42 ip-10-0-0-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:42 ip-10-0-64-10 mdr: 2016-02-01 11:04:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585347] [to:15172403440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083050] [to:16782466945] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738082663] [to:+12134783304] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12672069991] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-20 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244561] [to:+447946372146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-20 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244561] [to:+447946372146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-20 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451244561] [to:+447946372146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16617480465] [to:18054150971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:19062414983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161769] [to:15173955279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:43 ip-10-0-64-11 mdr: 2016-02-01 11:04:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17083773878] [to:+17608671748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:43 ip-10-0-0-10 mdr: 2016-02-01 11:04:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18567233333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738082663] [to:+12134783304] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672278429] [to:+13477417192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185787976] [to:+13476191415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003980201] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009974] [to:12502997573] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-11 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:44 ip-10-0-64-10 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738082663] [to:+12134783304] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-10 mdr: 2016-02-01 11:04:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:44 ip-10-0-0-10 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874041064] [to:15877743282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083047] [to:15189296325] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026468] [to:17052098119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17167153224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201256] [to:13152723072] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-10 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676987] [to:13049010201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-11 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134791558] [to:+19173965659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-11 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:45 ip-10-0-64-10 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:45 ip-10-0-0-10 mdr: 2016-02-01 11:04:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196391930] [to:+17194265017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762459285] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297550] [to:17609051394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-11 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-64-10 mdr: 2016-02-01 11:04:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:46 ip-10-0-0-11 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185787976] [to:+13476191415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003980202] -Feb 1 11:04:46 ip-10-0-0-10 mdr: 2016-02-01 11:04:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16617480465] [to:18054150971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045872792] [to:+19712611110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873231799] [to:14035932706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-21 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176863043] [to:+12677669044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456633238] [to:+18459997187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:47 ip-10-0-0-11 mdr: 2016-02-01 11:04:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966489] [to:17248597856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:47 ip-10-0-64-11 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-10 mdr: 2016-02-01 11:04:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194290073] [to:+16694002550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088279] [to:12042509763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-21 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082085243] [to:+16058887760] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19498728149] [to:+19498771748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-20 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-11 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978618] [to:12077358365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12672069991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-11 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:48 ip-10-0-0-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:48 ip-10-0-64-10 mdr: 2016-02-01 11:04:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034603291] [to:+15172527212] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-11 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257736] [to:17752943876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-10 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-21 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796785] [to:16183836300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322136820] [to:+13479800919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073330] [to:12484606303] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046406097] [to:+16412432942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:49 ip-10-0-64-10 mdr: 2016-02-01 11:04:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444526] [to:13178280520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-11 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:49 ip-10-0-0-10 mdr: 2016-02-01 11:04:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:15188660195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:13479254927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092578186] [to:+14153407939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246920] [to:13136295704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-10 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502559211] [to:+16474951414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:50 ip-10-0-64-10 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:50 ip-10-0-0-11 mdr: 2016-02-01 11:04:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473536652] [to:+17182558652] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500110] [to:14344715385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612287472] [to:16614808155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022410530] [to:+13203073634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055983] [to:17705728818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577483444] [to:+17323774801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077795] [to:16309996909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788558569] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201587] [to:17174240009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896519] [to:18059469036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:51 ip-10-0-0-10 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:51 ip-10-0-64-11 mdr: 2016-02-01 11:04:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15063243312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544991] [to:16784924815] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136022495] [to:+12133550701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538759] [to:12604315641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-11 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:52 ip-10-0-64-10 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092578186] [to:+14153407939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-10 mdr: 2016-02-01 11:04:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:52 ip-10-0-0-11 mdr: 2016-02-01 11:04:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609972638] [to:+13479713313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137776090] [to:+14132736765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+13069927274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082146] [to:18137661518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318390] [to:14092015121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747541] [to:14052744809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321477] [to:12502801609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:14035967294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-10 mdr: 2016-02-01 11:04:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:12399618172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:53 ip-10-0-64-11 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:53 ip-10-0-0-10 mdr: 2016-02-01 11:04:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402966737] [to:+13477981169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143262216] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108943501] [to:+17279166398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:54 ip-10-0-0-11 mdr: 2016-02-01 11:04:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:54 ip-10-0-64-11 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-21 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451207602] [to:+447805633295] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096680939] [to:+19027021344] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159229807] [to:+16197324724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037C0202] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632498073] [to:+13475185990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286768543] [to:+16783941572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862554] [to:+13216131516] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033699534] [to:+19802092190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184309612] [to:+18572192181] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476482654] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705717575] [to:+19703156742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404132899] [to:+14406588490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609318163] [to:+13607884901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162090582] [to:+16474947532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462716910] [to:+19292201905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003000201] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024938] [to:19046355054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:55 ip-10-0-0-10 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053757240] [to:+16474980450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:55 ip-10-0-64-11 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003000202] -Feb 1 11:04:55 ip-10-0-0-20 mdr: 2016-02-01 11:04:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+13069927274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012100539] [to:+17029960317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-20 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206691] [to:+447549569849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-11 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18069393309] [to:+14697516822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:56 ip-10-0-64-10 mdr: 2016-02-01 11:04:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:56 ip-10-0-0-11 mdr: 2016-02-01 11:04:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298026] [to:19107291112] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19498728149] [to:+19498771748] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:57 ip-10-0-0-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407355180] [to:+18173637168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-11 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:57 ip-10-0-64-10 mdr: 2016-02-01 11:04:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732170439] [to:+18722258499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595056] [to:12254472140] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13046202415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092331] [to:19803181549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485837] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786523] [to:19375039971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477829203] [to:+15817001041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228922] [to:13136037277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19709785382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-10 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-11 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-11 mdr: 2016-02-01 11:04:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140840] [to:18192098706] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-0-20 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447783450633] [to:+447451212040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:58 ip-10-0-64-10 mdr: 2016-02-01 11:04:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096881550] [to:+17073007262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195846] [to:19546816679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421642] [to:19522102585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740376] [to:+13218329561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537776026] [to:+12533361832] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634993] [to:16085673250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384088] [to:125827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19025992885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-10 mdr: 2016-02-01 11:04:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-10 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:04:59 ip-10-0-64-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:04:59 ip-10-0-0-11 mdr: 2016-02-01 11:04:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:12762459285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-10 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:14252109810] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369777086] [to:+13369440728] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+15817041558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:00 ip-10-0-0-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:14035967294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-10 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-10 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463529] [to:14326615281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947873] [to:19043827693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:00 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-11 mdr: 2016-02-01 11:05:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-11 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297733] [to:12765941664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-11 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438774] [to:18122075909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-11 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:13174039644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023091456] [to:+19027041247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-11 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027658861] [to:+16465472999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-11 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:01 ip-10-0-0-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053757240] [to:+16474980450] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:01 ip-10-0-64-10 mdr: 2016-02-01 11:05:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195817250] [to:+12148148449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12257886659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105890777] [to:+18324815296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479842251] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-10 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123434787] [to:+12136309973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:17026050770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-10 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-10 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068108] [to:18058211434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-10 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502418057] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990685] [to:12162534536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083047] [to:15184883636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137822018] [to:+12482068388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:02 ip-10-0-0-10 mdr: 2016-02-01 11:05:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:02 ip-10-0-64-11 mdr: 2016-02-01 11:05:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053003341] [to:17057309393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:14152403374] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053003341] [to:17057309393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631730] [to:15304205152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-11 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-11 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164891334] [to:+17162790284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384287] [to:16235234913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144069155] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:03 ip-10-0-64-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-21 mdr: 2016-02-01 11:05:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:03 ip-10-0-0-10 mdr: 2016-02-01 11:05:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364916] [to:+13476903595] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220744] [to:17152553345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948136] [to:19046808258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-10 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026040460] [to:+13024000586] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:13479254927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958855] [to:5511987373415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-11 mdr: 2016-02-01 11:05:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:04 ip-10-0-64-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:04 ip-10-0-0-10 mdr: 2016-02-01 11:05:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808861781] [to:+14804394796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165612245] [to:+16474952927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967267] [to:19317870955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14077152745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705768718] [to:+17204637964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058188849] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328330887] [to:+12133756047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603055806] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338869] [to:+15103222373] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-11 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-64-10 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037617] [to:13362668086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756282] [to:13106899802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:05 ip-10-0-0-10 mdr: 2016-02-01 11:05:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-10 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-10 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101929] [to:19312175129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-10 mdr: 2016-02-01 11:05:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609313254] [to:+19177086890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-10 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:06 ip-10-0-64-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850438] [to:12602022710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:06 ip-10-0-0-11 mdr: 2016-02-01 11:05:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068033304] [to:15066541989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042160002] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:07 ip-10-0-64-10 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-20 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447494348310] [to:+447520606382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-10 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-11 mdr: 2016-02-01 11:05:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601672] [to:17729406961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:07 ip-10-0-64-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:07 ip-10-0-0-10 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:07 ip-10-0-64-11 mdr: 2016-02-01 11:05:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-11 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069938075] [to:13062512017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123434787] [to:+12136309973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473563101] [to:+13479862071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-21 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-10 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069939166] [to:13062031766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-10 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:08 ip-10-0-0-11 mdr: 2016-02-01 11:05:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:08 ip-10-0-64-11 mdr: 2016-02-01 11:05:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039869154] [to:+15713262209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248638] [to:17743867272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505244540] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19403374507] [to:+19032130535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862153] [to:13479093157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12348044096] [to:+13476304511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16472095442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444570] [to:13176046683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-10 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-10 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:09 ip-10-0-0-11 mdr: 2016-02-01 11:05:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144995353] [to:+16576668384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:09 ip-10-0-64-11 mdr: 2016-02-01 11:05:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808852] [to:16168136030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034631006] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022799] [to:17095417302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-11 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144995353] [to:+16576668384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092578186] [to:+14153407939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-11 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159111] [to:13365142310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-11 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:10 ip-10-0-0-21 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-10 mdr: 2016-02-01 11:05:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:10 ip-10-0-64-10 mdr: 2016-02-01 11:05:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049015201] [to:16048667448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053757240] [to:+16474980450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-10 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-11 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063375] [to:13364588992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-10 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-10 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-10 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597859220] [to:+14122302907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-11 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707221459] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:11 ip-10-0-0-21 mdr: 2016-02-01 11:05:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:11 ip-10-0-64-10 mdr: 2016-02-01 11:05:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167103289] [to:+16602009774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473536652] [to:+17182558652] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455448] [to:19167069811] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475231173] [to:+17786533426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358133] [to:13302070940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:12 ip-10-0-64-11 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:12 ip-10-0-0-10 mdr: 2016-02-01 11:05:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-10 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033159981] [to:+19542719881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309937060] [to:+18133315970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001808] [to:18592271107] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488087] [to:16183142073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-10 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-11 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899960503] [to:+12264557648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:13 ip-10-0-0-10 mdr: 2016-02-01 11:05:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221965] [to:+15103404060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:13 ip-10-0-64-11 mdr: 2016-02-01 11:05:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:15627124203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-10 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990309] [to:18723015797] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016482244] [to:+19298413891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297707] [to:12563945108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18603067703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173791314] [to:+13234984345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056200829] [to:+15052572670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D50202] -Feb 1 11:05:14 ip-10-0-0-10 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122169380] [to:+14157879171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056200829] [to:+15052572670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D50201] -Feb 1 11:05:14 ip-10-0-0-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719881] [to:16032682588] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:14 ip-10-0-64-11 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324724] [to:16159229807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:14 ip-10-0-0-21 mdr: 2016-02-01 11:05:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447743897327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477420699] [to:15819994034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149812] [to:19312005754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040125] [to:15146008024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-11 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-0-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-11 mdr: 2016-02-01 11:05:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053003341] [to:17057309393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:15 ip-10-0-64-10 mdr: 2016-02-01 11:05:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077730] [to:12409388865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:19085109352] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887760] [to:18082085243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673637] [to:17862233980] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462286] [to:18457467928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-11 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318216154] [to:+12194406263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803609] [to:19548220884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:16 ip-10-0-0-10 mdr: 2016-02-01 11:05:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:16 ip-10-0-64-11 mdr: 2016-02-01 11:05:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796279] [to:17406180315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172085324] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-21 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451207485] [to:+447917411735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19797391037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652784266] [to:+14357764062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863771] [to:16016425024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884795] [to:14434845678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068889] [to:584267321738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-10 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-0-11 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130324] [to:19123235330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-10 mdr: 2016-02-01 11:05:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:17 ip-10-0-64-11 mdr: 2016-02-01 11:05:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13096608266] [to:+12342314592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067281292] [to:+12136324921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-11 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030979] [to:12508572363] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17168683943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-11 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:18 ip-10-0-0-10 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-11 mdr: 2016-02-01 11:05:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:18 ip-10-0-64-10 mdr: 2016-02-01 11:05:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15145317492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096318761] [to:+12346507685] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-11 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436216] [to:19202540543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316316] [to:13127727214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-10 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125640729] [to:+15169080290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-11 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-10 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-11 mdr: 2016-02-01 11:05:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-11 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179652511] [to:+12136946508] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:19 ip-10-0-0-11 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:19 ip-10-0-64-10 mdr: 2016-02-01 11:05:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133490825] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854060914] [to:+15852823487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12169521938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003250201] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802225677] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659181] [to:15594626945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003250202] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19797391037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16478566154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:20 ip-10-0-0-11 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-10 mdr: 2016-02-01 11:05:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568106] [to:12054058108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:20 ip-10-0-64-11 mdr: 2016-02-01 11:05:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136295704] [to:+13134246920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736068560] [to:+16304892449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570364] [to:16476258810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411171] [to:12034355422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-11 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024030385] [to:+19028019257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-10 mdr: 2016-02-01 11:05:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072286] [to:19106505359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:21 ip-10-0-0-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327399785] [to:+19292009131] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:21 ip-10-0-64-11 mdr: 2016-02-01 11:05:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186500283] [to:+13476067485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657406] [to:12539853982] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927950] [to:12294214940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18019531785] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292696963] [to:+19513387225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142292451] [to:+18193070435] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463231517] [to:+18629551042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677135026] [to:+12048086878] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-10 mdr: 2016-02-01 11:05:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058188849] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:22 ip-10-0-64-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850951] [to:13024447549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:22 ip-10-0-0-11 mdr: 2016-02-01 11:05:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132813] [to:12049519703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-10 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796923127] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-10 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129343564] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19259147121] [to:+19253109587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+19715122477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788455] [to:+12497009193] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-10 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:23 ip-10-0-0-21 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447413800030] [to:+447451203039] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603587576] [to:+12604076546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:23 ip-10-0-64-11 mdr: 2016-02-01 11:05:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233046352] [to:+14242863367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-21 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13468887942] [to:+18327439442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-20 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438774] [to:18129133072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488087] [to:16182370989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-20 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805633295] [to:+447451207602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485837] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084339231] [to:+17323624293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:24 ip-10-0-64-11 mdr: 2016-02-01 11:05:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354942] [to:13043952594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-10 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:24 ip-10-0-0-11 mdr: 2016-02-01 11:05:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594458] [to:14403961243] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966766] [to:14044166676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475736297] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698614402] [to:+12692244605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302163] [to:15165749150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043680502] [to:+16474947048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719881] [to:16032682588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12402858025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:15852852617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034491] [to:15068506474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-64-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142292451] [to:+18193070435] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512223423] [to:+19199162600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-11 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256584234] [to:+19175638726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:25 ip-10-0-0-10 mdr: 2016-02-01 11:05:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046991977] [to:+19543235888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999094] [to:14164508574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068778145] [to:+13479378238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406185] [to:17708652161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734140] [to:16782785239] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026050770] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13315516465] [to:18652535027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-11 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-0-10 mdr: 2016-02-01 11:05:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004220] [to:16162555961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:26 ip-10-0-64-10 mdr: 2016-02-01 11:05:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521838] [to:+12069468729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274744636] [to:+19172669293] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063335900] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797737] [to:17407777346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-10 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068778145] [to:+13479378238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-10 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145570] [to:13023446813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:27 ip-10-0-64-11 mdr: 2016-02-01 11:05:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864576921] [to:+17322582324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:27 ip-10-0-0-11 mdr: 2016-02-01 11:05:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12032434660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394256] [to:12169249469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13023128882] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142292451] [to:+18193070435] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652389228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-10 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175200529] [to:+19148988512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:28 ip-10-0-64-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336978] [to:17708668382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:28 ip-10-0-0-11 mdr: 2016-02-01 11:05:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:5216672214763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477416052] [to:13478926587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432942] [to:13046406097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-10 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047693199] [to:+18638552006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:29 ip-10-0-64-11 mdr: 2016-02-01 11:05:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-11 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:29 ip-10-0-0-10 mdr: 2016-02-01 11:05:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993124] [to:14072670545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074334] [to:15403354403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125920] [to:18569569894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-11 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453910] [to:12024608006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-11 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800996] [to:12035359362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007907] [to:12283836862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856683] [to:16154745915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838624] [to:15034259508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:30 ip-10-0-64-10 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-10 mdr: 2016-02-01 11:05:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:30 ip-10-0-0-11 mdr: 2016-02-01 11:05:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155301009] [to:+12626482699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027944627] [to:+19172720072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034381170] [to:+16034132045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033130171] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124180619] [to:+13479803778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:31 ip-10-0-0-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545261561] [to:+17329869175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927130] [to:17147707241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:31 ip-10-0-64-11 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14139490272] [to:+14137289470] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807470546] [to:+16026339767] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478352412] [to:+19177229069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183944181] [to:+15817041385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18084622202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165743919] [to:+16042595184] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514688952] [to:+16125023372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:32 ip-10-0-0-10 mdr: 2016-02-01 11:05:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:32 ip-10-0-64-11 mdr: 2016-02-01 11:05:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094821576] [to:+14155944365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759369111] [to:+15052572552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19034268436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-21 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337388] [to:+447805901364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19034268436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043827693] [to:+19046947873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678433] [to:18145167768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286245] [to:15852852617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148449] [to:19195817250] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-10 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488332] [to:15304430204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:33 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-11 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:33 ip-10-0-64-10 mdr: 2016-02-01 11:05:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-11 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393053] [to:14406675674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738496447] [to:+17736664280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785424202] [to:+13019094051] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779571] [to:13304884454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691903] [to:13602079800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488949079] [to:+13134247930] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:34 ip-10-0-64-10 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042509763] [to:+12048088279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-11 mdr: 2016-02-01 11:05:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:34 ip-10-0-0-10 mdr: 2016-02-01 11:05:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691603] [to:19512958384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691903] [to:13602079800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959468] [to:14844828542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17023323394] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053692098] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17023323394] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126047567] [to:+13477699760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:35 ip-10-0-0-11 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478654818] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:35 ip-10-0-64-10 mdr: 2016-02-01 11:05:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165133728] [to:+12169295373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049817859] [to:+12048093882] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035177233] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239429] [to:15594309294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453424] [to:12076942770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617134136] [to:+17542009158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-11 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792571185] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:36 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:36 ip-10-0-64-10 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558652] [to:13473536652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-11 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-10 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-20 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330689] [to:+447511751476] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-11 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-11 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-10 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022756844] [to:+13025958531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-11 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:37 ip-10-0-64-11 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677703] [to:18144391701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-11 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833156] [to:19568217885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:37 ip-10-0-0-10 mdr: 2016-02-01 11:05:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265017] [to:17196391930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-11 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046991977] [to:+19543235888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-10 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738657724] [to:+13866012372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-11 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193074771] [to:18195240204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178621294] [to:+18173632785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15612946950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:38 ip-10-0-64-10 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156495423] [to:12538824418] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995997] [to:19084726225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:38 ip-10-0-0-11 mdr: 2016-02-01 11:05:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097467830] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-21 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451243805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-10 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-11 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-10 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033289920] [to:+18046245741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:39 ip-10-0-64-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18146618376] [to:+16466320532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-11 mdr: 2016-02-01 11:05:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:39 ip-10-0-0-10 mdr: 2016-02-01 11:05:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12144377652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778745] [to:13476083067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802096587] [to:+19703156853] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778745] [to:13476083067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731505] [to:13157469269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363679] [to:13049187235] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333627] [to:16014900617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024193366] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-11 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:40 ip-10-0-64-10 mdr: 2016-02-01 11:05:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:40 ip-10-0-0-10 mdr: 2016-02-01 11:05:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363679] [to:13049187235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025908579] [to:+15612407256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165443501] [to:13163052688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577297298] [to:+13476676237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960317] [to:19012100539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037892] [to:17802005657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:13347334218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126101471] [to:+19148818648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233308744] [to:+15612400727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-10 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:41 ip-10-0-64-11 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372901763] [to:+13479377116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-11 mdr: 2016-02-01 11:05:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245759] [to:16192743177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:41 ip-10-0-0-10 mdr: 2016-02-01 11:05:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124180619] [to:+13479803778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136680247] [to:+13478967643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-64-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064506542] [to:+14062041954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-10 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563945108] [to:+12139297707] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:42 ip-10-0-0-11 mdr: 2016-02-01 11:05:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097033443] [to:+19173965548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409636] [to:12267924047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:43 ip-10-0-0-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124180619] [to:+13479803778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-10 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:43 ip-10-0-64-11 mdr: 2016-02-01 11:05:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168203452] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604131920] [to:+17603145414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169014201] [to:+17166661040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407355180] [to:+18173637168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19053208405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440408] [to:12522456167] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584577] [to:19046747206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383451357] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309973] [to:18123434787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-64-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497989595] [to:+18173988416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-10 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692005499] [to:18088540846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:44 ip-10-0-0-11 mdr: 2016-02-01 11:05:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19015005522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126075846] [to:+19543143230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783969373] [to:+14045966754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196732071] [to:+12134784931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771522] [to:14094666050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17176860929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326159] [to:15129992159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-10 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672069991] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477792407] [to:+12262410259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:45 ip-10-0-0-11 mdr: 2016-02-01 11:05:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:45 ip-10-0-64-11 mdr: 2016-02-01 11:05:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408420] [to:15193891108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215192] [to:13042228844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602155] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-10 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546816679] [to:+19545195846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:46 ip-10-0-64-11 mdr: 2016-02-01 11:05:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-11 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221172] [to:13137403603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-20 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:46 ip-10-0-0-10 mdr: 2016-02-01 11:05:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142614] [to:17739604244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185679] [to:19174262447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404170] [to:16173066298] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-11 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374276] [to:13309494914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168577397] [to:+16474980605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:47 ip-10-0-0-11 mdr: 2016-02-01 11:05:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:47 ip-10-0-64-10 mdr: 2016-02-01 11:05:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503007616] [to:19788477404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393436] [to:12694925648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188660195] [to:+14072162425] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024973940] [to:+17053028393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168269534] [to:+13479805662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-10 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024447549] [to:+13025850951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304403343] [to:+15308631910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538324] [to:13612310549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538324] [to:13612310549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:48 ip-10-0-0-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285123] [to:16613044992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:48 ip-10-0-64-11 mdr: 2016-02-01 11:05:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558652] [to:13473536652] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075961302] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732808] [to:16316368565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022458015] [to:+16475568982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323378276] [to:+13024002265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930523] [to:15875016003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165285161] [to:+16474982670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502817] [to:12096966467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:13129343564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:14132597798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-11 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048808779] [to:+16042593607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:49 ip-10-0-64-10 mdr: 2016-02-01 11:05:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:49 ip-10-0-0-11 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-10 mdr: 2016-02-01 11:05:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262404873] [to:15195048996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019517] [to:17099865021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-10 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873618054] [to:+18133244882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-10 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647048424] [to:+19148818126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-11 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406446840] [to:+17408796866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-10 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:50 ip-10-0-0-20 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:50 ip-10-0-64-11 mdr: 2016-02-01 11:05:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079379280] [to:+13479789293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328341182] [to:+12816436530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740528] [to:+18638555743] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122941702] [to:+14697239843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13097566017] [to:+13479190133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743273240] [to:+15713273938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461191] [to:18322328130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523483090] [to:+17863847953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-64-10 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485583536] [to:15172069671] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-20 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946034230] [to:+447451237139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863387] [to:13044949404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:51 ip-10-0-0-11 mdr: 2016-02-01 11:05:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771748] [to:19498728149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083047] [to:15185308821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174039644] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177323129] [to:+19175995762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-21 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447704045859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246526] [to:16168286778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437912] [to:16783138251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485583536] [to:15172069671] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-21 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046406097] [to:+16412432942] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-10 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:52 ip-10-0-0-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:52 ip-10-0-64-11 mdr: 2016-02-01 11:05:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692236946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023487] [to:14107394591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026141400] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542135644] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-11 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176389563] [to:+14438550418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604774813] [to:+13473897561] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-10 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:53 ip-10-0-64-10 mdr: 2016-02-01 11:05:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:53 ip-10-0-0-11 mdr: 2016-02-01 11:05:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052465] [to:13183358506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13315516465] [to:18652535027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873389595] [to:+15874097949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-10 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865458267] [to:19188015118] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865458267] [to:19188015118] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16475736297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-10 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:54 ip-10-0-0-11 mdr: 2016-02-01 11:05:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:54 ip-10-0-64-11 mdr: 2016-02-01 11:05:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857356305] [to:+17162791559] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107714559] [to:+14023874028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247873726] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:18502843155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143278819] [to:+15635497625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042435069] [to:+16474912464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064506542] [to:+14062041954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077497300] [to:+16178634425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187666898] [to:+13479808187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064780580] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137398137] [to:+14242797084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032405470] [to:+19523885066] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782786824] [to:+14783047044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043826794] [to:+14242796124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312189336] [to:+13479749127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189689284] [to:+17147107156] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856683] [to:16153518043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092502602] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064556] [to:19094380210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500035B0201] -Feb 1 11:05:55 ip-10-0-0-11 mdr: 2016-02-01 11:05:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:55 ip-10-0-64-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783962752] [to:+12135295981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:55 ip-10-0-0-10 mdr: 2016-02-01 11:05:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255653925] [to:+18638554440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621109] [to:15125211726] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293989] [to:18638453082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805160314] [to:+15874087083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-20 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212040] [to:+447783450633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500035B0202] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188781358] [to:+15184151535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965179] [to:16148175050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-21 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14424000462] [to:+16465319148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-21 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363679] [to:12162698308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143230] [to:14126075846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-10 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15802225677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:56 ip-10-0-0-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:56 ip-10-0-64-11 mdr: 2016-02-01 11:05:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837745] [to:14802802358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17139076064] [to:+13475808985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-11 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411727] [to:14164581616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134616] [to:+13658002738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707185] [to:13045315577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-21 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:57 ip-10-0-64-11 mdr: 2016-02-01 11:05:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:57 ip-10-0-0-10 mdr: 2016-02-01 11:05:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470524] [to:12523429438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-10 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058474] [to:18192085399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:58 ip-10-0-0-11 mdr: 2016-02-01 11:05:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:58 ip-10-0-64-10 mdr: 2016-02-01 11:05:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057920981] [to:+19014445438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064556] [to:19094380210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393436] [to:12694925648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405413755] [to:+14406587874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869175] [to:19545261561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-11 mdr: 2016-02-01 11:05:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603067703] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:05:59 ip-10-0-64-11 mdr: 2016-02-01 11:05:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-11 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193909] [to:18083438968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043753] [to:14064710359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:14164320213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:05:59 ip-10-0-0-10 mdr: 2016-02-01 11:05:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-11 mdr: 2016-02-01 11:06:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333532] [to:15515561470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175882739] [to:+13475188494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-11 mdr: 2016-02-01 11:06:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-11 mdr: 2016-02-01 11:06:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-11 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345245014] [to:+19172592622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-11 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:00 ip-10-0-64-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:00 ip-10-0-0-10 mdr: 2016-02-01 11:06:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462341878] [to:+13478084994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473729501] [to:+19178778486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464781] [to:15123004280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-10 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573899174] [to:+14132519324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:01 ip-10-0-64-10 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:01 ip-10-0-0-11 mdr: 2016-02-01 11:06:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863262] [to:16316714724] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:15176775147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778345] [to:12312010017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037260] [to:15879982866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17147107156] [to:18189689284] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057832670] [to:+16139097117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194409863] [to:+18193073745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:14164320213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:02 ip-10-0-0-11 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:02 ip-10-0-64-10 mdr: 2016-02-01 11:06:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531469] [to:15514045631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:14152403374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19047693199] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-10 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-11 mdr: 2016-02-01 11:06:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:03 ip-10-0-64-10 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:03 ip-10-0-0-11 mdr: 2016-02-01 11:06:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-11 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268940089] [to:+12262418520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609384432] [to:+15162526349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573899174] [to:+14132519324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238942] [to:19187215769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:04 ip-10-0-64-10 mdr: 2016-02-01 11:06:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378238] [to:17068778145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106505359] [to:+19193072286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508598439] [to:+14502333956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023179784] [to:+19027021843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789431931] [to:+15612404628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192098706] [to:+18194140840] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393388889] [to:+17864107600] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614013146] [to:+18326509519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198172303] [to:+12262410082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252382662] [to:12092063332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408420] [to:12269230052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333532] [to:15515561470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234624893] [to:+13477970997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13372500007] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605747952] [to:+13477737824] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:05 ip-10-0-0-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298987] [to:18322863802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-10 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298987] [to:18322863802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:05 ip-10-0-64-11 mdr: 2016-02-01 11:06:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:12506823482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-21 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377186573] [to:+13214067376] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993774] [to:14849259387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134857831] [to:+15137259458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:06 ip-10-0-0-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-10 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:06 ip-10-0-64-11 mdr: 2016-02-01 11:06:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003260201] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369157] [to:16054999082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18082300800] [to:+17026747893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-20 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447494348310] [to:+447520606382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673039071] [to:+13309708879] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003260202] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18644259017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076943509] [to:+19599999401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014900617] [to:+14076333627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-11 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18644259017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:07 ip-10-0-64-11 mdr: 2016-02-01 11:06:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:16193999737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:07 ip-10-0-0-10 mdr: 2016-02-01 11:06:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873618054] [to:+18133244882] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049068698] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:15148949166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15712103938] [to:15716456693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14254357380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14026198246] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024722644] [to:+14804393573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123924024] [to:+14028921220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003470201] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123924024] [to:+14028921220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003470202] -Feb 1 11:06:08 ip-10-0-0-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:08 ip-10-0-0-10 mdr: 2016-02-01 11:06:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053692098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-11 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125850833] [to:+19709996270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:08 ip-10-0-64-10 mdr: 2016-02-01 11:06:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612930246] [to:+16612705158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049013104] [to:+19148250121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784005829] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808506607] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856835990] [to:+14073373720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-10 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-10 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:09 ip-10-0-64-11 mdr: 2016-02-01 11:06:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:19022935120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:09 ip-10-0-0-11 mdr: 2016-02-01 11:06:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049187235] [to:+14243363679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752680824] [to:+14243361074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434736890] [to:+14437203706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752629] [to:16232166672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-10 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097490452] [to:+17097019101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067485] [to:17186500283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-10 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:10 ip-10-0-0-11 mdr: 2016-02-01 11:06:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:10 ip-10-0-64-11 mdr: 2016-02-01 11:06:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125281288] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515323] [to:17867404479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040573] [to:+13477865487] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063164194] [to:+14695326362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148456] [to:13252264906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745131] [to:19546078156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414163] [to:13212082405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-20 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-20 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068033304] [to:15066541989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257291] [to:12527171269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-10 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-11 mdr: 2016-02-01 11:06:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-11 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:11 ip-10-0-0-20 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:11 ip-10-0-64-10 mdr: 2016-02-01 11:06:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106275059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-0-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17742948934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:12 ip-10-0-0-11 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079537823] [to:+13212700642] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752762175] [to:+17027182733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:12 ip-10-0-0-11 mdr: 2016-02-01 11:06:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788477404] [to:+16503007616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-11 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:12 ip-10-0-64-10 mdr: 2016-02-01 11:06:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003610301] -Feb 1 11:06:13 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-21 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003940201] -Feb 1 11:06:13 ip-10-0-64-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132597798] [to:+18133316673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095483101] [to:+17728004740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593604474] [to:+12484601442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14049027780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:13 ip-10-0-64-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-11 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:13 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:12245186012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999572] [to:14163171627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166044767] [to:+15092040525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:14 ip-10-0-64-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453424] [to:12076942770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-11 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132447] [to:14195611098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-11 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053927565] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:14 ip-10-0-0-10 mdr: 2016-02-01 11:06:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-21 mdr: 2016-02-01 11:06:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226932] [to:+447443537472] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17637772545] [to:+16125021595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606814558] [to:+19725254623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220835] [to:12605034897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145414157] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167178408] [to:+18638556651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092120699] [to:+17474006932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455448] [to:19167069811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171740] [to:17085605022] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-0-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-10 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:15 ip-10-0-64-11 mdr: 2016-02-01 11:06:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003610303] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202454] [to:14439865233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17172085324] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479859] [to:593939839420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857644029] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12483282192] [to:12482450822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606814558] [to:+19725254623] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154087699] [to:+17572969390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896519] [to:18054431005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:14388178485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-10 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805160314] [to:+15874087083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-20 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:16 ip-10-0-0-11 mdr: 2016-02-01 11:06:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:16 ip-10-0-64-11 mdr: 2016-02-01 11:06:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303932] [to:12542135644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735383877] [to:+19725254656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403829172] [to:+15612407700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-20 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447734316773] [to:+447520620477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003ED0303] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606814558] [to:+19725254623] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:17 ip-10-0-0-11 mdr: 2016-02-01 11:06:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472496796] [to:+14153408008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-11 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:17 ip-10-0-64-10 mdr: 2016-02-01 11:06:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260046] [to:13479886769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568106] [to:12054058108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887491] [to:16052094801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784699041] [to:+16784338503] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:14437400936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-11 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023487] [to:14107394591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182469] [to:17026265485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:18 ip-10-0-0-11 mdr: 2016-02-01 11:06:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-11 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012387115] [to:+12019844781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:18 ip-10-0-64-10 mdr: 2016-02-01 11:06:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-10 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263501580] [to:+12262410234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245759] [to:18317108853] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-21 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249229] [to:+447746878103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-11 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041948] [to:+18133202691] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136354] [to:14849036254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196715165] [to:+16233836262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:19 ip-10-0-64-11 mdr: 2016-02-01 11:06:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-10 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:19 ip-10-0-0-21 mdr: 2016-02-01 11:06:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331764] [to:+447596412172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316729174] [to:+15087884893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379164] [to:17575758005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-11 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062633057] [to:+18108528919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160088] [to:12072898740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-11 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107106795] [to:+15103226817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17144554129] [to:19167066821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873618054] [to:+18133244882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-10 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:20 ip-10-0-0-20 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212040] [to:+447783450633] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:20 ip-10-0-64-11 mdr: 2016-02-01 11:06:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:21 ip-10-0-0-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336978] [to:16783655901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-10 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-10 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-10 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:21 ip-10-0-0-11 mdr: 2016-02-01 11:06:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062247718] [to:+13479372309] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:21 ip-10-0-0-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:21 ip-10-0-64-11 mdr: 2016-02-01 11:06:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156495423] [to:12062805476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13182377462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13182377462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15614201809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086741846] [to:+12105560374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-10 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:22 ip-10-0-0-11 mdr: 2016-02-01 11:06:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:22 ip-10-0-64-10 mdr: 2016-02-01 11:06:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19042587588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-10 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263501580] [to:+12262410234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-11 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-10 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-11 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13366937664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:23 ip-10-0-0-11 mdr: 2016-02-01 11:06:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-10 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:23 ip-10-0-64-11 mdr: 2016-02-01 11:06:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085109352] [to:+19175995418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-11 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614808155] [to:+16612287472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-11 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505126470] [to:+18506315531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:24 ip-10-0-0-11 mdr: 2016-02-01 11:06:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-10 mdr: 2016-02-01 11:06:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:24 ip-10-0-64-11 mdr: 2016-02-01 11:06:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-10 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-10 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493916679] [to:+12543347062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583444] [to:+12048133220] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744844] [to:13025052122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-10 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:25 ip-10-0-64-11 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-10 mdr: 2016-02-01 11:06:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:25 ip-10-0-0-11 mdr: 2016-02-01 11:06:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002988] [to:13023443856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042447] [to:14165710904] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048613] [to:13349910880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103409391] [to:+14437204895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997300] [to:17092800537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085673250] [to:+18488634993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039216895] [to:+13473899791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970514] [to:13474444056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-10 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:26 ip-10-0-0-11 mdr: 2016-02-01 11:06:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12099923532] [to:12094057552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:26 ip-10-0-64-10 mdr: 2016-02-01 11:06:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623674331] [to:+16692223660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184028853] [to:+18572408247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783340247] [to:+16784968653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877795548] [to:+17053027668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437393446] [to:+14353391490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:27 ip-10-0-0-10 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:27 ip-10-0-64-11 mdr: 2016-02-01 11:06:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470888] [to:19104746974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167103289] [to:+16602009774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124977] [to:17173648113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490632] [to:19044050332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13192383414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-10 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278038] [to:13235721943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:28 ip-10-0-64-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659181] [to:15594626945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:28 ip-10-0-0-11 mdr: 2016-02-01 11:06:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:14233274562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136155] [to:15073508028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-21 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163102] [to:12184109707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163102] [to:12184109707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192085399] [to:+19027058474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755371] [to:12196146247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-11 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18069393309] [to:+14697516822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-11 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514688952] [to:+16125023372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633216780] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373720] [to:15856835990] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-10 mdr: 2016-02-01 11:06:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:29 ip-10-0-64-10 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:29 ip-10-0-0-11 mdr: 2016-02-01 11:06:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184508961] [to:+13479977113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364054] [to:+16466320451] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17165637609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046808258] [to:+19046948136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13192383414] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865852128] [to:+13866015869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802225677] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048135062] [to:12048612126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163052688] [to:+15165443501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152023148] [to:+16158075682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022935120] [to:+15817008486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-11 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065646860] [to:+17027184709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:30 ip-10-0-0-11 mdr: 2016-02-01 11:06:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:30 ip-10-0-64-10 mdr: 2016-02-01 11:06:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099865021] [to:+17097019517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162187703] [to:15166397120] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132438240] [to:+16475567125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:31 ip-10-0-64-10 mdr: 2016-02-01 11:06:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:31 ip-10-0-0-11 mdr: 2016-02-01 11:06:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148139] [to:+16413165316] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18507608820] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14254069439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158828259] [to:+12404077446] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132758134] [to:+14132715476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-10 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:32 ip-10-0-0-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:32 ip-10-0-64-11 mdr: 2016-02-01 11:06:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182733] [to:17752762175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096137647] [to:+14158530538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:17144069155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324756768] [to:+17256661062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015269] [to:16512101913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176196596] [to:+16574008970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088478] [to:12043920989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618929008] [to:+13476672245] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143230] [to:13527923826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:13478478245] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-10 mdr: 2016-02-01 11:06:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473091600] [to:+19175630210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:33 ip-10-0-0-11 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:13478478245] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:33 ip-10-0-64-10 mdr: 2016-02-01 11:06:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997300] [to:17092800537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455448] [to:19165856319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160088] [to:13047095049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147431629] [to:+17408797391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:14233274562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221916] [to:15592884245] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221916] [to:15592884245] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-10 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048837] [to:18052160397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005580] [to:16783400862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144571654] [to:+15107799229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019101] [to:17097490452] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-10 mdr: 2016-02-01 11:06:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755371] [to:16167063045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:34 ip-10-0-0-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:34 ip-10-0-64-11 mdr: 2016-02-01 11:06:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309973] [to:18123432637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16364399081] [to:+19149088024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19032130535] [to:19403374507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478394821] [to:+13477981266] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542135644] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967154] [to:17606851766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403354403] [to:+13203074334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091817] [to:16134477368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18603067703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817010013] [to:15814901127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681387] [to:14072808441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:35 ip-10-0-64-10 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:35 ip-10-0-0-11 mdr: 2016-02-01 11:06:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15514045631] [to:+14158531469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333956] [to:12508598439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788929344] [to:+18046245035] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045315577] [to:+16317707185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13468887942] [to:+18327439442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032934] [to:13184557124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13108782969] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-11 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:36 ip-10-0-0-10 mdr: 2016-02-01 11:06:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736100222] [to:+19086597034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:36 ip-10-0-64-10 mdr: 2016-02-01 11:06:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14045284033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167772174] [to:12162350401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195880023] [to:+14387922237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13109246184] [to:18189138140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989963] [to:17788478782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137640] [to:16033414661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339112] [to:19168036093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-20 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710282908] [to:+447451220294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-11 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:37 ip-10-0-64-10 mdr: 2016-02-01 11:06:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026946127] [to:+18582568469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-11 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:16785358104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:37 ip-10-0-0-10 mdr: 2016-02-01 11:06:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:16785358104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792510056] [to:+13852227423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062414983] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825609286] [to:+17605895129] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853780369] [to:+13473438496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502512295] [to:+18506313631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18125984441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176341698] [to:+19142815269] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-10 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-10 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:38 ip-10-0-0-11 mdr: 2016-02-01 11:06:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444570] [to:13176046683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:38 ip-10-0-64-11 mdr: 2016-02-01 11:06:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036206751] [to:+16034138578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419855] [to:17246747972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064002420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139235] [to:12563939372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175269180] [to:+15103136559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-20 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:39 ip-10-0-64-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12067458154] [to:12064291319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13525470075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-10 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015402028] [to:+16017148563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:39 ip-10-0-0-11 mdr: 2016-02-01 11:06:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951581] [to:19192745383] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626957265] [to:+19018423679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167006779] [to:+12898047371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107797947] [to:+17077236927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420932] [to:18105030890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:40 ip-10-0-64-10 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267792991] [to:19196340341] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-21 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200695] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:40 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407228] [to:12267928335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-11 mdr: 2016-02-01 11:06:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046401448] [to:+12136163060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-21 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200695] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865988] [to:13086242806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346605700] [to:+12486915512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177331114] [to:+15103353760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003310201] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177331114] [to:+15103353760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003310202] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12067458154] [to:12064291319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-11 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-11 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:41 ip-10-0-64-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:15875012086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:41 ip-10-0-0-10 mdr: 2016-02-01 11:06:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:12152076477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167006779] [to:+12898047371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168577397] [to:+16474980605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617135476] [to:+16612705271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616359646] [to:+15612033112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464751] [to:18142548253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-11 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:42 ip-10-0-0-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067278715] [to:+15068040563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863262] [to:18034560939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:42 ip-10-0-64-10 mdr: 2016-02-01 11:06:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531469] [to:15514045631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167470337] [to:+19166370882] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:19052696097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196550074] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:19285144514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-20 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-20 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:43 ip-10-0-0-10 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597034] [to:19736100222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-11 mdr: 2016-02-01 11:06:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:43 ip-10-0-64-10 mdr: 2016-02-01 11:06:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615726431] [to:+15612576173] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-10 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10202] -Feb 1 11:06:44 ip-10-0-64-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406917104] [to:+15406286501] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623926480] [to:+17273332930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072428668] [to:+15703977874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-10 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472931439] [to:+18572404601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:44 ip-10-0-64-11 mdr: 2016-02-01 11:06:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308052] [to:15163427811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308052] [to:15163427811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:44 ip-10-0-0-11 mdr: 2016-02-01 11:06:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409462] [to:16473399353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173710401] [to:+18133316695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603249601] [to:+13609494673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545261561] [to:+17329869175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13104916037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:13104916037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139178886] [to:+16137071367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420932] [to:18105030890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-10 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:45 ip-10-0-0-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067278715] [to:+15068040563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:45 ip-10-0-64-11 mdr: 2016-02-01 11:06:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-11 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167006779] [to:+12898047371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-21 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232812] [to:16094835641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:46 ip-10-0-64-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314069815] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-10 mdr: 2016-02-01 11:06:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:46 ip-10-0-0-11 mdr: 2016-02-01 11:06:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-10 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785308] [to:17097641170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-21 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447914832258] [to:+447451249307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18603067703] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404409475] [to:+12406858907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:47 ip-10-0-0-10 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136864863] [to:+17344366505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-11 mdr: 2016-02-01 11:06:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:47 ip-10-0-64-10 mdr: 2016-02-01 11:06:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764762] [to:16063045078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220416] [to:18137399953] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16478533996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075011] [to:18733765131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18505171442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157099146] [to:+13473439794] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003500401] -Feb 1 11:06:48 ip-10-0-0-10 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:48 ip-10-0-64-11 mdr: 2016-02-01 11:06:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027683] [to:17059103740] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:48 ip-10-0-0-11 mdr: 2016-02-01 11:06:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003500402] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195014404] [to:+12262431537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13476691367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-11 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003500403] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:49 ip-10-0-64-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178719020] [to:+19492453534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-10 mdr: 2016-02-01 11:06:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:49 ip-10-0-0-11 mdr: 2016-02-01 11:06:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-11 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-11 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139246] [to:12059568638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-11 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406675674] [to:+12162393053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:50 ip-10-0-64-10 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186256895] [to:+16465479903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397009] [to:14786624508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-11 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:50 ip-10-0-0-10 mdr: 2016-02-01 11:06:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606896290] [to:+18609351977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603055806] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12676839095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16474989963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314025] [to:14806005767] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623730813] [to:+12134784359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-11 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632320] [to:18458676989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:51 ip-10-0-64-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:51 ip-10-0-0-10 mdr: 2016-02-01 11:06:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732405] [to:13167061424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182905592] [to:+15817012463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302684515] [to:+19177730844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-11 mdr: 2016-02-01 11:06:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:52 ip-10-0-0-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C30404] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C30403] -Feb 1 11:06:52 ip-10-0-64-11 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003C30401] -Feb 1 11:06:52 ip-10-0-64-10 mdr: 2016-02-01 11:06:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C30402] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:16475749323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19377081281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-10 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:19377081281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:53 ip-10-0-0-10 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:53 ip-10-0-64-11 mdr: 2016-02-01 11:06:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-11 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475462387] [to:+16474954613] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-21 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930655511] [to:+447418333905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-11 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248389] [to:13475155913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-11 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:15633216780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-10 mdr: 2016-02-01 11:06:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:54 ip-10-0-0-10 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:54 ip-10-0-64-11 mdr: 2016-02-01 11:06:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921034] [to:+17604746450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176665184] [to:+19148486608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364868] [to:+18639492707] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063990074] [to:+12134788724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647048424] [to:+19148818126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139197800] [to:+18133244808] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003500404] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365121276] [to:+12134789324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199193705] [to:+18193030988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:17809064949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023091388] [to:+16474983632] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:14388178485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003610302] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10201] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017970] [to:17404975367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-21 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631910] [to:15304403343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-21 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316673] [to:14132597798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:15166036426] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863262] [to:17622150134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:15166036426] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:55 ip-10-0-64-10 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:55 ip-10-0-0-11 mdr: 2016-02-01 11:06:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-11 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-11 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:56 ip-10-0-64-11 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734719] [to:18436184418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-20 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-10 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252104201] [to:+12138225426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:56 ip-10-0-0-10 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:56 ip-10-0-64-11 mdr: 2016-02-01 11:06:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049519703] [to:+12048132813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:56 ip-10-0-64-10 mdr: 2016-02-01 11:06:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681387] [to:14072808441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:57 ip-10-0-0-10 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-10 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:57 ip-10-0-64-11 mdr: 2016-02-01 11:06:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502843155] [to:+15103137779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779848898585] [to:+12134783363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:15857356305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-11 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066081374] [to:+15068036038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13174153137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13174153137] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134477368] [to:+16139091817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973523] [to:13342094156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308747] [to:17728008416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13468887942] [to:+18327439442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-11 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625422549] [to:+12132953175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-64-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846169] [to:13238669693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:58 ip-10-0-0-10 mdr: 2016-02-01 11:06:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14043576920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087983089] [to:+12538787410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846169] [to:13238669693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-11 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-11 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734719] [to:18436184418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058474] [to:18192085399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-10 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163467524] [to:+19175630187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:59 ip-10-0-64-10 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043680502] [to:+16474947048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:16052180670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554504] [to:17747668815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-10 mdr: 2016-02-01 11:06:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:06:59 ip-10-0-0-11 mdr: 2016-02-01 11:06:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185656123] [to:+12343867706] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432942] [to:13046406097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147968154] [to:+14388095076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:17063809556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:17063809556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:18324756768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927052] [to:18649996255] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177397951] [to:+17073009934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-10 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:00 ip-10-0-64-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653289] [to:16046988428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:00 ip-10-0-0-11 mdr: 2016-02-01 11:07:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-10 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220875] [to:18643236457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-11 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095532416] [to:+17327068221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-10 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-10 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018805] [to:19029862165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:17722227080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:01 ip-10-0-64-11 mdr: 2016-02-01 11:07:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707221459] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:01 ip-10-0-0-11 mdr: 2016-02-01 11:07:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145847] [to:17608719881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996437] [to:14807984723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247599] [to:+14706732429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085058676] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594953] [to:17866412529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-11 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170753] [to:+19027046085] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852593257] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472367463] [to:+16477999375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-21 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447702218728] [to:+447418320065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:17863124495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136183787] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-11 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057961583] [to:+17053003069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-21 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:02 ip-10-0-64-10 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712177624] [to:+13017710530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-21 mdr: 2016-02-01 11:07:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:02 ip-10-0-0-10 mdr: 2016-02-01 11:07:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342923] [to:13022429287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14252498374] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068033304] [to:15066541989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031439] [to:15733104702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573865809] [to:+17572969729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18069393309] [to:+14697516822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246747972] [to:+19298419855] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:12076943509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-11 mdr: 2016-02-01 11:07:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:03 ip-10-0-0-10 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:03 ip-10-0-64-11 mdr: 2016-02-01 11:07:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842793] [to:14842410267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609351977] [to:18606896290] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16052318797] [to:16059063716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504256] [to:19196087712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-10 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:04 ip-10-0-0-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102674] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-11 mdr: 2016-02-01 11:07:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:04 ip-10-0-64-10 mdr: 2016-02-01 11:07:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475954797] [to:+13475186114] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-20 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447850461486] [to:+447451227237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003690201] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062249482] [to:+14703334224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058182552] [to:+16474982365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742224983] [to:15126647304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062610739] [to:+15874087354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107600] [to:12393388889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785986983] [to:+16784123733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892044] [to:14044372611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854696598] [to:+19172669450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-11 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-0-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-10 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:05 ip-10-0-64-11 mdr: 2016-02-01 11:07:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+14153161549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031246] [to:18164160829] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-21 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447850461486] [to:+447451227237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003690202] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-20 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534446889] [to:+447418330834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-20 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053151870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017970] [to:17407045131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-10 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:06 ip-10-0-0-11 mdr: 2016-02-01 11:07:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326557185] [to:+17133896201] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:06 ip-10-0-64-11 mdr: 2016-02-01 11:07:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073418991] [to:12095650093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778062] [to:12628086166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17135167180] [to:+17133526566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076942770] [to:+19492453424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-21 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447596412172] [to:+447418331764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:07 ip-10-0-0-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-11 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266278260] [to:+12267982358] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506825893] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:07 ip-10-0-64-10 mdr: 2016-02-01 11:07:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069928] [to:17075728077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055520] [to:16825522610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12399385133] [to:+13479808671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490451] [to:19178436051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:14695007485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691031] [to:13603055806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:16789072168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954633] [to:12526655329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:14695007485] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774801] [to:17577483444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-11 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-10 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:08 ip-10-0-0-11 mdr: 2016-02-01 11:07:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:08 ip-10-0-64-10 mdr: 2016-02-01 11:07:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407228] [to:15195046561] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232145] [to:14436767497] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274951981] [to:+17863539981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073634] [to:13022410530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495081] [to:19293237081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-10 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449730] [to:16198326720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-10 mdr: 2016-02-01 11:07:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015269] [to:16512101913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:09 ip-10-0-0-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:09 ip-10-0-64-11 mdr: 2016-02-01 11:07:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-10 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136762206] [to:+17344366467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19163701508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869110] [to:12158342479] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005720] [to:14146907367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-10 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095569268] [to:+17323058177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-11 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-10 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472237090] [to:19194366081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:10 ip-10-0-64-11 mdr: 2016-02-01 11:07:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:10 ip-10-0-0-21 mdr: 2016-02-01 11:07:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241208] [to:+447444350023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010386] [to:13365648193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487970011] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:19043156586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-0-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479859] [to:593939839420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010386] [to:13365648193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818126] [to:18647048424] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-11 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524159] [to:16168342717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-0-11 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:11 ip-10-0-0-11 mdr: 2016-02-01 11:07:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200921] [to:14439912313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:11 ip-10-0-64-10 mdr: 2016-02-01 11:07:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786990] [to:13015731038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125455480] [to:+18126709273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138302109] [to:+17817864679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967363] [to:17408533757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000108] [to:13064205410] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:16056331155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-10 mdr: 2016-02-01 11:07:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103628401] [to:+12105718632] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:12 ip-10-0-0-10 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:12 ip-10-0-64-11 mdr: 2016-02-01 11:07:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797737] [to:17407777346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153133926] [to:+12678676608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293280148] [to:+13479198774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575758005] [to:+13479379164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-11 mdr: 2016-02-01 11:07:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059065303] [to:+12897809391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:13 ip-10-0-0-10 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:13 ip-10-0-64-11 mdr: 2016-02-01 11:07:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371656] [to:14178278193] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137403603] [to:+12138221172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149840260] [to:+16149964377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15144636736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472727694] [to:+12897683579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170437] [to:15059778341] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731505] [to:13157469269] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18067738001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18067738001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:14 ip-10-0-0-10 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-10 mdr: 2016-02-01 11:07:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:14 ip-10-0-64-11 mdr: 2016-02-01 11:07:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593703] [to:16172711720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042299985] [to:+19084858857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18505171442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102674] [to:16109315398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-10 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13474211457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454898503] [to:+19177370408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787323762] [to:+17784032963] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-11 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568411] [to:15404700544] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:15 ip-10-0-64-10 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787323762] [to:+17784032963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-21 mdr: 2016-02-01 11:07:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:15 ip-10-0-0-11 mdr: 2016-02-01 11:07:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293280148] [to:+13479198774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981266] [to:13478394821] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087083] [to:17805160314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17805074903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989578] [to:19054091256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491238] [to:18324913029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:15179141484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326833] [to:12017571093] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:16 ip-10-0-0-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041906] [to:15066080971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:12267923909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-11 mdr: 2016-02-01 11:07:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:16 ip-10-0-64-10 mdr: 2016-02-01 11:07:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603067703] [to:+13473898357] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411225] [to:19054494104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14073411702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152723072] [to:+19292201256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139041880] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048091100] [to:+13203075440] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931246] [to:15149163410] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392001221] [to:+17864804227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056089] [to:19024018206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15195663045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142309211] [to:+16144209380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192054315] [to:+15672057176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:17 ip-10-0-0-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-10 mdr: 2016-02-01 11:07:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:17 ip-10-0-64-11 mdr: 2016-02-01 11:07:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408247] [to:19184028853] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828774] [to:+12139297591] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546938198] [to:12543178713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825532414] [to:+14692052149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592884245] [to:+12138221916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194696990] [to:+17193561038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866412529] [to:+19544594953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965233] [to:13185040427] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-64-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132977316] [to:+17097000514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-10 mdr: 2016-02-01 11:07:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596458992] [to:+17077502912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:18 ip-10-0-0-11 mdr: 2016-02-01 11:07:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17065705339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-10 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479471092] [to:13474445610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-10 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066541989] [to:+15068033304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540818] [to:17324298999] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-10 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-11 mdr: 2016-02-01 11:07:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250121] [to:14049013104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:19 ip-10-0-64-10 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508598439] [to:+14502333956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:19 ip-10-0-0-11 mdr: 2016-02-01 11:07:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103404685] [to:+17256661271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165227786] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196293375] [to:17199949094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439264] [to:13469327057] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124366] [to:12674492223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373364082] [to:+13219993171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435671010] [to:+13019094299] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136559] [to:17175269180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188056196] [to:+15817041653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077890147] [to:12506671615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-64-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336978] [to:16783655901] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-11 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-20 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206691] [to:+447523247182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13143699583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:20 ip-10-0-0-10 mdr: 2016-02-01 11:07:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-10 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188015118] [to:+17865458267] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218949] [to:16015967594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220420] [to:18135036892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:21 ip-10-0-64-10 mdr: 2016-02-01 11:07:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:21 ip-10-0-0-11 mdr: 2016-02-01 11:07:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784209299] [to:+19789697407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:15179141484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244808] [to:18139197800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12165133728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:22 ip-10-0-0-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18063335900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-10 mdr: 2016-02-01 11:07:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:22 ip-10-0-64-11 mdr: 2016-02-01 11:07:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15133490825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18563169953] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-11 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122350919] [to:+16466289454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187743860] [to:+15186500248] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592171684] [to:+14158256261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-10 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862526] [to:+18572401757] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:23 ip-10-0-0-11 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:23 ip-10-0-64-10 mdr: 2016-02-01 11:07:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15012566467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613364145] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022193329] [to:+19027041341] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040289] [to:+17348228504] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-21 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447914832258] [to:+447451249307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:24 ip-10-0-0-10 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-10 mdr: 2016-02-01 11:07:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:24 ip-10-0-64-11 mdr: 2016-02-01 11:07:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162059] [to:12523634701] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764062] [to:18652784266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804936] [to:12153785885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980210] [to:17805367977] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17579981615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-11 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346731820] [to:+19802095434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-11 mdr: 2016-02-01 11:07:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16476482654] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:25 ip-10-0-0-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072959464] [to:+17078685359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-11 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:25 ip-10-0-64-10 mdr: 2016-02-01 11:07:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375970482] [to:+18133203325] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896519] [to:18059469036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812030121] [to:+16466691175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513809880] [to:+19513640895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088024] [to:16364399081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-10 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:26 ip-10-0-0-11 mdr: 2016-02-01 11:07:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194409863] [to:+18193073745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:26 ip-10-0-64-11 mdr: 2016-02-01 11:07:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-10 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001937] [to:16813137897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704269537] [to:+13234865563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102213639] [to:+13475808131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-20 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609415] [to:+447874749593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327109376] [to:+18328042762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-10 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:27 ip-10-0-64-11 mdr: 2016-02-01 11:07:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:27 ip-10-0-0-11 mdr: 2016-02-01 11:07:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154481] [to:+13025852322] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14507529994] [to:+14387940664] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606896290] [to:+18609351977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411727] [to:14164581616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:28 ip-10-0-0-11 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:15593056669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-11 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:28 ip-10-0-64-10 mdr: 2016-02-01 11:07:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-10 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606027398] [to:13604300048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-20 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447825417792] [to:+447520605667] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500031D0202] -Feb 1 11:07:29 ip-10-0-64-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-11 mdr: 2016-02-01 11:07:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526929] [to:16304414810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:29 ip-10-0-0-10 mdr: 2016-02-01 11:07:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19403374507] [to:+19032130535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503102] [to:50496921157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148150079] [to:+14146005645] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-11 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19163701508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12262418115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:30 ip-10-0-0-10 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-11 mdr: 2016-02-01 11:07:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:30 ip-10-0-64-10 mdr: 2016-02-01 11:07:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:17802004708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024390148] [to:+17029565018] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663353] [to:18023793196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157469269] [to:+19177731505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004296] [to:17802004708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-21 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951299233] [to:+447451211156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035665838] [to:+18038519690] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-21 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:31 ip-10-0-0-11 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:31 ip-10-0-64-10 mdr: 2016-02-01 11:07:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614505168] [to:+16615334261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278038] [to:13235721943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691175] [to:16812030121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093397242] [to:+16465470321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094477] [to:17868735852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005142] [to:15802306769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094477] [to:17868735852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138062687] [to:+15139008876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679704333] [to:+12679525484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043565] [to:19029564694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898160] [to:12158735808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:32 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635291008] [to:+18639493205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:32 ip-10-0-64-10 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406025795] [to:+13477055047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406025795] [to:+13477055047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406025795] [to:+13477055047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202346644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202346644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669789] [to:16169029539] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-21 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609751553] [to:+13608498189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14178256068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065233229] [to:+15128987335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-11 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368485952] [to:+12604070354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:33 ip-10-0-0-10 mdr: 2016-02-01 11:07:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:33 ip-10-0-64-11 mdr: 2016-02-01 11:07:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058223840] [to:+12312663035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062127] [to:13049525459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009273] [to:12077547037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661040] [to:17169014201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882262] [to:15306804821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907600] [to:16317426172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:13187455297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139091785] [to:16136988734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342521212] [to:+16475569634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164908720] [to:+16474993036] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587115] [to:18505171442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107655] [to:19044056851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:34 ip-10-0-0-10 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:34 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514688952] [to:+16125023372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483723] [to:15753127257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075640] [to:14233052469] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783774] [to:13237425893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14192082439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-64-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14192082439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-10 mdr: 2016-02-01 11:07:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:17809320704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-11 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307498873] [to:+13479542804] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:35 ip-10-0-0-10 mdr: 2016-02-01 11:07:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:13473619183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331761] [to:+18102218637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:19043156586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17185986524] [to:+13473898103] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168342717] [to:+16169524159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317075924] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019251] [to:17097257518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:36 ip-10-0-0-10 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606851766] [to:+19142967154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:36 ip-10-0-64-11 mdr: 2016-02-01 11:07:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137788910] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233137970] [to:+14804390547] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503488148] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-11 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148185] [to:+18572328102] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-64-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-10 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:37 ip-10-0-0-11 mdr: 2016-02-01 11:07:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135193620] [to:+13072759524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931070] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552006] [to:19043925803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-20 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670739] [to:+447875783503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:38 ip-10-0-64-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001235] [to:17088901385] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-10 mdr: 2016-02-01 11:07:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:38 ip-10-0-0-11 mdr: 2016-02-01 11:07:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-10 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-10 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-10 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-10 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738265833] [to:+12694308101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-11 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14354015871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019485] [to:19024100570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:39 ip-10-0-0-11 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:39 ip-10-0-64-10 mdr: 2016-02-01 11:07:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-21 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789725273] [to:+13366452423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063364556] [to:+14097977834] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:18602068513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326833] [to:12017571093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-10 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:40 ip-10-0-64-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:40 ip-10-0-0-11 mdr: 2016-02-01 11:07:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150496088808] [to:+16783941549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233137970] [to:+14804390547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869175] [to:19545261561] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596122859] [to:+18583604710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671567] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080416FFFD44] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672900] [to:17066044017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671567] [to:+16136043818] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080416FFFD31] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927950] [to:12294214940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999572] [to:12262241425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:12159716331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364534] [to:+14582015386] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144289] [to:15134171074] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-11 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:41 ip-10-0-64-11 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013917879] [to:+14012038202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:41 ip-10-0-0-10 mdr: 2016-02-01 11:07:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122752532] [to:18722813290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477876855] [to:+12264550486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479792812] [to:+13473437517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-11 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075450422] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-11 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749070] [to:17739630268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-11 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608719881] [to:+17603145847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:42 ip-10-0-0-10 mdr: 2016-02-01 11:07:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016129962] [to:+19014746878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:42 ip-10-0-64-10 mdr: 2016-02-01 11:07:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-20 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326556] [to:+447979697576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-10 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-10 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490451] [to:19178436051] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-64-11 mdr: 2016-02-01 11:07:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-10 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528825] [to:13134821810] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:43 ip-10-0-0-11 mdr: 2016-02-01 11:07:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792571185] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-10 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127920003] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-10 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690352] [to:12488184363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:44 ip-10-0-0-11 mdr: 2016-02-01 11:07:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423261] [to:12532541621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:44 ip-10-0-64-11 mdr: 2016-02-01 11:07:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476871881] [to:+16474992984] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:15593056669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:14698263532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692027278] [to:12148743227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610519] [to:18047279355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19252896218] [to:+17035423673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-10 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-10 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:45 ip-10-0-64-11 mdr: 2016-02-01 11:07:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:45 ip-10-0-0-11 mdr: 2016-02-01 11:07:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605940] [to:19283187733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-11 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142029995] [to:+12627775900] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18038007930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:14076164903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19163701508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16475448124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-21 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-11 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:46 ip-10-0-64-10 mdr: 2016-02-01 11:07:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218637] [to:19107331761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:46 ip-10-0-0-10 mdr: 2016-02-01 11:07:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930523] [to:15875016003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-10 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-11 mdr: 2016-02-01 11:07:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:47 ip-10-0-64-11 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:47 ip-10-0-0-11 mdr: 2016-02-01 11:07:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234539515] [to:+18572402015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:48 ip-10-0-0-11 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:48 ip-10-0-0-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-11 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737393244] [to:+18477561977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:48 ip-10-0-64-10 mdr: 2016-02-01 11:07:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:48 ip-10-0-0-11 mdr: 2016-02-01 11:07:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004908] [to:17097403110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186899394] [to:+15817008489] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017231] [to:16315758666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18108588627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-10 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037302418] [to:+13477055401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-64-11 mdr: 2016-02-01 11:07:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-10 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327569] [to:16824591903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269343] [to:15593046044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:49 ip-10-0-0-11 mdr: 2016-02-01 11:07:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135152303] [to:+17278607009] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338503] [to:16784699041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679704333] [to:+12679525484] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096137647] [to:+14158530538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691012] [to:16197910735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482699] [to:17155301009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366473] [to:12694149384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198000373] [to:15639290133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-0-10 mdr: 2016-02-01 11:07:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-10 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:50 ip-10-0-64-11 mdr: 2016-02-01 11:07:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503924] [to:18327779454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406550055] [to:+14406588432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136012402] [to:+16136043246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215075251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12299475043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220486] [to:18453098876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504044] [to:13129185210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16475448124] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170425] [to:+12064009541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-0-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-11 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:51 ip-10-0-64-10 mdr: 2016-02-01 11:07:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148845358] [to:+14387922913] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:16206442762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:18182617837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041341] [to:19022193329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316109658] [to:+19014449905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692027278] [to:12148743227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-64-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:17023545899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-10 mdr: 2016-02-01 11:07:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:52 ip-10-0-0-11 mdr: 2016-02-01 11:07:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148845358] [to:+14387922913] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444570] [to:13176046683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-11 mdr: 2016-02-01 11:07:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:53 ip-10-0-0-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-11 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:53 ip-10-0-64-10 mdr: 2016-02-01 11:07:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134449776] [to:+13216137299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-11 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-10 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138189336] [to:+16136042956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396069] [to:12167677617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334443] [to:17575356129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-10 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178436051] [to:+16463490451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:54 ip-10-0-64-10 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055153099] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:54 ip-10-0-0-11 mdr: 2016-02-01 11:07:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742948934] [to:+15089874966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437393446] [to:+14353391490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612127194] [to:+17727740591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634953188] [to:+14153406075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16187311448] [to:+18724003266] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238615176] [to:+15625534645] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787323762] [to:+17784032963] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156010635] [to:+18729997882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228094] [to:12525489398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035665838] [to:+18038519690] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097422] [to:15877743355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653762904] [to:+13477963118] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:17702986140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:55 ip-10-0-64-10 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:16475255245] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:55 ip-10-0-0-11 mdr: 2016-02-01 11:07:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221916] [to:15592884245] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201680] [to:18282315831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292300351] [to:+19176635214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-21 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-10 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-64-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197177761] [to:+12264559758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-10 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:56 ip-10-0-0-11 mdr: 2016-02-01 11:07:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427739] [to:16024516750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482669052] [to:+18328045183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572038117] [to:+13477866289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104723895] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-10 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572406107] [to:+12405538727] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963617] [to:16146648881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-10 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086913746] [to:+17739433687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:57 ip-10-0-64-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:57 ip-10-0-0-11 mdr: 2016-02-01 11:07:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:18658506144] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192085399] [to:+19027058474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205006686] [to:+14045966528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893873983] [to:+14694127577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988488] [to:17179928698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-20 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235973] [to:+447956527123] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:07:58 ip-10-0-0-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388178485] [to:+14388040705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-11 mdr: 2016-02-01 11:07:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:58 ip-10-0-64-10 mdr: 2016-02-01 11:07:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024155115] [to:+12136349038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315704] [to:13139398458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-10 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604207373] [to:+19172592997] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-10 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198774] [to:12293280148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-20 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451226841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604417264] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-10 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106639675] [to:+12109986452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-10 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:07:59 ip-10-0-0-11 mdr: 2016-02-01 11:07:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:07:59 ip-10-0-64-11 mdr: 2016-02-01 11:07:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297707] [to:12563945108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-11 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-21 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-21 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447773775324] [to:+447520621972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-11 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-20 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-10 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:00 ip-10-0-64-11 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228289] [to:16142040768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-20 mdr: 2016-02-01 11:08:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:00 ip-10-0-0-10 mdr: 2016-02-01 11:08:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148743227] [to:+14692027278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183351715] [to:+18722134307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-10 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:01 ip-10-0-0-10 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104723895] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044440636] [to:+19046947869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:17155565863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-10 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-11 mdr: 2016-02-01 11:08:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:17155565863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:01 ip-10-0-64-10 mdr: 2016-02-01 11:08:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530538] [to:12096137647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364717] [to:+19142066588] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688833] [to:17096992574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-11 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-21 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451237769] [to:+447863129046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512101913] [to:+17633015269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-0-10 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024100570] [to:+19028019485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:02 ip-10-0-64-11 mdr: 2016-02-01 11:08:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737393244] [to:+18477561977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13152883292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900233] [to:639499216091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076335293] [to:+16474934356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17868377147] [to:14072671951] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137399953] [to:+17542220416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:03 ip-10-0-0-11 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:03 ip-10-0-64-10 mdr: 2016-02-01 11:08:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148845358] [to:+14387922913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-10 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19733422211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:04 ip-10-0-0-11 mdr: 2016-02-01 11:08:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:04 ip-10-0-64-11 mdr: 2016-02-01 11:08:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340738] [to:16063155756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068177579] [to:+12064297992] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162478082] [to:+13476675717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188332026] [to:+15183440224] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276988709] [to:+19148291328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356890913] [to:+19298413142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:060804C9430201] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862233980] [to:+17865673637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16364399081] [to:+19149088024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637986] [to:17208391758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-20 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134242598] [to:+13479191926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356890913] [to:+19298413142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:060804C9430202] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:05 ip-10-0-0-11 mdr: 2016-02-01 11:08:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13474211457] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-10 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:05 ip-10-0-64-11 mdr: 2016-02-01 11:08:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-10 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18285510261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-10 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-21 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229909] [to:+447930414143] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-64-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:06 ip-10-0-0-11 mdr: 2016-02-01 11:08:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900743] [to:+15147003846] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009407] [to:13174809278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215075251] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-11 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-11 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:07 ip-10-0-64-10 mdr: 2016-02-01 11:08:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:07 ip-10-0-0-11 mdr: 2016-02-01 11:08:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920371] [to:17348121783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:12193319236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:12193319236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:17866719172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040705] [to:14388178485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147279103] [to:+14845485445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18322594311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12896804561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203354] [to:18136249272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:08 ip-10-0-64-10 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-10 mdr: 2016-02-01 11:08:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:08 ip-10-0-0-11 mdr: 2016-02-01 11:08:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:12567701926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-21 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:17784005829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165167] [to:18287728533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846169] [to:13238669693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244363638] [to:+13122753212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:12188383449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472681821] [to:+16474955069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12517869152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:17203911043] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:09 ip-10-0-64-11 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-10 mdr: 2016-02-01 11:08:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:09 ip-10-0-0-11 mdr: 2016-02-01 11:08:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019517] [to:17099865021] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12253807630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19162437681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756435] [to:18166794843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-11 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216655] [to:584143057266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:10 ip-10-0-0-10 mdr: 2016-02-01 11:08:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791631] [to:17166047231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:10 ip-10-0-64-11 mdr: 2016-02-01 11:08:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-20 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813280] [to:12405170716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18733765131] [to:+18193075011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19137546528] [to:+12405732922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333956] [to:12508598439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-10 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-11 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716867460] [to:+14158538753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:11 ip-10-0-0-11 mdr: 2016-02-01 11:08:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067234] [to:13059726917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:11 ip-10-0-64-10 mdr: 2016-02-01 11:08:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144837] [to:18635893196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106063796] [to:+15109486493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102746612] [to:+19142061839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172711720] [to:+19172593703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592271107] [to:+13123001808] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13136183787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077547037] [to:+19784009273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-10 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062555247] [to:+14703335357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12044001503] [to:12042941567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040525] [to:16166044767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:12 ip-10-0-0-11 mdr: 2016-02-01 11:08:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:12 ip-10-0-64-11 mdr: 2016-02-01 11:08:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-10 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076927208] [to:+14074424554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-11 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242553119] [to:+14072681974] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-10 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-21 mdr: 2016-02-01 11:08:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331764] [to:+447596412172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:13 ip-10-0-64-10 mdr: 2016-02-01 11:08:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13153728451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:13 ip-10-0-0-20 mdr: 2016-02-01 11:08:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:13 ip-10-0-64-10 mdr: 2016-02-01 11:08:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13604417264] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152971965] [to:+13479803059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816162988] [to:+18322461552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:16172377429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18317075924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123886758] [to:+12243104096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-11 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17165238720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:14 ip-10-0-64-10 mdr: 2016-02-01 11:08:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022793] [to:+12602220925] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:14 ip-10-0-0-10 mdr: 2016-02-01 11:08:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384961763] [to:+14387927989] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649790321] [to:+13477736533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064559987] [to:+14703335046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-10 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-11 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942512] [to:+16079687191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:15 ip-10-0-0-10 mdr: 2016-02-01 11:08:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:15 ip-10-0-64-11 mdr: 2016-02-01 11:08:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163891028] [to:+12162396472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203698] [to:14439791216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052737112] [to:+16136043818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195716997] [to:+14388072722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035619] [to:12144295541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13025630339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16189218286] [to:+13867428541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993492] [to:13474211457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066080971] [to:+15068041906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017231] [to:16315758666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731505] [to:13157469269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-11 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-20 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668037] [to:15012660802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:16 ip-10-0-64-10 mdr: 2016-02-01 11:08:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:15853078458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:16 ip-10-0-0-10 mdr: 2016-02-01 11:08:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433687] [to:17086913746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856908542] [to:+15852821258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017071907] [to:+18622278425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086961] [to:19316917175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565537257] [to:+16096144727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138559856] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-10 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102412] [to:13235229391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:17 ip-10-0-0-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145847] [to:17608719881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:17 ip-10-0-64-11 mdr: 2016-02-01 11:08:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691522] [to:15177409389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607756338] [to:+12536423739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098081560] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-21 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475497872] [to:+17185041137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:18502843155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-10 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789189073] [to:+16049000550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:18 ip-10-0-64-11 mdr: 2016-02-01 11:08:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272043026] [to:+14158253889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:18 ip-10-0-0-11 mdr: 2016-02-01 11:08:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:19 ip-10-0-64-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049826038] [to:+13479787564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:19 ip-10-0-64-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607195459] [to:+15169268345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:19 ip-10-0-64-10 mdr: 2016-02-01 11:08:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15142682236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-11 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-11 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-20 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754328099] [to:+447451214092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:19 ip-10-0-0-10 mdr: 2016-02-01 11:08:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022193329] [to:+19027041341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-10 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809572] [to:12293156677] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-10 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603367875] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:20 ip-10-0-0-10 mdr: 2016-02-01 11:08:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:20 ip-10-0-64-11 mdr: 2016-02-01 11:08:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485395] [to:16462018749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029729619] [to:+12532446017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102834] [to:18629558557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609313254] [to:+19177086890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15139041880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364111] [to:+13867423723] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738368211] [to:+19738146232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18322594311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183662834] [to:+19175805189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016696727] [to:+13219265641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977545] [to:17178501979] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215766855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063381] [to:14012000660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-11 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-64-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-11 mdr: 2016-02-01 11:08:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:21 ip-10-0-0-10 mdr: 2016-02-01 11:08:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443856] [to:+13024002988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072959464] [to:+17078685359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136325082] [to:18083047611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396069] [to:12166180458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029297440] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052064048] [to:+16465136810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431537] [to:15195014404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202303915] [to:+13039930624] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-10 mdr: 2016-02-01 11:08:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-10 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:22 ip-10-0-64-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:22 ip-10-0-0-11 mdr: 2016-02-01 11:08:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:16143273594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:19055153099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-11 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009131] [to:18327399785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927950] [to:12294214940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-11 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:23 ip-10-0-0-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246592] [to:14344712987] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237463187] [to:+16269881712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:23 ip-10-0-64-10 mdr: 2016-02-01 11:08:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201256] [to:13152723072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615430024] [to:+18173635141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:16197277278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982813] [to:13154093818] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245269] [to:18047200943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075087798] [to:+14073372472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-10 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054999082] [to:+16058369157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-10 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:17854090455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:24 ip-10-0-0-11 mdr: 2016-02-01 11:08:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:24 ip-10-0-64-11 mdr: 2016-02-01 11:08:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024642] [to:14033579240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134787741] [to:14237089051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178719020] [to:+19492453534] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069408108] [to:+13069928142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798076] [to:14173101078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009529] [to:17326701599] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13364710040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474940657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-21 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447746878103] [to:+447451249229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-11 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:25 ip-10-0-0-11 mdr: 2016-02-01 11:08:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:25 ip-10-0-64-10 mdr: 2016-02-01 11:08:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069617838] [to:+15068045506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216655] [to:584143057266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042673230] [to:+14582025877] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-10 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-10 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192922137] [to:+15614591112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:26 ip-10-0-0-11 mdr: 2016-02-01 11:08:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069617838] [to:+15068045506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:26 ip-10-0-64-11 mdr: 2016-02-01 11:08:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:19283776421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057208000] [to:+17027794086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-11 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195786518] [to:+13479568066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602687863] [to:+12404668845] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165011221] [to:+17162791972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-10 mdr: 2016-02-01 11:08:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:27 ip-10-0-0-10 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169029539] [to:+19172669789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:27 ip-10-0-64-11 mdr: 2016-02-01 11:08:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656583095] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123504297] [to:+13479787116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045913246] [to:+14242866278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364561] [to:+15873232525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602687863] [to:+12404668845] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897790235] [to:14168393655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328563] [to:12035568240] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036303819] [to:+16034138075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+13122756194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:28 ip-10-0-0-11 mdr: 2016-02-01 11:08:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233316251] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:28 ip-10-0-64-10 mdr: 2016-02-01 11:08:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159153148] [to:+17027476361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132939092] [to:+15137259441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:29 ip-10-0-0-11 mdr: 2016-02-01 11:08:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-11 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:29 ip-10-0-64-10 mdr: 2016-02-01 11:08:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286914] [to:16812228841] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043417988] [to:17708859041] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995957] [to:18648280377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-10 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066044017] [to:+13476672900] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-10 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287728533] [to:+12136165167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:30 ip-10-0-64-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068042016] [to:15068884669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:30 ip-10-0-0-11 mdr: 2016-02-01 11:08:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789697] [to:12035265672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-20 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447734223555] [to:+447451201945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921547] [to:17742895333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921547] [to:17742895333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165298807] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-10 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-10 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075011] [to:18733765131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:31 ip-10-0-0-11 mdr: 2016-02-01 11:08:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:31 ip-10-0-64-11 mdr: 2016-02-01 11:08:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269738514] [to:+12267983027] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15626468153] [to:+16264604043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079491613] [to:+14072163514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17209894553] [to:+13024002515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233052469] [to:+16158075640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982358] [to:12266278260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137872] [to:13215766855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:32 ip-10-0-0-10 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18084622202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-10 mdr: 2016-02-01 11:08:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:32 ip-10-0-64-11 mdr: 2016-02-01 11:08:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076329727] [to:+19178778415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504267] [to:17657614834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072426412] [to:+14073374689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-11 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044050332] [to:+16463490632] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029565018] [to:17024390148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:33 ip-10-0-64-10 mdr: 2016-02-01 11:08:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:33 ip-10-0-0-11 mdr: 2016-02-01 11:08:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14794459699] [to:+18638556865] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-21 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500035B0202] -Feb 1 11:08:34 ip-10-0-0-21 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500035B0201] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793018216] [to:+14242796898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12153005744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109784707] [to:+19199162474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-10 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-11 mdr: 2016-02-01 11:08:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:34 ip-10-0-0-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824618] [to:15855762871] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:34 ip-10-0-64-11 mdr: 2016-02-01 11:08:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046462] [to:19028173641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785986983] [to:+16784123733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015880236] [to:+12136348066] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869110] [to:13474652538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674037543] [to:+12158662839] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594458] [to:14403961243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155301009] [to:+12626482699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173000411] [to:+17273629124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-11 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-0-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15195206869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-11 mdr: 2016-02-01 11:08:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:35 ip-10-0-64-10 mdr: 2016-02-01 11:08:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702637030] [to:+19199164018] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109784707] [to:+13479804656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538018] [to:17077242836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155673869] [to:+15865748059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042160002] [to:+13478993809] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058223840] [to:+12312663035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-11 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116285691283407] [to:+12138619555] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:36 ip-10-0-64-10 mdr: 2016-02-01 11:08:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332704] [to:12052467843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-11 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:36 ip-10-0-0-10 mdr: 2016-02-01 11:08:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701019] [to:13474993253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047279355] [to:+19172610519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601411] [to:19058363883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502817] [to:12096966467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782384128] [to:12703129141] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076550] [to:19092674232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317075924] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237288455] [to:+15102774106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-11 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125281288] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-64-11 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:37 ip-10-0-0-10 mdr: 2016-02-01 11:08:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743137867] [to:+16039450728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505019647] [to:+18506315244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649996255] [to:+12139927052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608719881] [to:+17603145847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133126720] [to:+18133208532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-64-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17085410150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-10 mdr: 2016-02-01 11:08:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:38 ip-10-0-0-11 mdr: 2016-02-01 11:08:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532541621] [to:+12536423261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707550788] [to:+13126311474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414399] [to:19175888172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133609864] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:39 ip-10-0-0-11 mdr: 2016-02-01 11:08:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-10 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:39 ip-10-0-64-11 mdr: 2016-02-01 11:08:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086866] [to:18132848791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809391] [to:19059065303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809572] [to:14786975018] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-10 mdr: 2016-02-01 11:08:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:40 ip-10-0-64-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:40 ip-10-0-0-11 mdr: 2016-02-01 11:08:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144636736] [to:+14388079688] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559041] [to:15199820824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133654321] [to:+18638554974] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-20 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940743341] [to:+447418320730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057600698] [to:+17053007417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036176095] [to:+15874049963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:41 ip-10-0-0-10 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-10 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029565018] [to:17024390148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196104493] [to:+14197316236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:41 ip-10-0-64-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14165298807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923909] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809572] [to:14786975018] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044025086] [to:+17745498340] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609384432] [to:+15162526349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220803] [to:12603014647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13212171967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:42 ip-10-0-0-11 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262349240] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:42 ip-10-0-64-10 mdr: 2016-02-01 11:08:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-10 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-10 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-10 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027689926] [to:+12408924122] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-10 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635893196] [to:+16096144837] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095190687] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-64-10 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-21 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202289] [to:+447577268007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:43 ip-10-0-0-11 mdr: 2016-02-01 11:08:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816036484] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019485] [to:19024100570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+13122756194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020101] [to:14383466436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407939] [to:12092578186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796131] [to:19374511725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697516822] [to:18069393309] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220502] [to:15183849215] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537223860] [to:+13478684528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:44 ip-10-0-64-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035063] [to:16132621272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035063] [to:16132621272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-11 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:44 ip-10-0-0-10 mdr: 2016-02-01 11:08:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032960] [to:17783174846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479842251] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14806664355] [to:16027059266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055276968] [to:+17059103166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305511] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034522] [to:17249490620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-21 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:45 ip-10-0-0-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-11 mdr: 2016-02-01 11:08:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789470] [to:16066276855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:45 ip-10-0-64-10 mdr: 2016-02-01 11:08:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324691056] [to:+14097771581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095162] [to:15145940452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784994486] [to:+14043900756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15208671000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-20 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337874] [to:+447470610016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064002420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:46 ip-10-0-64-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-11 mdr: 2016-02-01 11:08:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:46 ip-10-0-0-10 mdr: 2016-02-01 11:08:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-10 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167695827] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-11 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:13233316251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088643319] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412490847] [to:+15618197398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-10 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:47 ip-10-0-0-11 mdr: 2016-02-01 11:08:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:47 ip-10-0-64-11 mdr: 2016-02-01 11:08:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963118] [to:17653762904] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750349] [to:15099103959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304027367] [to:+15178615428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508598439] [to:+17784032263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716776] [to:12896979989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365778927] [to:+15103358240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-11 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:48 ip-10-0-64-11 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:48 ip-10-0-0-10 mdr: 2016-02-01 11:08:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886884] [to:+12347556807] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18733765131] [to:+18193075011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-11 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-11 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000482] [to:13025315717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-10 mdr: 2016-02-01 11:08:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:49 ip-10-0-64-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:49 ip-10-0-0-10 mdr: 2016-02-01 11:08:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:13433649575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:18328418222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485008] [to:16072262685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033684624] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407939] [to:12096497700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-10 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502819329] [to:+18503293238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603872129] [to:+16465648155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:50 ip-10-0-0-11 mdr: 2016-02-01 11:08:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123886758] [to:+12243104096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-11 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538047] [to:19377187793] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:50 ip-10-0-64-10 mdr: 2016-02-01 11:08:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253102] [to:13366577006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19164266104] [to:+14064042145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+18108528075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-10 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787545] [to:14842644207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-11 mdr: 2016-02-01 11:08:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:51 ip-10-0-0-10 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-10 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097020594] [to:17096995643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:51 ip-10-0-64-11 mdr: 2016-02-01 11:08:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942931] [to:18056219402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127577] [to:19893873983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:18328976231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132379] [to:12132623792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148060398] [to:+14387922790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508815339] [to:+14502330675] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-11 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:52 ip-10-0-0-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058474] [to:18192085399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-11 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:52 ip-10-0-64-10 mdr: 2016-02-01 11:08:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234539515] [to:+18572402015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045549295] [to:+19047587551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994596] [to:17097718483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-11 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345174120] [to:+13025955970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19103663603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:53 ip-10-0-64-10 mdr: 2016-02-01 11:08:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803059] [to:13152971965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:53 ip-10-0-0-10 mdr: 2016-02-01 11:08:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193073188] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652389228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139125787] [to:14505025878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158008] [to:50378814384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622511499] [to:+19018427784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097020594] [to:17096995643] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13028039774] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360132] [to:17202920094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-20 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208035] [to:+447548544753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515388028] [to:+17142943447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-10 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095162] [to:15145940452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:54 ip-10-0-64-11 mdr: 2016-02-01 11:08:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:54 ip-10-0-0-11 mdr: 2016-02-01 11:08:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372150741] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077383573] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476675630] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064488202] [to:+14692028046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241425] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235341914] [to:+19172720420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065802513] [to:+19172592622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365142310] [to:+19703159111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079491613] [to:+14072163514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475497872] [to:+17185041137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042956] [to:16138189336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372052382] [to:+17409101881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894935659] [to:+13219265797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635919] [to:18173745258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579751676] [to:+13479130059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099865021] [to:+17097019517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18033159556] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:17705979419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:55 ip-10-0-0-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-10 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:55 ip-10-0-64-11 mdr: 2016-02-01 11:08:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146035449] [to:+16467691245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148060398] [to:+14387922790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322411942] [to:+16095434819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885078] [to:19794847020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:12098179694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:56 ip-10-0-64-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546400915] [to:+14706734969] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-10 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:56 ip-10-0-0-11 mdr: 2016-02-01 11:08:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15058188849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894935659] [to:+13219265797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14789579714] [to:+14788455030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15612018684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001429] [to:17043522178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237288455] [to:+15102774106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326660674] [to:+19703159582] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-21 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703152718] [to:17062849122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326302626] [to:+15595001430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-11 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882262] [to:15306804821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:57 ip-10-0-64-10 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:57 ip-10-0-0-11 mdr: 2016-02-01 11:08:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622903] [to:18034908056] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:19082357944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-21 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234854] [to:+447729823648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-10 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044959] [to:14169992727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691603] [to:19515911317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987381] [to:15676869271] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987381] [to:15676869271] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:58 ip-10-0-0-11 mdr: 2016-02-01 11:08:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:58 ip-10-0-64-10 mdr: 2016-02-01 11:08:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043237165] [to:+14243360234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-21 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322261] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-21 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322261] [to:+447769275739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-11 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365648193] [to:+19706010386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-11 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248823325] [to:+14122301214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-10 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132813] [to:12049519703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734251] [to:14703306115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097020594] [to:17096995643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-0-10 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514449100] [to:+16122558280] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-11 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:08:59 ip-10-0-64-10 mdr: 2016-02-01 11:08:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075011] [to:18733765131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221952] [to:16063026362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:18656583095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324921] [to:17067281292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220668] [to:14053616061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-10 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653762904] [to:+13477963118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086308] [to:17578057337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:00 ip-10-0-0-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088024] [to:16364399081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-10 mdr: 2016-02-01 11:09:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154397156] [to:+14406587493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:00 ip-10-0-64-11 mdr: 2016-02-01 11:09:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416076] [to:15195321389] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-11 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-11 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039994816] [to:+12264552278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-11 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-11 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:01 ip-10-0-64-11 mdr: 2016-02-01 11:09:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512611409] [to:+12136946083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401199] [to:18042444631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:01 ip-10-0-0-10 mdr: 2016-02-01 11:09:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-10 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673313273] [to:+12679525181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404308] [to:16178177926] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621962] [to:12816178951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-10 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-10 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834604] [to:15402449589] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-10 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:02 ip-10-0-64-11 mdr: 2016-02-01 11:09:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834604] [to:15402449589] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:02 ip-10-0-0-11 mdr: 2016-02-01 11:09:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18045061263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053734] [to:17086916819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659495] [to:13479613198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-10 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-10 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332704] [to:12052467843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-10 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458214915] [to:+18456222278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:03 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:03 ip-10-0-0-11 mdr: 2016-02-01 11:09:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133445896] [to:+19142063866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-10 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145940452] [to:+14388095162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:12265051546] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942931] [to:18056219402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068980238] [to:+16474918147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332704] [to:12052467843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:04 ip-10-0-0-10 mdr: 2016-02-01 11:09:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:04 ip-10-0-64-11 mdr: 2016-02-01 11:09:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712258236] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782729342] [to:18032090277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183244003] [to:+14506390673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525489398] [to:+15103228094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046492856] [to:+16043050764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-20 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-11 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404170] [to:16173066298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802782996] [to:+13479190910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-20 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746261] [to:17722044501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-20 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-0-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026976749] [to:+12406857149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096966467] [to:+17077502817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-11 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613364145] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286476] [to:14173812290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:05 ip-10-0-64-10 mdr: 2016-02-01 11:09:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087921489] [to:+12085012698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15104854211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188535089] [to:18185779104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223074] [to:16268483708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-10 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614591112] [to:12192922137] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-10 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:06 ip-10-0-0-10 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575937930] [to:+17074031772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989540] [to:18507608677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:06 ip-10-0-64-11 mdr: 2016-02-01 11:09:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039994816] [to:+12264552278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784001338] [to:+16042653604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144624467] [to:+14388095330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158668546] [to:+12678676167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206408882] [to:+19703158657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246613] [to:19124295356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:07 ip-10-0-64-10 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675745767] [to:+12674862782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:07 ip-10-0-0-11 mdr: 2016-02-01 11:09:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305511] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713309336] [to:+14242527220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-11 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-10 mdr: 2016-02-01 11:09:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503896] [to:17317276271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:08 ip-10-0-64-10 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:08 ip-10-0-0-11 mdr: 2016-02-01 11:09:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275058105] [to:+17277679533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411163] [to:14373445799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750349] [to:15099103959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:17707550788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163435728] [to:+15168302337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19048992774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101881] [to:19372052382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:09 ip-10-0-64-10 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19702607392] [to:+19703006733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:09 ip-10-0-0-11 mdr: 2016-02-01 11:09:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176456713] [to:+19177248697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126293278] [to:+18127777221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169840967] [to:+19298006220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406248417] [to:+17407853104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750903] [to:13176986493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784001338] [to:+16042653604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784001338] [to:+16042653604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-0-10 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-10 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:10 ip-10-0-64-11 mdr: 2016-02-01 11:09:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-21 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447879025049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615438198] [to:+12138026880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896979989] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392394] [to:19075219688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:18482309359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407939] [to:12097947286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720420] [to:14235341914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-20 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447985256746] [to:+447520628477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:11 ip-10-0-0-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-11 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:11 ip-10-0-64-10 mdr: 2016-02-01 11:09:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476482654] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085473] [to:17174493103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970836] [to:14014978613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:18014276425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428621] [to:13184079568] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005092] [to:13342121674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502843155] [to:+15103137779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657052076] [to:+18653471749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:12 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124419] [to:16107632993] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251200] [to:12145182051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-21 mdr: 2016-02-01 11:09:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:12 ip-10-0-0-11 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:18602068513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852658005] [to:+14156887768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12165133728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036181796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-0-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105365] [to:+18046245766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-10 mdr: 2016-02-01 11:09:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:13 ip-10-0-64-11 mdr: 2016-02-01 11:09:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:17705979419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364300] [to:+16465472530] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152924715] [to:+19142793856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130577] [to:12545348438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893191] [to:17179844885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628229472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329823] [to:14047896893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-10 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:12267923909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-10 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016696727] [to:+13219265641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:14 ip-10-0-0-11 mdr: 2016-02-01 11:09:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:14 ip-10-0-64-11 mdr: 2016-02-01 11:09:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048399] [to:+16476912831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074238840] [to:+13479542747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-11 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-11 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900756] [to:16784994486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15144636736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198000373] [to:15639290133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-11 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:15132890733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-0-10 mdr: 2016-02-01 11:09:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267901978] [to:12265040409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267901978] [to:12265040409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:15 ip-10-0-64-10 mdr: 2016-02-01 11:09:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19026912260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235526043] [to:+17142943876] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034129] [to:12344141094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166930] [to:19194829253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364484] [to:+19172593672] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436210] [to:18128872510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-21 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447534446889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-10 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748562] [to:18594660319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:16 ip-10-0-0-10 mdr: 2016-02-01 11:09:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:16 ip-10-0-64-11 mdr: 2016-02-01 11:09:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-11 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202724406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:19087971873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462716910] [to:+19292201905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977968] [to:13472459052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065705339] [to:+13479805404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:17 ip-10-0-64-10 mdr: 2016-02-01 11:09:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:17 ip-10-0-0-11 mdr: 2016-02-01 11:09:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194920459] [to:+19199164629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18036623951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024303652] [to:+19027046345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313742] [to:18327744679] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034770227] [to:+16474946999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046330] [to:12893851681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14058262817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-10 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848405332] [to:+16026384964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-11 mdr: 2016-02-01 11:09:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:18 ip-10-0-64-10 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:18 ip-10-0-0-10 mdr: 2016-02-01 11:09:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:18438141279] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410722] [to:15192228980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000854] [to:13025690364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073947753] [to:+18133204450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023234488] [to:+16466320082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-10 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223074] [to:16268483708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-10 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:19 ip-10-0-64-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134533416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:19 ip-10-0-0-11 mdr: 2016-02-01 11:09:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507794665] [to:+17344365957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965640] [to:15859571137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:12252887961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:18572444955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433974568] [to:+12676076547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162310] [to:14072808522] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058223840] [to:+12312663035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192085399] [to:+19027058474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-10 mdr: 2016-02-01 11:09:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:20 ip-10-0-0-10 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:20 ip-10-0-64-11 mdr: 2016-02-01 11:09:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13173977868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193726] [to:13173977868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-20 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447411409468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176456713] [to:+19177248697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+16139094439] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893031] [to:18188276463] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065415632] [to:+18134301736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401738] [to:16262486404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187127281] [to:+16465137449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-21 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384988068] [to:+14318003552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:21 ip-10-0-64-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893460] [to:14846292550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-11 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082103492] [to:+12405457900] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] Adriel Shearwood: Hello good morning ... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:09:21 ip-10-0-0-10 mdr: 2016-02-01 11:09:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166036426] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198080761] [to:+18583604128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-10 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:22 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012897257] [to:+15865748585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:22 ip-10-0-0-10 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364703257] [to:+14243364271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026845060] [to:+19027043906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092063332] [to:+19252382662] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:13072538769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045869938] [to:+18046246225] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344972673] [to:+13479803977] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759034] [to:14174380380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12535458675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183358506] [to:+17277052465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212700617] [to:17087173971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067168782] [to:+15817041558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-64-11 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18065028969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:14075454042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-11 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17127908092] [to:+15152032232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:23 ip-10-0-0-10 mdr: 2016-02-01 11:09:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543802897] [to:+19543543462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-10 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:19043156586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-10 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157469269] [to:+19177731505] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173000411] [to:+17273629124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-10 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705348] [to:18185706484] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-10 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-11 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:24 ip-10-0-64-10 mdr: 2016-02-01 11:09:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412937] [to:18162139016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:24 ip-10-0-0-11 mdr: 2016-02-01 11:09:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184508961] [to:+13479977113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-21 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384041529] [to:+14387940473] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014707] [to:+13477737828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392337244] [to:+17027182961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413742414] [to:+14073374971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009178] [to:12064209041] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326533] [to:19794464425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:25 ip-10-0-64-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055519] [to:19036241741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-10 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:25 ip-10-0-0-11 mdr: 2016-02-01 11:09:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404308] [to:18572109303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958138] [to:14435150780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19103746013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-20 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921212920] [to:+447418328425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:15034969702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062849122] [to:+14703152718] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238615176] [to:+15625534645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:17133609864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586719] [to:14013405335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735179935] [to:+18622278144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-10 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:16156939642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370980] [to:13065966136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:26 ip-10-0-0-11 mdr: 2016-02-01 11:09:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311474] [to:14045108800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:26 ip-10-0-64-11 mdr: 2016-02-01 11:09:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:19162970810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292300351] [to:+19176635214] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173310077] [to:+18572190969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378171] [to:18637094731] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12262418115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-20 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-21 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332855] [to:+447555020510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-10 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046577337] [to:+19046946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603872129] [to:+16465648155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:27 ip-10-0-0-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:27 ip-10-0-64-11 mdr: 2016-02-01 11:09:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242397678] [to:14232770205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14128626350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311672] [to:17735364543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479748827] [to:18135256977] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197277278] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-21 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804004176] [to:+19172750149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415982] [to:15194290713] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300671] [to:12816852550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713309336] [to:+14242527220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797753] [to:18016046312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-10 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:14036164916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030573] [to:19024485713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-10 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:28 ip-10-0-64-11 mdr: 2016-02-01 11:09:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:28 ip-10-0-0-11 mdr: 2016-02-01 11:09:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-20 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048626418] [to:+17784030952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053927565] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:19097467830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-21 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217431] [to:+447546675679] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17073939139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139041880] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-64-11 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-21 mdr: 2016-02-01 11:09:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-10 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:29 ip-10-0-0-11 mdr: 2016-02-01 11:09:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955069] [to:16472681821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503165543] [to:+19046947238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122203538] [to:+12139359447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16364399081] [to:+19149088024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233316251] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605341900] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126290297] [to:+18326502986] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083414711] [to:+15084414047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-0-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319718441] [to:+16318127622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-11 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202083053] [to:+14806664326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:16318059792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123886758] [to:+12243104096] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:30 ip-10-0-64-10 mdr: 2016-02-01 11:09:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:14783572402] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082357944] [to:+13477974357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-10 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-10 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995690] [to:19512922787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:31 ip-10-0-0-11 mdr: 2016-02-01 11:09:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:31 ip-10-0-64-11 mdr: 2016-02-01 11:09:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-11 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948136] [to:19046808258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128822789] [to:+17037750896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383451357] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-10 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:32 ip-10-0-64-11 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577058] [to:18038572662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-20 mdr: 2016-02-01 11:09:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325218] [to:+447887053337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:32 ip-10-0-0-11 mdr: 2016-02-01 11:09:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097520202] [to:+12092602389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14354011755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404700544] [to:+13479568411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987410] [to:19179390879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407196] [to:+16474955001] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987410] [to:19179390879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384041529] [to:+14387940473] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987410] [to:19179390879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033314503] [to:+14695325581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080400130201] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002988] [to:13023443856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-11 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476675630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-11 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787545] [to:16106536914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:33 ip-10-0-0-10 mdr: 2016-02-01 11:09:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:33 ip-10-0-64-10 mdr: 2016-02-01 11:09:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522072568] [to:+16503008157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065966136] [to:+12362370980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169992727] [to:+16136044959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-10 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-21 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447867673534] [to:+447451220294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-64-11 mdr: 2016-02-01 11:09:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-10 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:34 ip-10-0-0-11 mdr: 2016-02-01 11:09:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366577006] [to:+14153253102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-11 mdr: 2016-02-01 11:09:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235563496] [to:+19282977004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415251029] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:35 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:35 ip-10-0-0-11 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733157488] [to:12013967362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002980] [to:14705999521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019526071] [to:+14017214258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077242836] [to:+14156538018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514911458] [to:+16466691017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048306173] [to:+19802097658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601650] [to:14025060785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191525] [to:17742833626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568006] [to:18564493717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173618734] [to:+14156308435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-11 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:36 ip-10-0-64-10 mdr: 2016-02-01 11:09:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:36 ip-10-0-0-11 mdr: 2016-02-01 11:09:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179379] [to:12406276306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038695681] [to:+15873231556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048306173] [to:+19802097658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026265485] [to:+17027182469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-10 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-20 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447770777606] [to:+447451214985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:37 ip-10-0-0-11 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:37 ip-10-0-64-10 mdr: 2016-02-01 11:09:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:15098443839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752914623] [to:+15754497115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479800358] [to:+16474954408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613954] [to:16013341662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934356] [to:18076335293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008028] [to:16474535648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:15873579871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177409389] [to:+15175691522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417309080] [to:+15419182046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155153] [to:15187066183] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:38 ip-10-0-64-10 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-10 mdr: 2016-02-01 11:09:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:38 ip-10-0-0-11 mdr: 2016-02-01 11:09:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-20 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447808077042] [to:+447451216986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092263032] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298888] [to:16612469761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479422330] [to:+19093405838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096411511] [to:+17097005196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175370310] [to:13179108187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053218098] [to:+17053028837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-10 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:39 ip-10-0-64-11 mdr: 2016-02-01 11:09:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:39 ip-10-0-0-11 mdr: 2016-02-01 11:09:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920788] [to:15174890318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452914] [to:13362633699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:18507977319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018786077] [to:+19733595294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14352192242] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-10 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478922907] [to:+16474916412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178162101] [to:15863447820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997185] [to:17169975095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096995643] [to:+17097020594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:40 ip-10-0-64-11 mdr: 2016-02-01 11:09:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:40 ip-10-0-0-11 mdr: 2016-02-01 11:09:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:13474440278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642008011] [to:+13214062787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012698] [to:12087921489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995509] [to:18286061218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-10 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136582774] [to:+14152377326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390673] [to:14183244003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-10 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:41 ip-10-0-64-11 mdr: 2016-02-01 11:09:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:41 ip-10-0-0-11 mdr: 2016-02-01 11:09:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788477404] [to:+16503007616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495744] [to:14044381605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-11 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434710] [to:17322895241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:17249296153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066998976] [to:+14706730660] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406803773] [to:+19492814596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:12057372189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803059] [to:13152971965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-11 mdr: 2016-02-01 11:09:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:42 ip-10-0-0-10 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:42 ip-10-0-64-11 mdr: 2016-02-01 11:09:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464625688] [to:+17133894411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184508961] [to:+13479977113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-20 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447454000169] [to:+447451228935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985724] [to:13132298324] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-11 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-11 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:43 ip-10-0-0-10 mdr: 2016-02-01 11:09:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132813] [to:12049519703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:43 ip-10-0-64-10 mdr: 2016-02-01 11:09:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734251] [to:17703162755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13397884170] [to:+15089166209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-10 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088059823] [to:+12085010677] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-10 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084726225] [to:+19512995997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094188843] [to:+15103131839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:44 ip-10-0-64-11 mdr: 2016-02-01 11:09:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:44 ip-10-0-0-10 mdr: 2016-02-01 11:09:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:17863585470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17074867332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:13183448882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821958] [to:15854513818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:17133969640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479422330] [to:+19093405838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:45 ip-10-0-0-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:19702003239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-11 mdr: 2016-02-01 11:09:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:45 ip-10-0-64-10 mdr: 2016-02-01 11:09:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470861] [to:13109715481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068042016] [to:15068884669] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16399998161] [to:+13069927681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294121612] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-11 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-10 mdr: 2016-02-01 11:09:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:46 ip-10-0-0-10 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875962413] [to:+15874050147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102254569] [to:+13475088429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-10 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:46 ip-10-0-64-11 mdr: 2016-02-01 11:09:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-10 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058489] [to:12687705491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623381821] [to:+14049002827] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124297] [to:15617138793] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:47 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095417302] [to:+17097022799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262607735] [to:+16269882643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:47 ip-10-0-64-11 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202563796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665916] [to:14048896314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154090] [to:+15109480695] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378171] [to:18637094731] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-21 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13522553410] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449905] [to:17316109658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-11 mdr: 2016-02-01 11:09:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666515] [to:18055380918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:48 ip-10-0-0-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046705233] [to:+18638555117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-11 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594660319] [to:+17604748562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:48 ip-10-0-64-10 mdr: 2016-02-01 11:09:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867689198] [to:+19543543811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:49 ip-10-0-0-11 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-11 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:49 ip-10-0-64-10 mdr: 2016-02-01 11:09:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085511] [to:12163249552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258724] [to:16186159540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065415632] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-20 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005469] [to:18159144915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883855] [to:15307395059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-10 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-20 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875783503] [to:+447520670739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-0-10 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769608] [to:19372101121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-11 mdr: 2016-02-01 11:09:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805267] [to:18606265442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:50 ip-10-0-64-10 mdr: 2016-02-01 11:09:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:14357901509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175888] [to:19192227229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-11 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15414089497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:17327893986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045176655] [to:+19047587847] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-11 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:51 ip-10-0-0-10 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394796] [to:14808861781] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:51 ip-10-0-64-10 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735564] [to:17709122012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223074] [to:18586342665] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479422330] [to:+19093405838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053616061] [to:+18139220668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036241741] [to:+14692055519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833157] [to:15133208285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12083394005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240575] [to:19195279700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-10 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-0-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713309336] [to:+14242527220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-11 mdr: 2016-02-01 11:09:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:52 ip-10-0-64-10 mdr: 2016-02-01 11:09:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046705233] [to:+18638555117] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206805] [to:+13477416267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011584267296963] [to:+14073372925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378448053] [to:+17277679599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12768700153] [to:+13476677111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:53 ip-10-0-0-11 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:53 ip-10-0-64-10 mdr: 2016-02-01 11:09:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040602] [to:+16513335609] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578057337] [to:+13475086308] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102794841] [to:+12026015056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293538599] [to:+13475186323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421616] [to:15199022477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:16477388731] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188562763] [to:19198889696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106654735] [to:+14028921088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214258] [to:14019526071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146588] [to:19037300135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-11 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-0-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691367] [to:12602258893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-10 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326762] [to:17132918943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:54 ip-10-0-64-11 mdr: 2016-02-01 11:09:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009131] [to:18327399785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106654735] [to:+14028921088] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17784005829] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189448828] [to:+15182908720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502559211] [to:+16474951414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262700176] [to:+12264555694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596936021] [to:+13479373310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156939642] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028173641] [to:+19027046462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603014647] [to:+12602220803] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525489304] [to:+15102547960] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432461639] [to:+17315744398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033314503] [to:+14695325581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400130202] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187712503] [to:+15104476417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166047231] [to:+17162791631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146244139] [to:+12138613753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075912320] [to:+13219996705] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039994816] [to:+12264552278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106654735] [to:+14028921088] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311672] [to:17735364543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046833761] [to:+17572969754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-10 mdr: 2016-02-01 11:09:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:55 ip-10-0-0-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008276] [to:18156314455] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-10 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037529] [to:16307880583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:55 ip-10-0-64-11 mdr: 2016-02-01 11:09:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145847] [to:17608719881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419920] [to:15082325464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185991576] [to:+18724008819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17654070010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-11 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:56 ip-10-0-64-11 mdr: 2016-02-01 11:09:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:56 ip-10-0-0-10 mdr: 2016-02-01 11:09:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055865839] [to:+12135298456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205690354] [to:+13034987952] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:19054072337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:57 ip-10-0-0-10 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145328599] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406276306] [to:+12027179379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:57 ip-10-0-64-11 mdr: 2016-02-01 11:09:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845488449] [to:+16107138898] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264551157] [to:15192772285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:58 ip-10-0-0-11 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372052382] [to:+17409101881] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-10 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:58 ip-10-0-0-11 mdr: 2016-02-01 11:09:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185389138] [to:+14073371001] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:58 ip-10-0-64-11 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049963] [to:14036176095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:58 ip-10-0-0-20 mdr: 2016-02-01 11:09:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253102] [to:13366577006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077937455] [to:+16513337622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783962752] [to:+12135295981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327744679] [to:+18506313742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011966597106102] [to:+14158907880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174354065] [to:+19177229726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403213325] [to:+15204336132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366213] [to:12765947306] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068009005] [to:19025794532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366213] [to:12765947306] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-64-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19209032554] [to:+19202158482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852084175] [to:+17014122390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315159214] [to:+14088683507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-11 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:09:59 ip-10-0-0-10 mdr: 2016-02-01 11:09:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15406212855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093135409] [to:+15612319612] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532985766] [to:+14073371857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264412] [to:18285145827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095330] [to:15144624467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862649] [to:+16463490167] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:00 ip-10-0-64-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245186012] [to:+18729996768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-11 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236506941] [to:+13478683708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:00 ip-10-0-0-10 mdr: 2016-02-01 11:10:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532985766] [to:+14073371857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269230052] [to:+12262408420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576463] [to:15412368519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:17272713208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479618849] [to:+16474912654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522072568] [to:+16503008157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15204041616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-0-10 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:01 ip-10-0-64-11 mdr: 2016-02-01 11:10:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14383451357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-11 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-10 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-10 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:02 ip-10-0-64-11 mdr: 2016-02-01 11:10:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:447520620935] [to:18764721888] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:02 ip-10-0-0-11 mdr: 2016-02-01 11:10:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-10 mdr: 2016-02-01 11:10:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-10 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-11 mdr: 2016-02-01 11:10:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-10 mdr: 2016-02-01 11:10:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:03 ip-10-0-0-10 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144624467] [to:+14388095330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-11 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-11 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:03 ip-10-0-64-10 mdr: 2016-02-01 11:10:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470035] [to:18655826536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-11 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:18317069406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-11 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136005697] [to:+16136048898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-0-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729476069] [to:12819086266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:04 ip-10-0-64-10 mdr: 2016-02-01 11:10:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18033684624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063812861] [to:+13064003105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-21 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156401512] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195881114] [to:+18192011020] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282448967] [to:+13126311917] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314069815] [to:+13614450303] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619932095] [to:+16612287943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378448053] [to:+17277679599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:19059224396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890201] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178501979] [to:+13479977545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:05 ip-10-0-0-10 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866161419] [to:+13053405890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:05 ip-10-0-64-11 mdr: 2016-02-01 11:10:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+18108528075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-11 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890202] -Feb 1 11:10:06 ip-10-0-0-20 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-11 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-11 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:06 ip-10-0-0-10 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017219376] [to:+17012892696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-10 mdr: 2016-02-01 11:10:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:06 ip-10-0-64-11 mdr: 2016-02-01 11:10:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139262959] [to:+17604743512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-21 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447951548439] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15185368226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045909645] [to:+14243361740] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033F0201] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307202009] [to:+12342312846] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063591793] [to:+12342227497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338555] [to:+16475569061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-64-10 mdr: 2016-02-01 11:10:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-11 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16479842251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:07 ip-10-0-0-10 mdr: 2016-02-01 11:10:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327744679] [to:+18506313742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-20 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673834] [to:+447939056991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-11 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095369319] [to:+17636346693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-10 mdr: 2016-02-01 11:10:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:08 ip-10-0-64-10 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:08 ip-10-0-0-11 mdr: 2016-02-01 11:10:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434965824] [to:+19172833937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606318205] [to:+14256789384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069909] [to:19105569957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614591112] [to:14056833517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609909746] [to:+13479808250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608307067] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659695996] [to:+13475807505] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-10 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:09 ip-10-0-64-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041906] [to:15066080971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-10 mdr: 2016-02-01 11:10:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178402600] [to:+17607014628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:09 ip-10-0-0-11 mdr: 2016-02-01 11:10:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:13474529564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197192247] [to:+19027031529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742816635] [to:+12139296356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-21 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046462] [to:19028173641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613284149] [to:19258909278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946811] [to:19046577337] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068883634] [to:+16139098566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324013360] [to:+12815957550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:10 ip-10-0-0-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137778130] [to:+18609710345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349734] [to:18649090926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874055546] [to:14039195511] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-10 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073508028] [to:+15103136155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:10 ip-10-0-64-11 mdr: 2016-02-01 11:10:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069601776] [to:+13069930241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033F0202] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022754] [to:+16418632137] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262413387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:15042587791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144792334] [to:+19529778850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:11 ip-10-0-0-11 mdr: 2016-02-01 11:10:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:11 ip-10-0-64-10 mdr: 2016-02-01 11:10:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967679] [to:18303926859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576463] [to:15412368519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476675630] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163000259] [to:+12135296951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068759537] [to:+15068019637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:12 ip-10-0-0-10 mdr: 2016-02-01 11:10:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:12 ip-10-0-64-11 mdr: 2016-02-01 11:10:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:19542137444] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417354091] [to:+15415392535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202920094] [to:+15094360132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17805074903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128830471] [to:+13126311276] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853078458] [to:+15852824394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106536914] [to:+13479787545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-11 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675152897] [to:+12679525664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:13 ip-10-0-64-10 mdr: 2016-02-01 11:10:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012100539] [to:+17029960317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:13 ip-10-0-0-10 mdr: 2016-02-01 11:10:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17175909035] [to:14802089806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-10 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-11 mdr: 2016-02-01 11:10:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315330] [to:19378299028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-10 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498529] [to:15598059900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-64-10 mdr: 2016-02-01 11:10:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19209032554] [to:+19202158482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:14 ip-10-0-0-11 mdr: 2016-02-01 11:10:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404170] [to:16173066298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-10 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157977] [to:18066622008] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-21 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447828999265] [to:+447418323585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079511430] [to:+18572190737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-10 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517964336] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-10 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555694] [to:12262700176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068759537] [to:+15068019637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:15 ip-10-0-0-11 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-10 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12262013048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-11 mdr: 2016-02-01 11:10:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:15 ip-10-0-64-10 mdr: 2016-02-01 11:10:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188622] [to:13477548985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:17722227080] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190111] [to:15053221895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889733] [to:13175137664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406362] [to:19136834345] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868286] [to:19712038853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026912260] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087921489] [to:+12085012698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262413387] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-64-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032198231] [to:17196616788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-11 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464625688] [to:+17133894411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:16 ip-10-0-0-10 mdr: 2016-02-01 11:10:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17627280071] [to:+19027004352] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235563496] [to:+19282977004] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999375] [to:16472367463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:12245186012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035143] [to:18194730399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-10 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-11 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:17 ip-10-0-64-10 mdr: 2016-02-01 11:10:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:17 ip-10-0-0-20 mdr: 2016-02-01 11:10:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447830879497] [to:+447451230842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-11 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102834] [to:19089435156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158909438] [to:19048024561] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13033508877] [to:+12134789693] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099961] [to:17739936610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912440] [to:15062297878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470035] [to:18653846223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134912028] [to:+15134567683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108052594] [to:+13369382050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:18 ip-10-0-64-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-10 mdr: 2016-02-01 11:10:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:18 ip-10-0-0-11 mdr: 2016-02-01 11:10:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062048624] [to:+19148988160] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852247561] [to:+14153404745] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15099646061] [to:+15097397509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432897979] [to:+15169269229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134491206] [to:+12148567440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083414711] [to:+15084414047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15873787468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663098] [to:12313351186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003290302] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003290301] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799301] [to:19072445056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-11 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:19 ip-10-0-64-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:19 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137822018] [to:+12482068388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003290303] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248843588] [to:+17249939081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159582] [to:18326660674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-11 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-11 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:20 ip-10-0-64-10 mdr: 2016-02-01 11:10:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094057552] [to:+12099923532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:20 ip-10-0-0-11 mdr: 2016-02-01 11:10:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183849215] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746358] [to:13152251945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084622202] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17088256564] [to:+13199835047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692005499] [to:18084645933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796923127] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-10 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12507318176] [to:+17786549440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:21 ip-10-0-64-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702998655] [to:+19148988507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:21 ip-10-0-0-11 mdr: 2016-02-01 11:10:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138121] [to:16035628899] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17165238720] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-11 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-11 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:22 ip-10-0-0-10 mdr: 2016-02-01 11:10:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:22 ip-10-0-64-10 mdr: 2016-02-01 11:10:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546526983] [to:13365211379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042924739] [to:+18046244510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D70201] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042924739] [to:+18046244510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D70202] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735668] [to:12036288413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568411] [to:15404700544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708821018] [to:+16784342890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13233601138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083414711] [to:+15084414047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:23 ip-10-0-0-10 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173812290] [to:+19142286476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-10 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699722] [to:12029105420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012698] [to:12087921489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:23 ip-10-0-64-11 mdr: 2016-02-01 11:10:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565302297] [to:+19177374380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565302297] [to:+19177374380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958138] [to:14435150780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739564] [to:+16042651693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-20 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392260766] [to:+17329869517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361527] [to:13852163335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086913746] [to:+17739433687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974357] [to:19082357944] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184079568] [to:+13867428621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065312461] [to:+12048179630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534356] [to:19498133017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-11 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092800537] [to:+16477997300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:24 ip-10-0-0-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:24 ip-10-0-64-10 mdr: 2016-02-01 11:10:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500248] [to:15187743860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175074658] [to:+19142795528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845312024] [to:+14844124316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:19053927565] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729406961] [to:+17723601672] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12624704197] [to:+14132736961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730247] [to:16018317393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748147] [to:18632410241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497276] [to:12294741638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-10 mdr: 2016-02-01 11:10:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448074] [to:12283657679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:25 ip-10-0-0-10 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18146029430] [to:+17205852202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:25 ip-10-0-64-11 mdr: 2016-02-01 11:10:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634435] [to:14699782274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677703] [to:18144391701] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148216] [to:+15082711281] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-11 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:26 ip-10-0-64-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-10 mdr: 2016-02-01 11:10:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:26 ip-10-0-0-11 mdr: 2016-02-01 11:10:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706050548] [to:+19725977208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463927582] [to:+17817863384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+16139094439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:16138595949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066381200] [to:+14064042730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194829253] [to:+19199166930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-11 mdr: 2016-02-01 11:10:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:27 ip-10-0-0-10 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:27 ip-10-0-64-11 mdr: 2016-02-01 11:10:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619320467] [to:+19252397684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12168203452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784854] [to:12602013170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784854] [to:12602013170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372591] [to:15803646879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240575] [to:19195279700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786636148] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256412] [to:18633262894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-20 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447411409468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-10 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:15875107256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:28 ip-10-0-0-10 mdr: 2016-02-01 11:10:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163386913] [to:+15703974264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:28 ip-10-0-64-11 mdr: 2016-02-01 11:10:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538018] [to:17077242836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-21 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-21 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447549569849] [to:+447451206691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-11 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743140029] [to:+17749921701] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707185] [to:13045315577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642099] [to:19415872209] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340566] [to:14349961449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-11 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:29 ip-10-0-64-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243948926] [to:+17475001138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:29 ip-10-0-0-10 mdr: 2016-02-01 11:10:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086913746] [to:+17739433687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684159] [to:19376949203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563466612] [to:+15124007062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163249552] [to:+17025085511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134533416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-10 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-21 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447764568511] [to:+447451207440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:17809350690] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-20 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447806095884] [to:+447520629899] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:30 ip-10-0-0-10 mdr: 2016-02-01 11:10:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:30 ip-10-0-64-11 mdr: 2016-02-01 11:10:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854513818] [to:+15852821958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537132] [to:12144669203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109045694] [to:+13125099864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132649410] [to:+15133860375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375092672] [to:+12162393747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059207367] [to:+17059102224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102834] [to:19089435156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-10 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:31 ip-10-0-64-11 mdr: 2016-02-01 11:10:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:31 ip-10-0-0-11 mdr: 2016-02-01 11:10:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537776026] [to:+12533361832] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:18502843155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771892] [to:14093383499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17707221459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018601739] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443856] [to:+13024002988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034727] [to:16179837600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13233595361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069909] [to:19105569957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373424] [to:13214398941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404215972] [to:+12406857347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048095696] [to:+12048001059] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409798920] [to:+14243364095] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565203411] [to:+18133087918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:32 ip-10-0-64-11 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:32 ip-10-0-0-11 mdr: 2016-02-01 11:10:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649090926] [to:+12136349734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407330] [to:12069811857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076943509] [to:+19599999401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157469269] [to:+19177731505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:14502881851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:33 ip-10-0-64-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-11 mdr: 2016-02-01 11:10:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188622] [to:13477548985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:33 ip-10-0-0-10 mdr: 2016-02-01 11:10:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:17605341900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849084641] [to:+17206232827] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138542447] [to:+15617051916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257763] [to:15418708500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046577337] [to:+19046946811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12262416285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:34 ip-10-0-0-10 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049098746] [to:+18046245700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:34 ip-10-0-64-11 mdr: 2016-02-01 11:10:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:19057465899] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-11 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384041529] [to:+14387940473] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017321] [to:13047856368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13474320212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087920] [to:13154361346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845826808] [to:14843624765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-11 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077389282] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13343330341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030566] [to:+16139092039] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-11 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039260] [to:13065263861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:35 ip-10-0-64-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:35 ip-10-0-0-10 mdr: 2016-02-01 11:10:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-11 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476675630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-21 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710239125] [to:+447451207440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366577006] [to:+14153253102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-10 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183911425] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777028] [to:14197051972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018626] [to:19023290999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195880023] [to:+14387922237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:14156105110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:36 ip-10-0-0-10 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479488909] [to:+16465641750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:36 ip-10-0-64-11 mdr: 2016-02-01 11:10:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477610874] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135990] [to:18168253430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824394] [to:15853078458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024973940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802089806] [to:+17175909035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722134307] [to:16183351715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585821] [to:15175888414] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-11 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077706] [to:12403380952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-10 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19012337442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:37 ip-10-0-0-11 mdr: 2016-02-01 11:10:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:37 ip-10-0-64-10 mdr: 2016-02-01 11:10:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565302297] [to:+19177374380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-10 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206820679] [to:+12137978314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-10 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144225] [to:15134623660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-10 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102095923] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-10 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755679] [to:18025829314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-11 mdr: 2016-02-01 11:10:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:38 ip-10-0-64-10 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:38 ip-10-0-0-11 mdr: 2016-02-01 11:10:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-10 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421616] [to:15199022477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067679] [to:18436151271] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:39 ip-10-0-64-11 mdr: 2016-02-01 11:10:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017060296] [to:+12136946133] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486608] [to:17176665184] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-10 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:39 ip-10-0-0-11 mdr: 2016-02-01 11:10:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614915633] [to:15618913338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:15752688237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608719881] [to:+17603145847] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439353] [to:15404485266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188753949] [to:18184043427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730660] [to:17066998976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076213892] [to:+16079655988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036176095] [to:+15874049963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-20 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153728451] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-11 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273206741] [to:+19415255342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:40 ip-10-0-64-10 mdr: 2016-02-01 11:10:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:40 ip-10-0-0-11 mdr: 2016-02-01 11:10:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849353] [to:12526196095] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743605405] [to:+18572195907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-21 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-20 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447555020510] [to:+447418332855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-20 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457646490] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188210436] [to:+18126709055] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605197010] [to:+14693537945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731194] [to:16782580020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153601844] [to:+15154438476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-64-11 mdr: 2016-02-01 11:10:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999328] [to:14169394091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-11 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048229078] [to:+16785868047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:41 ip-10-0-0-10 mdr: 2016-02-01 11:10:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:18646490434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217142] [to:19073786676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361832] [to:12537776026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038780] [to:15068756653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940051] [to:18123193425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807101] [to:13153989359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735474172] [to:19738511046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899791] [to:12039216895] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653846223] [to:+18653470035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-10 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:42 ip-10-0-0-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793079] [to:12262353454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:42 ip-10-0-64-11 mdr: 2016-02-01 11:10:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837283] [to:16033124162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777028] [to:14197051972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056089] [to:19024018206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147635257] [to:13145189201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896754628] [to:+16475039712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190737] [to:12079511430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995727] [to:16475309176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750761] [to:+19715128760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459599] [to:14199612327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13472328671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393053] [to:14406675674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-11 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-11 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:43 ip-10-0-0-10 mdr: 2016-02-01 11:10:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074763554] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:43 ip-10-0-64-10 mdr: 2016-02-01 11:10:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336338] [to:15029024105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148250882] [to:+14387922431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703318501] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235799661] [to:+15103131428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-21 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708783522] [to:+16784338373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605197010] [to:+14693537945] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:19044130323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188559] [to:19174205426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237883153] [to:+15624736893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869860197] [to:+13867423381] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16055154728] [to:+16058887912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15097397453] [to:15092512206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155324401] [to:+18508950377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146907367] [to:+14144005720] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-10 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-10 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:44 ip-10-0-64-11 mdr: 2016-02-01 11:10:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:44 ip-10-0-0-11 mdr: 2016-02-01 11:10:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14699782274] [to:+19404634435] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19403374507] [to:+19032130535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043136] [to:16134533416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-10 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-10 mdr: 2016-02-01 11:10:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17807730490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:45 ip-10-0-64-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:45 ip-10-0-0-11 mdr: 2016-02-01 11:10:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652279096] [to:+18653470273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035438] [to:18199302907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360132] [to:17202920094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058363883] [to:+12894601411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479093157] [to:+13479862153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077575834] [to:+19039004944] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479842251] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603718] [to:19197095515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:46 ip-10-0-0-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787545] [to:16106536914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:46 ip-10-0-64-10 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975949] [to:15204605952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005404] [to:12042715170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815611] [to:19178802674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097823854] [to:+12133550267] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148567264] [to:12145768009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19162437681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517964336] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568239] [to:18042057555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032192204] [to:15415300412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712499715] [to:+12029991541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-10 mdr: 2016-02-01 11:10:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:47 ip-10-0-0-10 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:47 ip-10-0-64-11 mdr: 2016-02-01 11:10:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703749498] [to:+13145488536] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107938] [to:18318695480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327642925] [to:+14706731635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383466436] [to:+15817020101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-20 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670739] [to:+447875783503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040338] [to:+18582568981] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027030573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-11 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-64-10 mdr: 2016-02-01 11:10:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874055546] [to:14039195511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:48 ip-10-0-0-10 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034648394] [to:+15873299749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404878054] [to:+12026015612] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477561977] [to:17737393244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995727] [to:14134550853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159046] [to:13373715942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CB0202] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159046] [to:13373715942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-10 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058163158] [to:+19172668011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616702831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-10 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-20 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:49 ip-10-0-0-10 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154589] [to:+17726175856] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:49 ip-10-0-64-11 mdr: 2016-02-01 11:10:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:12674071467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13472328671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372101121] [to:+14242769608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250763] [to:17174141455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088024] [to:16364399081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-10 mdr: 2016-02-01 11:10:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063333924] [to:+15068036557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:50 ip-10-0-64-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559099] [to:19563783239] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:50 ip-10-0-0-11 mdr: 2016-02-01 11:10:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702735] [to:17407513485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036143604] [to:+14388042401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486909] [to:13079967773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522582461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018743313] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783138251] [to:+16418437912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793079] [to:12262353454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-11 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036192194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666068] [to:13012322004] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:51 ip-10-0-0-10 mdr: 2016-02-01 11:10:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:51 ip-10-0-64-11 mdr: 2016-02-01 11:10:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312997051] [to:+15163314785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676237] [to:17577297298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198095041] [to:+18193035129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:12135001067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142074869] [to:+12626481189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038A0201] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142074869] [to:+12626481189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038A0202] -Feb 1 11:10:52 ip-10-0-0-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453617] [to:14438446989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-11 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603055806] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:52 ip-10-0-64-10 mdr: 2016-02-01 11:10:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204476094] [to:+15204336478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134912028] [to:+15134567683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706240153] [to:+16784342703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:15874474713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-0-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145815] [to:14422459755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-11 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999094] [to:18624143512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609313254] [to:+19177086890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:53 ip-10-0-64-10 mdr: 2016-02-01 11:10:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833658] [to:17022018705] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012487671] [to:+17015872351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697342378] [to:+14692028216] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038018052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038018052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025175937] [to:+16157779040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015869] [to:13865852128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:54 ip-10-0-64-10 mdr: 2016-02-01 11:10:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:54 ip-10-0-0-11 mdr: 2016-02-01 11:10:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16177084809] [to:+16177065938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106899802] [to:+12133756282] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142605933] [to:+14387922060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645545912] [to:+19172834340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133445896] [to:+19142063866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013313349] [to:+13017786256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212171967] [to:+14692057146] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324728683] [to:+18328334412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658949269] [to:+19492453897] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12408382876] [to:+13012885260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003CB0201] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165798841] [to:+14242867321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179108187] [to:+13175370310] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225318] [to:14797474432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225318] [to:14797474432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993036] [to:17164908720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083290] [to:15025534883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375933] [to:12488182949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-20 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-20 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-21 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249745] [to:+447999815339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-11 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19146897163] [to:14698678725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:55 ip-10-0-0-10 mdr: 2016-02-01 11:10:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:55 ip-10-0-64-10 mdr: 2016-02-01 11:10:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12628088355] [to:+16167948124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159089022] [to:+14157879033] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003720201] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12525584844] [to:19197252445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-21 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463008] [to:18324176370] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19855100348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:56 ip-10-0-0-11 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191525] [to:17742833626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-11 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844828542] [to:+17063959468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336983] [to:15204605938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597362075] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:56 ip-10-0-64-10 mdr: 2016-02-01 11:10:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626689252] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084645933] [to:+16692005499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788009776] [to:+16304892973] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428165] [to:19044709077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016421543] [to:+12405732485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057960896] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-11 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849861934] [to:14847534316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-21 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447773355590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:57 ip-10-0-0-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774269] [to:18572444276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:57 ip-10-0-64-10 mdr: 2016-02-01 11:10:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-11 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103005] [to:14144354370] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-11 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-10 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-10 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-11 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702998612] [to:+16139122924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-20 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-10 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263448875] [to:+19027031444] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-11 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-11 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13146964364] [to:+13145488416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-0-10 mdr: 2016-02-01 11:10:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-10 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:58 ip-10-0-64-10 mdr: 2016-02-01 11:10:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139098258] [to:16133304980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298790] [to:18432712007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184040] [to:13524261959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086205999] [to:17542141372] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184040] [to:13524261959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383449] [to:17047546005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17067285996] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857643603] [to:+12693366273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158171186] [to:+19172750580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403835521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:14425009009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-11 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-64-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-10 mdr: 2016-02-01 11:10:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:10:59 ip-10-0-0-11 mdr: 2016-02-01 11:10:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-10 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-11 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-11 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13104635365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:00 ip-10-0-64-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808861781] [to:+14804394796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:00 ip-10-0-0-10 mdr: 2016-02-01 11:11:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018682995] [to:+12135878646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500956] [to:13363012603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677135004] [to:+16136044017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335194] [to:16093358592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773574] [to:+15874101796] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153299104] [to:+13217309392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-11 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336510] [to:17182001450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202486067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:01 ip-10-0-0-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408776254] [to:+17408798355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:01 ip-10-0-64-10 mdr: 2016-02-01 11:11:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178261075] [to:+15612318722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486608] [to:17176665184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016925243] [to:+14016489925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035143] [to:18194730399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:12402647966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328025406] [to:17132566795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154828] [to:+17474006434] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003720202] -Feb 1 11:11:02 ip-10-0-64-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:02 ip-10-0-64-10 mdr: 2016-02-01 11:11:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-20 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:02 ip-10-0-0-11 mdr: 2016-02-01 11:11:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452269] [to:12079749402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049963] [to:14036176095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328781232] [to:+18639491238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379164] [to:17575758005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262363127] [to:+12262410626] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:03 ip-10-0-0-10 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611011] [to:12892704750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-10 mdr: 2016-02-01 11:11:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143845817] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:03 ip-10-0-64-11 mdr: 2016-02-01 11:11:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221030] [to:14847197736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786291743] [to:+14043900508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347546] [to:12485216648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347546] [to:12485216648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262363127] [to:+12262410626] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+18108528075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319034867] [to:+12679525339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328580] [to:13155423998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094868130] [to:+14502325412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223656] [to:17606766126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809205321] [to:+19726665581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:04 ip-10-0-0-11 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-11 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:04 ip-10-0-64-10 mdr: 2016-02-01 11:11:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173745258] [to:+18173635919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262363127] [to:+12262410626] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162069399] [to:+16477999177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809205321] [to:+19726665581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:17022658155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166400714] [to:+12167776786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572406107] [to:+12405538727] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879921] [to:17204122664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-11 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153728451] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:05 ip-10-0-64-10 mdr: 2016-02-01 11:11:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988167] [to:19292482933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:05 ip-10-0-0-10 mdr: 2016-02-01 11:11:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361389] [to:18438581684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092895035] [to:+14088725919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179872924] [to:+15047027250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809205321] [to:+19726665581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-11 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732663] [to:14133499023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17022018991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+14088778415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606685498] [to:+12604077170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-11 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176631266] [to:+18729995785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:06 ip-10-0-64-10 mdr: 2016-02-01 11:11:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154361346] [to:+13475087920] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047352973] [to:+19172833260] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411171] [to:12034355422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508572363] [to:+17784030979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677703] [to:18144391701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:07 ip-10-0-0-10 mdr: 2016-02-01 11:11:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-10 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:07 ip-10-0-64-11 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674080999] [to:+18084681029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-21 mdr: 2016-02-01 11:11:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404535152] [to:+14406587195] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122161143] [to:+15129523198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169394091] [to:+16477999328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603718] [to:19199221360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541773] [to:16042602976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-10 mdr: 2016-02-01 11:11:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:08 ip-10-0-64-11 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:08 ip-10-0-0-10 mdr: 2016-02-01 11:11:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179567] [to:12029074204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286476] [to:14173812290] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475287773] [to:+14259845653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168369819] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644259017] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022896] [to:16124582231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16034774307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-64-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17012487671] [to:+17015872351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-10 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:09 ip-10-0-0-11 mdr: 2016-02-01 11:11:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018626] [to:19022983763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:12084254285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673222627] [to:+12674377094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083135773] [to:+12627775041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:10 ip-10-0-0-10 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:10 ip-10-0-64-11 mdr: 2016-02-01 11:11:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674080999] [to:+18084681029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525037735] [to:+18133086007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024782467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088970264] [to:+15094360062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010386] [to:13365648193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024018206] [to:+19027056089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793079] [to:12262353454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473282292] [to:+13477989413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-11 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:11 ip-10-0-64-11 mdr: 2016-02-01 11:11:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:11 ip-10-0-0-10 mdr: 2016-02-01 11:11:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032791059] [to:+19039004572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647605123] [to:+17866079892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317304168] [to:+12313778176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-11 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:12 ip-10-0-0-10 mdr: 2016-02-01 11:11:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:12 ip-10-0-64-11 mdr: 2016-02-01 11:11:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-11 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-11 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-11 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-20 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326423] [to:+447834687641] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-21 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-20 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326423] [to:+447834687641] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-11 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182908458] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-10 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147173313] [to:+16149965901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:13 ip-10-0-64-11 mdr: 2016-02-01 11:11:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-11 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:13 ip-10-0-0-10 mdr: 2016-02-01 11:11:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312418432] [to:+12019480019] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102095923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381533] [to:13108696607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381533] [to:13108696607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:15077665234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-20 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003DD0301] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142620930] [to:+15817009445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027474112] [to:17024799576] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030573] [to:19029510018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358937] [to:13303449843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056370270] [to:+18054105987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:14 ip-10-0-64-10 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462716910] [to:+19292201905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-11 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139853003] [to:+18194140214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:14 ip-10-0-0-21 mdr: 2016-02-01 11:11:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534446889] [to:+447418330834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-11 mdr: 2016-02-01 11:11:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-11 mdr: 2016-02-01 11:11:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19099158665] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-10 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165749150] [to:+15168302163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-11 mdr: 2016-02-01 11:11:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-11 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165749150] [to:+15168302163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:15 ip-10-0-64-10 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-11 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:15 ip-10-0-0-10 mdr: 2016-02-01 11:11:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015006816] [to:+13019094459] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183911425] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13108782969] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+18582568539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-10 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:16304421468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14794317446] [to:+14158539185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12628088355] [to:+16167948124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092534] [to:14059227067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:16 ip-10-0-0-11 mdr: 2016-02-01 11:11:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-10 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:16 ip-10-0-64-11 mdr: 2016-02-01 11:11:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859427] [to:14138134467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405149] [to:19545574081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:16785129333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135298633] [to:17012159592] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-20 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048177642] [to:17782513848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890318] [to:+15174920788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163235373] [to:+16163266438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359862] [to:19375450582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063026362] [to:+12138221952] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17027580480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-64-11 mdr: 2016-02-01 11:11:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623867708] [to:+15107799595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:17 ip-10-0-0-11 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-10 mdr: 2016-02-01 11:11:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003DD0302] -Feb 1 11:11:18 ip-10-0-0-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-21 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447805901364] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043895] [to:12109201365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-21 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-11 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403380952] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602155] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-11 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:18 ip-10-0-64-10 mdr: 2016-02-01 11:11:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-11 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545152062] [to:+19546412951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:18 ip-10-0-0-10 mdr: 2016-02-01 11:11:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843624765] [to:+14845826808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600762] [to:16478777787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704123718] [to:+17702005892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137779] [to:17134234604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-20 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-11 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:19 ip-10-0-64-10 mdr: 2016-02-01 11:11:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:19 ip-10-0-0-21 mdr: 2016-02-01 11:11:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053927565] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178436051] [to:+16463490451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692427] [to:+18572406032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403608974] [to:+17408796736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082001960] [to:+17089467172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194534898] [to:+17199990152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809373976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018626] [to:19022983763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017034] [to:19105840891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088683507] [to:18315159214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-10 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:20 ip-10-0-0-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:20 ip-10-0-64-11 mdr: 2016-02-01 11:11:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034530] [to:12147858558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031452] [to:12249448557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425404] [to:12704042589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126981024] [to:+18328334252] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-10 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-20 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174141455] [to:+19148250763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860427] [to:15134357824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:21 ip-10-0-64-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-10 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17075967787] [to:17073383290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:21 ip-10-0-0-11 mdr: 2016-02-01 11:11:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482910] [to:13478694054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997746] [to:19706406235] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034562] [to:14074164423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-10 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:15707653473] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074563373] [to:+14072160331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:22 ip-10-0-0-11 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003DD0303] -Feb 1 11:11:22 ip-10-0-64-11 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:22 ip-10-0-64-10 mdr: 2016-02-01 11:11:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573865809] [to:+17572969729] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:17343291869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086705988] [to:+16465473544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-21 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447969961469] [to:+447520670729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EC0202] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020834] [to:16788866543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436530] [to:18328341182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632410241] [to:+17604748147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136183787] [to:+13479190111] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:23 ip-10-0-64-11 mdr: 2016-02-01 11:11:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015056] [to:19102794841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:23 ip-10-0-0-10 mdr: 2016-02-01 11:11:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003C20201] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-10 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403402] [to:18604360560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028393] [to:19024782467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064209041] [to:+12064009178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-64-11 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787238751] [to:+13479067600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-11 mdr: 2016-02-01 11:11:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:24 ip-10-0-0-10 mdr: 2016-02-01 11:11:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193195059] [to:+18193035025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-21 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184040] [to:13524261959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16789846280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164908720] [to:+16474993036] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664648] [to:15207882230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287080342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503377268] [to:13864810091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-10 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019637] [to:15068759537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:16785129333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203354] [to:18136249272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:25 ip-10-0-0-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-10 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966915] [to:16785920399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:25 ip-10-0-64-11 mdr: 2016-02-01 11:11:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269403927] [to:16262538738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077597] [to:15147587630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18575264401] [to:+13477869438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026900] [to:15875004660] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:18626689252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C20202] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376949203] [to:+13478684159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15208122711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:26 ip-10-0-64-11 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:26 ip-10-0-0-10 mdr: 2016-02-01 11:11:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19154006651] [to:+17736666773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402647966] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344712987] [to:+18046246592] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244370] [to:17343291869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806969258] [to:+19282975489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-10 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993017] [to:14077054831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479491518] [to:+13473799260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-10 mdr: 2016-02-01 11:11:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:27 ip-10-0-0-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286675] [to:12298054423] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:27 ip-10-0-64-11 mdr: 2016-02-01 11:11:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147081003] [to:+14502336799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065336324] [to:+13069938137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174786833] [to:+17279986197] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769608] [to:19372101121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473047266] [to:+13478969758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174786833] [to:+17279986197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12083394005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223656] [to:17606766126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488182949] [to:+12485375933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:28 ip-10-0-64-10 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:28 ip-10-0-0-11 mdr: 2016-02-01 11:11:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102095923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027714396] [to:+17027184937] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473047266] [to:+13478969758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193195059] [to:+18193035025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185859] [to:13476363386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084645933] [to:+16692005499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-10 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-11 mdr: 2016-02-01 11:11:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:29 ip-10-0-64-10 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:29 ip-10-0-0-11 mdr: 2016-02-01 11:11:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-11 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892844] [to:13475439368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:16018743313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056089] [to:19024018206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-10 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-10 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014074112] [to:+17184169643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486608] [to:17176665184] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-64-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052067921] [to:+17053001751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-10 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:30 ip-10-0-0-11 mdr: 2016-02-01 11:11:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:18654155357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-10 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732763] [to:16109062308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798943] [to:16072386906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285814658] [to:+19282977063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573899174] [to:+14132519324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:31 ip-10-0-64-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-11 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:31 ip-10-0-0-10 mdr: 2016-02-01 11:11:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704269537] [to:+13234865563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17075967787] [to:17073383290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160331] [to:14074563373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298547274] [to:+19292200778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142080] [to:16083339274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034716] [to:15156613178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13152883292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:32 ip-10-0-0-11 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:32 ip-10-0-64-10 mdr: 2016-02-01 11:11:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921699] [to:16023139998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743605405] [to:+18572195907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094459] [to:13015006816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058163] [to:19028303615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:33 ip-10-0-0-11 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569322] [to:17162086987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-11 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879321] [to:15754490479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:33 ip-10-0-64-10 mdr: 2016-02-01 11:11:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668178] [to:12066837520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778135] [to:14083759112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-21 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451230850] [to:+447591716567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-20 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134357824] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255884923] [to:+12139296253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863797] [to:12104607914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:34 ip-10-0-0-11 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-11 mdr: 2016-02-01 11:11:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:34 ip-10-0-64-10 mdr: 2016-02-01 11:11:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574700737] [to:+18046245122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093358592] [to:+15204335194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922237] [to:18195880023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-11 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142027637] [to:+14692053070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:35 ip-10-0-64-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:35 ip-10-0-0-10 mdr: 2016-02-01 11:11:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162139601] [to:+13479805232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715897111] [to:+15714454127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215121213] [to:+14076333744] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:15309688683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-10 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999328] [to:14169394091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179756] [to:17032002756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:36 ip-10-0-0-10 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124724] [to:19712839670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:36 ip-10-0-64-11 mdr: 2016-02-01 11:11:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862233980] [to:+17865673637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-11 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261729] [to:13477768847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164908720] [to:+16474993036] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-11 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-11 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154063] [to:+19172592726] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:37 ip-10-0-64-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:37 ip-10-0-0-10 mdr: 2016-02-01 11:11:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19163846952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367444133] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434616932] [to:+12138619382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073745] [to:15197032124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-21 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447546675679] [to:+447451217431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692005499] [to:18084645933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058144564] [to:+15058004128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:38 ip-10-0-0-10 mdr: 2016-02-01 11:11:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128449932] [to:+19122084463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:38 ip-10-0-64-11 mdr: 2016-02-01 11:11:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777028] [to:14197051972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496231] [to:13478420787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13153728451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789728] [to:15519994216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-11 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12162355858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:12135071715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-11 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:39 ip-10-0-64-10 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132621272] [to:+18193035063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:15874474713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:39 ip-10-0-0-10 mdr: 2016-02-01 11:11:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132621272] [to:+18193035063] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-10 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-20 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077389282] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004798] [to:18437516106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009178] [to:12064209041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15026001554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165419305] [to:+18722535141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929727] [to:12508994770] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169160] [to:16035932884] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020101] [to:14383466436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:40 ip-10-0-64-10 mdr: 2016-02-01 11:11:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145866631] [to:+14198430599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:40 ip-10-0-0-11 mdr: 2016-02-01 11:11:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16602009408] [to:16602810512] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436938] [to:15198172328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960783] [to:19173851973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17732402790] [to:+17604743810] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393061] [to:12165758972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16088510175] [to:+18133086789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053591570] [to:+17184812872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:41 ip-10-0-0-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802810448] [to:+15873322555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-10 mdr: 2016-02-01 11:11:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189219751] [to:+18127816413] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:41 ip-10-0-64-11 mdr: 2016-02-01 11:11:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970837] [to:15865225184] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17732402790] [to:+17604743810] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-21 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-21 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447852965335] [to:+447451231301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131428] [to:14235799661] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863252] [to:12525182529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12523750930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038703006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:12056718020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477605475] [to:+16475570260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-0-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062297878] [to:+16474912440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411271] [to:14706856747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997381] [to:14164198350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024722644] [to:+14804393573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-11 mdr: 2016-02-01 11:11:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18142186063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:42 ip-10-0-64-10 mdr: 2016-02-01 11:11:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024018206] [to:+19027056089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410722] [to:15192228980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377251] [to:12679127698] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377251] [to:12679127698] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-10 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-21 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333539] [to:+447960680778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038703006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502186734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502186734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-64-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-11 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:43 ip-10-0-0-10 mdr: 2016-02-01 11:11:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16042023647] [to:+17607306797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286412] [to:15406760377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807428250] [to:+15874049911] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873258028] [to:+15873323073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632021363] [to:+15632597959] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004352] [to:17627280071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243870058] [to:16308065491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338575] [to:19177677985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802418999] [to:+19252397754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-10 mdr: 2016-02-01 11:11:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:44 ip-10-0-0-21 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:44 ip-10-0-64-11 mdr: 2016-02-01 11:11:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430611] [to:14195597915] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12197981544] [to:+12194408336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156401512] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327732] [to:18064002420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683806] [to:17867128450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660626] [to:15026048035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572071390] [to:17542631944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-10 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348412988] [to:+13473438204] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-10 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:45 ip-10-0-0-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101895] [to:17808918514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:45 ip-10-0-64-11 mdr: 2016-02-01 11:11:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040521] [to:15067214345] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542137444] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867283205] [to:+13478685225] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393061] [to:12165758972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-11 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17256669121] [to:+17029565327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927735] [to:15142475823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:46 ip-10-0-64-10 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16625796240] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-11 mdr: 2016-02-01 11:11:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:46 ip-10-0-0-10 mdr: 2016-02-01 11:11:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-11 mdr: 2016-02-01 11:11:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17078202142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-11 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-10 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-11 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-10 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-10 mdr: 2016-02-01 11:11:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:47 ip-10-0-64-11 mdr: 2016-02-01 11:11:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:47 ip-10-0-0-11 mdr: 2016-02-01 11:11:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305220] [to:+15068039060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719950] [to:16303330914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16625796240] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884976] [to:12298601231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477391449] [to:+17053007506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975885] [to:16025033675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-10 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375450582] [to:+12139359862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-11 mdr: 2016-02-01 11:11:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:48 ip-10-0-64-11 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:48 ip-10-0-0-10 mdr: 2016-02-01 11:11:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15209755785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579278566] [to:+14697516983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925651] [to:15149961766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-21 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327653] [to:+447864995225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-21 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203352] [to:+447555750984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857149] [to:12026976749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:15707653473] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:18126798815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:17734254670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-10 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-10 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15039644132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:49 ip-10-0-64-11 mdr: 2016-02-01 11:11:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15039644132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:49 ip-10-0-0-11 mdr: 2016-02-01 11:11:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175086996] [to:+19142798542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288990] [to:18452820855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-10 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-20 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447914191789] [to:+447451231733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436159] [to:12817394544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024062763] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-21 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432610437] [to:+447418338190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293155] [to:18503488148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:50 ip-10-0-64-11 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16514105056] [to:19062824454] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-10 mdr: 2016-02-01 11:11:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:50 ip-10-0-0-11 mdr: 2016-02-01 11:11:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615883] [to:19899166116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843358578] [to:+14848164880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477385169] [to:+16474955950] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125927982] [to:+13866018901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-64-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895339164] [to:+19894986001] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142518834] [to:+17142153623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-10 mdr: 2016-02-01 11:11:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:51 ip-10-0-0-11 mdr: 2016-02-01 11:11:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895339164] [to:+19894986001] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372052382] [to:+17409101881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-21 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579278566] [to:+14697516983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-21 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332855] [to:+447555020510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015880662] [to:+14243364069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:13132308199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-11 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-11 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956368] [to:13069404475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:52 ip-10-0-0-10 mdr: 2016-02-01 11:11:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852202] [to:18146029430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:52 ip-10-0-64-10 mdr: 2016-02-01 11:11:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059220380] [to:+14803008789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-10 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-20 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:MSFT] [to:+447451249192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-11 mdr: 2016-02-01 11:11:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-10 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153728451] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-11 mdr: 2016-02-01 11:11:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:53 ip-10-0-0-10 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177896038] [to:+12135593041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-11 mdr: 2016-02-01 11:11:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:53 ip-10-0-64-10 mdr: 2016-02-01 11:11:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15058188849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:15599170769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191525] [to:17742833626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168203452] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785757] [to:16099721415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13232910726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16514105056] [to:19062824454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-11 mdr: 2016-02-01 11:11:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:54 ip-10-0-64-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:54 ip-10-0-0-10 mdr: 2016-02-01 11:11:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927735] [to:15142475823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14699782274] [to:+19404634435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182908458] [to:+13476969861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406675674] [to:+12162393053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873578886] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164180402] [to:+17166661125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144171121] [to:+18133203549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073827343] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168369819] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049899861] [to:+13217309524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593604474] [to:+12484601442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041563] [to:15134654128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782513848] [to:+12048177642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047160707] [to:+13478086321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698746036] [to:12146723555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430804] [to:19133963319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308062733] [to:+12343077661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-10 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-10 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-21 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:55 ip-10-0-64-11 mdr: 2016-02-01 11:11:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236463088] [to:+19802093921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:55 ip-10-0-0-11 mdr: 2016-02-01 11:11:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960783] [to:17026192728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785175770] [to:+17702005161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477561977] [to:17737393244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349325] [to:19856873186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308062733] [to:+12343077661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349325] [to:19856873186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349325] [to:19856873186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:19062414983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862022122] [to:+15863315923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-11 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004352] [to:17627280071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563992481] [to:+16784338524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169394091] [to:+16477999328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:56 ip-10-0-0-10 mdr: 2016-02-01 11:11:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724058] [to:15856257778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:56 ip-10-0-64-11 mdr: 2016-02-01 11:11:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892742394] [to:+14387945032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659824] [to:12076926040] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993036] [to:17164908720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824043] [to:15858990149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063362708] [to:+12136349946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086693700] [to:+12138063359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12175027747] [to:+19726665632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:57 ip-10-0-0-11 mdr: 2016-02-01 11:11:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17162533907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:57 ip-10-0-64-10 mdr: 2016-02-01 11:11:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685225] [to:17867283205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559572] [to:16477190423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-10 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-10 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479755] [to:13153728451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572071390] [to:17542631944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:58 ip-10-0-0-10 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107735] [to:13527923883] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137788910] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:58 ip-10-0-64-11 mdr: 2016-02-01 11:11:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:11:59 ip-10-0-0-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:11:59 ip-10-0-64-11 mdr: 2016-02-01 11:11:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011966582710302] [to:+17324447796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:11:59 ip-10-0-64-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:11:59 ip-10-0-0-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805812] [to:17176760049] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:11:59 ip-10-0-64-10 mdr: 2016-02-01 11:11:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042998066] [to:+13479979945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:11:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049741164] [to:+14426007670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:19542137444] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:19739917984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075961302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027440] [to:15136962797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786641] [to:13345447365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-21 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-11 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455923] [to:18182177945] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-64-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-10 mdr: 2016-02-01 11:12:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:00 ip-10-0-0-21 mdr: 2016-02-01 11:12:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:17047056257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785442523] [to:+17702005481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326476920] [to:+18484824223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052016729] [to:+17727667355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154217] [to:+18102218411] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632785] [to:18178621294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:15098443839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-0-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-10 mdr: 2016-02-01 11:12:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997381] [to:14164198350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:01 ip-10-0-64-11 mdr: 2016-02-01 11:12:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-20 mdr: 2016-02-01 11:12:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208480] [to:+447710134432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853910850] [to:+13013578295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19154006651] [to:+17736666773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474898300] [to:+13478682310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-11 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:02 ip-10-0-0-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-11 mdr: 2016-02-01 11:12:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:02 ip-10-0-64-10 mdr: 2016-02-01 11:12:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:15593659085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967293] [to:17039450982] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-10 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550380] [to:14167380907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676650] [to:12084254285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-20 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451236390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:12673449847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:03 ip-10-0-0-10 mdr: 2016-02-01 11:12:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:03 ip-10-0-64-11 mdr: 2016-02-01 11:12:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-11 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082146] [to:18137661518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-11 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126648226] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:04 ip-10-0-64-10 mdr: 2016-02-01 11:12:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293155] [to:18503488148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:04 ip-10-0-0-10 mdr: 2016-02-01 11:12:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15676949713] [to:+14198430969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262431652] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506515198] [to:+19027021814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960669] [to:17272510803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084627728] [to:+18585199908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12294448073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242242160] [to:+17279986143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17085410150] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16055154728] [to:+16058887912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:05 ip-10-0-64-11 mdr: 2016-02-01 11:12:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:05 ip-10-0-0-10 mdr: 2016-02-01 11:12:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635855616] [to:+18639491369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313105964] [to:+17206235419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106389338] [to:+13866015178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040442] [to:+17122277800] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003190201] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13238411078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040442] [to:+17122277800] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003190202] -Feb 1 11:12:06 ip-10-0-0-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19374223756] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:06 ip-10-0-0-11 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608307067] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037168222] [to:+16034133653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-11 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883373] [to:15307197163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:06 ip-10-0-64-10 mdr: 2016-02-01 11:12:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073745] [to:15197032124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-11 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672968630] [to:+13866012068] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-10 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437086718] [to:+18638553437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-20 mdr: 2016-02-01 11:12:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766226951] [to:+447451201877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:07 ip-10-0-64-11 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17808852759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:07 ip-10-0-0-10 mdr: 2016-02-01 11:12:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:14164320213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001751] [to:17052067921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328818285] [to:+17325274074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-10 mdr: 2016-02-01 11:12:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-10 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-0-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15068011586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:08 ip-10-0-64-11 mdr: 2016-02-01 11:12:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004726] [to:16788329794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573382183] [to:+13479067456] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-20 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447563644828] [to:+447451241800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235348741] [to:+17074032311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:4915735990577] [to:14106903468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047371] [to:14167006779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-10 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207414717] [to:+17727740847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16014412506] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-20 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451219796] [to:+447572374537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017473] [to:17406415575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333691] [to:14045635711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:09 ip-10-0-0-11 mdr: 2016-02-01 11:12:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-11 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13309517408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:09 ip-10-0-64-10 mdr: 2016-02-01 11:12:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975489] [to:14806969258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493590799] [to:+16475038464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641094] [to:17174488910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143634] [to:19549371606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-11 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-11 mdr: 2016-02-01 11:12:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:10 ip-10-0-0-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:10 ip-10-0-64-10 mdr: 2016-02-01 11:12:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158694754] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19129966500] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:18317069406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237425893] [to:+12134783774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344259373] [to:+17187479689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138022948] [to:+18133206933] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-64-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018346488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-10 mdr: 2016-02-01 11:12:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:11 ip-10-0-0-11 mdr: 2016-02-01 11:12:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083197] [to:13155762003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897790241] [to:12894402495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-20 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134242598] [to:+13479191926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025291370] [to:+19027058517] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404323224] [to:+19715123239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513809880] [to:+19513640895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:17758432110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-11 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-11 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:12 ip-10-0-0-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053470723] [to:+12262431652] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:12 ip-10-0-64-10 mdr: 2016-02-01 11:12:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046492856] [to:+16043050764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434709] [to:16077612739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-10 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235799661] [to:+15103131428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-10 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-10 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073383290] [to:+17075967787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-11 mdr: 2016-02-01 11:12:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:13 ip-10-0-0-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134654128] [to:+17185041563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:13 ip-10-0-64-11 mdr: 2016-02-01 11:12:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505401287] [to:+17784024742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364031] [to:+13479714697] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024663442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438204] [to:14348412988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083387018] [to:+15129525124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12163094777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055804069] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278038] [to:13235721943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043895] [to:12109201365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196778] [to:18149208126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952549] [to:13174039644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-10 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:14 ip-10-0-64-11 mdr: 2016-02-01 11:12:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149159598] [to:+14153260711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:14 ip-10-0-0-11 mdr: 2016-02-01 11:12:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884976] [to:12298601231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037329] [to:13362259445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972642] [to:17577240115] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-10 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402430951] [to:+13479809244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:13238758269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-20 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447411409468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235705] [to:14799357419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:15 ip-10-0-64-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:15 ip-10-0-0-11 mdr: 2016-02-01 11:12:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282168538] [to:+19725251516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782938898] [to:+17727668679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856878604] [to:+19542994820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266280] [to:13167128678] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-64-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0201] -Feb 1 11:12:16 ip-10-0-64-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377187793] [to:+15108538047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-10 mdr: 2016-02-01 11:12:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:16 ip-10-0-0-11 mdr: 2016-02-01 11:12:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-10 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-10 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0202] -Feb 1 11:12:17 ip-10-0-64-10 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-10 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:14373337994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364319] [to:+19148250064] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:17 ip-10-0-0-11 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144107977] [to:+19086597598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002147] [to:14043372897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:17 ip-10-0-64-11 mdr: 2016-02-01 11:12:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16055154728] [to:+16058887912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-10 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436023123] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18188353670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024362] [to:16133609707] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041988] [to:16134072605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-10 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-11 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-11 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:18 ip-10-0-64-10 mdr: 2016-02-01 11:12:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-11 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16194962840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:18 ip-10-0-0-10 mdr: 2016-02-01 11:12:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097494] [to:16477932295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892844] [to:13475439368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015524] [to:18052330557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406212855] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-10 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:19 ip-10-0-0-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149963091] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-10 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:19 ip-10-0-64-11 mdr: 2016-02-01 11:12:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242395946] [to:18598038784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593776] [to:13092308164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141242] [to:16317802443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297304] [to:13855197675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338575] [to:19177677985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-11 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:17078806798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:20 ip-10-0-0-20 mdr: 2016-02-01 11:12:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-11 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035770363] [to:+19802093495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:20 ip-10-0-64-10 mdr: 2016-02-01 11:12:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12892755984] [to:19053218900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440408] [to:12522456167] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086141] [to:13473598272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057615905] [to:+12262416317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921069] [to:15178178217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198000373] [to:15639290133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156314455] [to:+18724008276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684159] [to:19376949203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17025040919] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-11 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-64-11 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178080629] [to:+18724008896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:21 ip-10-0-0-10 mdr: 2016-02-01 11:12:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-10 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-10 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-10 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-10 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-10 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145029184] [to:+16474965281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-10 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:22 ip-10-0-64-11 mdr: 2016-02-01 11:12:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-11 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15332645162] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:22 ip-10-0-0-21 mdr: 2016-02-01 11:12:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824887] [to:15023315178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:18324179270] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:13479518510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:13212458232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:13212458232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373310] [to:18596936021] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:19519731522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308344] [to:18509825638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058517] [to:19025291370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-64-10 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:23 ip-10-0-0-11 mdr: 2016-02-01 11:12:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393283] [to:19407338101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:18324179270] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148456] [to:13252264906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19032155434] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134737] [to:12035401024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-10 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:24 ip-10-0-64-11 mdr: 2016-02-01 11:12:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:24 ip-10-0-0-11 mdr: 2016-02-01 11:12:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697808] [to:13039030308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-11 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-10 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13479289245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149961766] [to:+14387925651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-10 mdr: 2016-02-01 11:12:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:25 ip-10-0-0-10 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:25 ip-10-0-64-11 mdr: 2016-02-01 11:12:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:19283776421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716880559] [to:+14693019991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808131] [to:18102213639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15014081073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632785] [to:18178621294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604710] [to:18596122859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-20 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:15102202516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487294] [to:18033108981] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-11 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487294] [to:18033108981] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-0-10 mdr: 2016-02-01 11:12:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768105] [to:18645296242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:26 ip-10-0-64-10 mdr: 2016-02-01 11:12:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-10 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502912] [to:15596458992] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842522504] [to:14847979249] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174036646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739936610] [to:+13125099961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:27 ip-10-0-0-11 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286289] [to:15406840843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:27 ip-10-0-64-10 mdr: 2016-02-01 11:12:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696778] [to:15403928032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734029085] [to:+13203073491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546240178] [to:+12542338287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306139231] [to:+19164690442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068895953] [to:+19047581495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060488] [to:15402907358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695984] [to:+19787869253] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13024802232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732763] [to:16105630419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-10 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:28 ip-10-0-0-11 mdr: 2016-02-01 11:12:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:28 ip-10-0-64-11 mdr: 2016-02-01 11:12:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041563] [to:15134654128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042534] [to:14167167528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086321] [to:19047160707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528468] [to:14405918610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027030573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:15194949400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408894] [to:15194949400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037269475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037269475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146579984] [to:+17607014068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:29 ip-10-0-64-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-10 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17276660386] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:29 ip-10-0-0-11 mdr: 2016-02-01 11:12:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15209882506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004128] [to:15058144564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13038018052] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018346488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172129096] [to:+15088349360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502303473] [to:+14388040448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:30 ip-10-0-0-11 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:30 ip-10-0-64-10 mdr: 2016-02-01 11:12:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:15073297473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:15073297473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:18635328940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187827817] [to:+17702004807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086100] [to:15142139710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735668] [to:12036288413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-64-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652793234] [to:+18597777067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-11 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:31 ip-10-0-0-10 mdr: 2016-02-01 11:12:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15068011586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034774307] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373337994] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025291370] [to:+19027058517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102806324] [to:+19729478937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13479289245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066080971] [to:+15068041906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057681050] [to:+17059101813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:32 ip-10-0-0-11 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-10 mdr: 2016-02-01 11:12:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:32 ip-10-0-64-11 mdr: 2016-02-01 11:12:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030931] [to:18198160616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455931] [to:12094053678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048836130] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149963091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786380097] [to:+16043050556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887912] [to:16055154728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146900483] [to:+14388042551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996437] [to:14807984723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125928065] [to:+19122005963] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195880023] [to:+14387922237] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132938070] [to:+16474913651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:19045548803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046606562] [to:+13369382199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975489] [to:14806969258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-10 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-11 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:33 ip-10-0-0-10 mdr: 2016-02-01 11:12:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132938070] [to:+16474913651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:33 ip-10-0-64-11 mdr: 2016-02-01 11:12:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646633004] [to:+18572329545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-20 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217431] [to:+447546675679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-10 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285814658] [to:+19282977063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:34 ip-10-0-64-11 mdr: 2016-02-01 11:12:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:34 ip-10-0-0-20 mdr: 2016-02-01 11:12:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577548219] [to:+19172593726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:16147876473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-20 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-10 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029896] [to:15133015153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784854] [to:12602013170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737913] [to:16109902891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19042587588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:35 ip-10-0-64-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-10 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434709] [to:16077612739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015898] [to:17025331183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:35 ip-10-0-0-11 mdr: 2016-02-01 11:12:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015898] [to:17025331183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967293] [to:17039450982] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19098336905] [to:+17142153854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101524] [to:14036146629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:18033486654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-11 mdr: 2016-02-01 11:12:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124366] [to:12674492223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:36 ip-10-0-0-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-10 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373715942] [to:+19703159046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:36 ip-10-0-64-11 mdr: 2016-02-01 11:12:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867189898] [to:+15612318265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:17057615905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13462179877] [to:+13479787799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422090] [to:19183991084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135298633] [to:13202232286] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668957] [to:16362900303] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668957] [to:16362900303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054078536] [to:+16025528576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896397] [to:16032048050] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:15157799017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:15157799017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265007219] [to:+12267984039] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:37 ip-10-0-64-10 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133302274] [to:+13479978725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:37 ip-10-0-0-11 mdr: 2016-02-01 11:12:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784577754] [to:+13477147420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319251] [to:+15852825057] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13612310549] [to:+18326538324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594026107] [to:+15108838487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-64-10 mdr: 2016-02-01 11:12:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:38 ip-10-0-0-11 mdr: 2016-02-01 11:12:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235705] [to:14799357419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154420] [to:+12343077889] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123235330] [to:+16465130324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034774307] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-11 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002651] [to:16476256627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:14703858998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:39 ip-10-0-0-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-11 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:39 ip-10-0-64-10 mdr: 2016-02-01 11:12:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147437] [to:19895289045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-21 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447732581901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073745] [to:15194409863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128023289] [to:+14155944311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178178217] [to:+15174921069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143505038] [to:+19292689892] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:40 ip-10-0-64-10 mdr: 2016-02-01 11:12:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:40 ip-10-0-0-11 mdr: 2016-02-01 11:12:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048744207] [to:+18046244029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314090629] [to:+19312577585] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018346488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-10 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808635791] [to:+15874003161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:41 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:41 ip-10-0-0-11 mdr: 2016-02-01 11:12:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036181796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089668809] [to:16179804678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159144915] [to:+18724005469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045499451] [to:+13475089646] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-20 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447852965335] [to:+447451231301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372101121] [to:+14242769608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800149] [to:19092386828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921952] [to:17063669656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163062] [to:12526704111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274828] [to:13184507554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15413212741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18507608677] [to:+13477989540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325606277] [to:+17278601946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-11 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276660386] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:42 ip-10-0-0-10 mdr: 2016-02-01 11:12:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:42 ip-10-0-64-10 mdr: 2016-02-01 11:12:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874054458] [to:17802215692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014074112] [to:+17184169643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364588992] [to:+12138063375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064501706] [to:+15873321634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475524525] [to:+16319802124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852079026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606289263] [to:+12136348449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025829314] [to:+17186755679] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024608006] [to:+14433453910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-11 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139995124] [to:+13137690110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:43 ip-10-0-0-11 mdr: 2016-02-01 11:12:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:43 ip-10-0-64-10 mdr: 2016-02-01 11:12:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704936313] [to:+14025002634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-10 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-20 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322337938] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055380] [to:12146623179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:44 ip-10-0-0-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-10 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:44 ip-10-0-64-11 mdr: 2016-02-01 11:12:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174386591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719881] [to:16033159981] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:16014412506] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502027] [to:15403132472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963320] [to:18149699379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:16787647278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132566795] [to:+18328025406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:45 ip-10-0-64-11 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:45 ip-10-0-0-11 mdr: 2016-02-01 11:12:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668957] [to:13145328599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099961] [to:17739936610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220502] [to:15183849215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:18154146950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134654128] [to:+17185041563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-20 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:46 ip-10-0-64-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039446622] [to:+12816032372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-10 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176293947] [to:+13476191142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:46 ip-10-0-0-11 mdr: 2016-02-01 11:12:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176293947] [to:+13476191142] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805689287] [to:+16233837043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627155] [to:19193083262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852079026] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16615654944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522174672] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16615654944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:12533551786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228093] [to:15403795402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025908625] [to:+18127816046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023078] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-11 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-11 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:47 ip-10-0-64-10 mdr: 2016-02-01 11:12:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031752] [to:12053787730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:47 ip-10-0-0-10 mdr: 2016-02-01 11:12:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242746955] [to:+16474917197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262529498] [to:+12138613436] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-20 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13174904373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174488910] [to:+16465641094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-21 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451236390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792332] [to:13522564744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471528] [to:18657409049] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-10 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-11 mdr: 2016-02-01 11:12:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:48 ip-10-0-0-10 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:48 ip-10-0-64-11 mdr: 2016-02-01 11:12:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883373] [to:15307197163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888010] [to:19102294711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158190902] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-10 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-64-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696778] [to:13047638930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-10 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:49 ip-10-0-0-11 mdr: 2016-02-01 11:12:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852992818] [to:+19142286477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474909953] [to:15062333037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-10 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996768] [to:18154146950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-10 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-11 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:50 ip-10-0-64-11 mdr: 2016-02-01 11:12:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:50 ip-10-0-0-10 mdr: 2016-02-01 11:12:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852992818] [to:+19142286477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268207] [to:14015277688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997298] [to:50246907853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732886] [to:16314640288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605173147] [to:+17816138564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567014655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147286088] [to:+15204333895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501272] [to:18035568946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:19294210194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283836862] [to:+14426007907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:51 ip-10-0-64-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019517] [to:17099865021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-11 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303540953] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:51 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041988] [to:16134132026] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194294556] [to:+15103223898] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888271] [to:17194641526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14087948034] [to:+14158594156] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-11 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-10 mdr: 2016-02-01 11:12:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067816] [to:13157097130] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:52 ip-10-0-0-10 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:52 ip-10-0-64-11 mdr: 2016-02-01 11:12:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797326] [to:17407043508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277849] [to:14035596019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272710067] [to:+12086202962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007518] [to:15147468961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852014807] [to:+15852823243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192603996] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:17753409761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259845522] [to:19379037510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:12264024778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-10 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-10 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884976] [to:12298601231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999328] [to:14169394091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:53 ip-10-0-0-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218284] [to:18433670586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:53 ip-10-0-64-11 mdr: 2016-02-01 11:12:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:19053927565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026001554] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528754791] [to:+12138220752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478737617] [to:+16474993283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-10 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191984] [to:17086749441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053004606] [to:+13052038994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046101599] [to:+19784009599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-10 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106443540] [to:+13477696957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063362708] [to:+12136349946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:54 ip-10-0-0-11 mdr: 2016-02-01 11:12:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19032130535] [to:19403374507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:54 ip-10-0-64-11 mdr: 2016-02-01 11:12:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785103053] [to:+17747288291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092895035] [to:+14088725919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-21 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447704045859] [to:+447418322841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695563595] [to:+14697515424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694925648] [to:+12486393436] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296690599] [to:+17278196470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643478865] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477020275] [to:+16465470696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635855616] [to:+18639491369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085186970] [to:+12626482748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608307067] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025291370] [to:+19027058517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474810103] [to:+16467389556] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955297] [to:16475298995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277849] [to:14035596019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277849] [to:14035596019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:16787895763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702170671] [to:+18729996288] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196416348] [to:+19199162332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476243005] [to:+17053026200] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667825] [to:18565066304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15204650261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008276] [to:18156314455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13619067361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024878] [to:16134837170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086856001] [to:+17193437923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024878] [to:16134837170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024878] [to:16134837170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187298299] [to:+13473436340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-64-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086141] [to:13473598272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-10 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:55 ip-10-0-0-11 mdr: 2016-02-01 11:12:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645088] [to:18058351676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946223] [to:13522017715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024799576] [to:+17027474112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-10 mdr: 2016-02-01 11:12:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:56 ip-10-0-64-10 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501272] [to:18035568946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:56 ip-10-0-0-11 mdr: 2016-02-01 11:12:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013703925] [to:+15103222295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173031451] [to:+15413257773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:57 ip-10-0-0-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605192924] [to:+12602777591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-11 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:57 ip-10-0-64-10 mdr: 2016-02-01 11:12:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862916264] [to:+13059014557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-11 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:58 ip-10-0-0-11 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183351715] [to:+18722134307] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-11 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:58 ip-10-0-0-11 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364086] [to:+14153405797] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:58 ip-10-0-0-10 mdr: 2016-02-01 11:12:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:58 ip-10-0-64-10 mdr: 2016-02-01 11:12:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-11 mdr: 2016-02-01 11:12:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-11 mdr: 2016-02-01 11:12:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-10 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-11 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-11 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462996248] [to:+13013552497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-10 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-11 mdr: 2016-02-01 11:12:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:12:59 ip-10-0-64-10 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:12:59 ip-10-0-0-11 mdr: 2016-02-01 11:12:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:15752688237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:15599170769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17276660386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19284043460] [to:+19285992681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782384288] [to:19072503472] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174386591] [to:+15178615956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404282] [to:12093272892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034530] [to:12147858558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302084983] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266330] [to:+12497009278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242395946] [to:18598038784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-10 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934367] [to:14185513224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:00 ip-10-0-0-11 mdr: 2016-02-01 11:13:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099961] [to:17739936610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:00 ip-10-0-64-11 mdr: 2016-02-01 11:13:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703858998] [to:+13479379562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556284] [to:18632718790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-10 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-10 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-10 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860427] [to:15134357824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:01 ip-10-0-64-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17732363818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326660674] [to:+19703159582] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:01 ip-10-0-0-11 mdr: 2016-02-01 11:13:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750903] [to:13176986493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036361809] [to:+12134017673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206468] [to:+16474951948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501272] [to:18035568946] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527779] [to:17408177168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:02 ip-10-0-64-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433670586] [to:+14242218284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-11 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:02 ip-10-0-0-10 mdr: 2016-02-01 11:13:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065263861] [to:+16475039260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951815] [to:19052696097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603300745] [to:+17813862903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-11 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-11 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921699] [to:16023139998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-11 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:03 ip-10-0-64-10 mdr: 2016-02-01 11:13:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:18634307477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:03 ip-10-0-0-10 mdr: 2016-02-01 11:13:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030979] [to:12508572363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124786734] [to:+13123009388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:18634307477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959468] [to:13463133527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018499127] [to:18016388071] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730906] [to:18159045338] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872246] [to:17019343278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025850234] [to:18484568871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601664] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087918] [to:12565203411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041563] [to:15134654128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:14045791261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027382085] [to:+17027478596] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087918] [to:12565203411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:04 ip-10-0-64-10 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-10 mdr: 2016-02-01 11:13:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:04 ip-10-0-0-11 mdr: 2016-02-01 11:13:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539060] [to:19856477401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154156] [to:+19172593386] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025283892] [to:+13478086458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328341182] [to:+12816436530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840655] [to:+13476908672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024266722] [to:+17027184246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-21 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-20 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447497023334] [to:+447520672031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041988] [to:16139860676] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434709] [to:16077612739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-11 mdr: 2016-02-01 11:13:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147876473] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885738] [to:18328939388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:05 ip-10-0-0-10 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:05 ip-10-0-64-11 mdr: 2016-02-01 11:13:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833352] [to:14092218878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027382085] [to:+17027478596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292696963] [to:+19513387225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-10 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653846403] [to:+16164200064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:06 ip-10-0-64-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:06 ip-10-0-0-11 mdr: 2016-02-01 11:13:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-10 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073474632] [to:+19149088695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089668809] [to:16179804678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-11 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-21 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234854] [to:+447729823648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215622] [to:18034141371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-10 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027382085] [to:+17027478596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:07 ip-10-0-64-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995785] [to:12176635529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039712] [to:12896754628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-10 mdr: 2016-02-01 11:13:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473100] [to:18659190013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:07 ip-10-0-0-11 mdr: 2016-02-01 11:13:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029569920] [to:+15028049458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852992818] [to:+19142286477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403132472] [to:+17077502027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183991084] [to:+12819422090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264024778] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864818986] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032007055] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-21 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447732581901] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-11 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908131] [to:14792562783] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:08 ip-10-0-0-10 mdr: 2016-02-01 11:13:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17023323394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:08 ip-10-0-64-11 mdr: 2016-02-01 11:13:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148124] [to:+17727668264] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076189549] [to:+16465136310] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159144915] [to:+18724005469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432461639] [to:+17315744398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253889] [to:17272043026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977063] [to:19285814658] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327740] [to:19152135955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-11 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315153083] [to:+17786540587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:09 ip-10-0-64-10 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:09 ip-10-0-0-11 mdr: 2016-02-01 11:13:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053941845] [to:18059465006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794849943] [to:+16465137877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477022556] [to:+16474947170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-11 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254021179] [to:+19362616158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-21 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737393244] [to:+18477561977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106628845] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931246] [to:15149163410] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378967683] [to:+19047587257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-64-10 mdr: 2016-02-01 11:13:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127360] [to:13018734672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-11 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:10 ip-10-0-0-10 mdr: 2016-02-01 11:13:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245035368] [to:+17248035417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165804211] [to:+16474993092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:12143037349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478937] [to:19102806324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088478] [to:12043920989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049805080] [to:+17748554194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136718484] [to:+12482833181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18126648226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134654128] [to:+17185041563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676839095] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666398] [to:17736191807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:11 ip-10-0-0-10 mdr: 2016-02-01 11:13:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:11 ip-10-0-64-11 mdr: 2016-02-01 11:13:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14799357419] [to:+19543235705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105386] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675599103] [to:+17185040237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-21 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502187526] [to:+17784020235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137015633] [to:+16139093236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549440] [to:12507318176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738814306] [to:+12138228892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946811] [to:19046577337] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-10 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:12 ip-10-0-64-10 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641094] [to:17174488910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:12 ip-10-0-0-11 mdr: 2016-02-01 11:13:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582203] [to:19045015157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463927582] [to:+17817863384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146244139] [to:+15169260561] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-21 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451219796] [to:+447708727733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16024295193] [to:16024978207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-11 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-20 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:13 ip-10-0-64-10 mdr: 2016-02-01 11:13:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-21 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:MSFT] [to:+447451249192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-10 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:13 ip-10-0-0-11 mdr: 2016-02-01 11:13:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233040541] [to:+14156498163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-20 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233040541] [to:+14156498163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007908] [to:14146986415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477022556] [to:+16474947170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364710040] [to:+19783231437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:14 ip-10-0-0-10 mdr: 2016-02-01 11:13:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-10 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:14 ip-10-0-64-11 mdr: 2016-02-01 11:13:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16419036269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:16042834501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057793728] [to:+15103278225] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13255143437] [to:+15754483986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375439920] [to:+12488347187] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-21 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875783503] [to:+447520670739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203075440] [to:13048091100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946223] [to:13522017715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18637127029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192772285] [to:+12264551157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-21 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702031963] [to:+17702004930] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062414983] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:12522174672] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956368] [to:13069812377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202789174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-10 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:15 ip-10-0-64-11 mdr: 2016-02-01 11:13:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:15 ip-10-0-0-11 mdr: 2016-02-01 11:13:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405090923] [to:+15617666160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17758432110] [to:+15304883680] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750580] [to:17158171186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735668] [to:12036288413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358244] [to:19198106745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748562] [to:18594660319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009529] [to:17326820537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329840777] [to:+14242846149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178098527] [to:+13475184643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783843048] [to:+17786549381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-10 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194125536] [to:18196208692] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:16 ip-10-0-0-20 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960680778] [to:+447418333539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003090201] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865852128] [to:+13866015869] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-11 mdr: 2016-02-01 11:13:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12093247469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:16 ip-10-0-64-10 mdr: 2016-02-01 11:13:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288554028] [to:+14158536463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+15873322361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-10 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-11 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-0-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-10 mdr: 2016-02-01 11:13:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107148652] [to:12109960916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-11 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:17 ip-10-0-64-10 mdr: 2016-02-01 11:13:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527779] [to:17408177168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-20 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415734517] [to:+447418338054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473636850] [to:+14692175240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022018705] [to:+14096833658] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185513224] [to:+16474934367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-20 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234854] [to:+447729823648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477022556] [to:+16474947170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-11 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-21 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960680778] [to:+447418333539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003090202] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785337294] [to:19785964075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:18 ip-10-0-64-10 mdr: 2016-02-01 11:13:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:18 ip-10-0-0-11 mdr: 2016-02-01 11:13:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009278] [to:17056266330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094868130] [to:+14502325412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064209041] [to:+12064009178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:17622417233] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375509242] [to:+13479542340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220426] [to:18594336992] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-11 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-10 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-11 mdr: 2016-02-01 11:13:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364139844] [to:+17162791882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-64-10 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:19 ip-10-0-0-10 mdr: 2016-02-01 11:13:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349946] [to:16063362708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-10 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032048050] [to:+12132896397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-11 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172421280] [to:+19703156673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:20 ip-10-0-0-10 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-11 mdr: 2016-02-01 11:13:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289089] [to:15713372294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:20 ip-10-0-64-10 mdr: 2016-02-01 11:13:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:14135222959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282083338] [to:+17279986200] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788678200] [to:19788822189] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137284953] [to:+12482833593] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785442523] [to:+17702005481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-11 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095850488] [to:+12092641176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:21 ip-10-0-0-10 mdr: 2016-02-01 11:13:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:21 ip-10-0-64-11 mdr: 2016-02-01 11:13:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034906472] [to:+16039450436] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14507752754] [to:+14388041074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336833] [to:14077088045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12043901311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908974] [to:19514725078] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031905] [to:19136342490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762296184] [to:+16464751167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:22 ip-10-0-64-11 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:22 ip-10-0-0-10 mdr: 2016-02-01 11:13:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084645933] [to:+16692005499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868176] [to:17752920436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375770050] [to:+12133773454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132893141] [to:+18572192685] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375770050] [to:+12133773454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-10 mdr: 2016-02-01 11:13:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:23 ip-10-0-64-11 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025528576] [to:15054078536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:23 ip-10-0-0-10 mdr: 2016-02-01 11:13:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-20 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447894876216] [to:+447520620498] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-20 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447723432310] [to:+447520609962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784214173] [to:+15087884893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232239519] [to:+18133083061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954633] [to:12526655329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033130171] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-10 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12093247469] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:24 ip-10-0-0-11 mdr: 2016-02-01 11:13:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:24 ip-10-0-64-11 mdr: 2016-02-01 11:13:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:14153774062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756838] [to:19899540991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824043] [to:15858990149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782324186] [to:+14156850906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005404] [to:12042715170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383466436] [to:+15817020101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074334] [to:15403354403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262403952] [to:+16477999655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13165191444] [to:+16513337500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17735125021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214820140] [to:+13214068968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:25 ip-10-0-0-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142926599] [to:+17189628523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110201] -Feb 1 11:13:25 ip-10-0-64-11 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282067669] [to:+17273624815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:25 ip-10-0-64-10 mdr: 2016-02-01 11:13:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110202] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035932884] [to:+19782169160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316704863] [to:+18572327659] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786481026] [to:+19788209320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134357824] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:26 ip-10-0-64-10 mdr: 2016-02-01 11:13:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:26 ip-10-0-0-11 mdr: 2016-02-01 11:13:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146986415] [to:+14146007908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053057947] [to:+14159889423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043901311] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359862] [to:19375450582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-11 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12153005744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-64-10 mdr: 2016-02-01 11:13:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513014970] [to:+12139296708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:27 ip-10-0-0-10 mdr: 2016-02-01 11:13:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18637127029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366473] [to:12694149384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14407853163] [to:+14402528690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139578555] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:28 ip-10-0-0-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-11 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005469] [to:18159144915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:28 ip-10-0-64-10 mdr: 2016-02-01 11:13:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447764195168] [to:+14804392999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245880995] [to:+18722535840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034708] [to:19196994592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067285996] [to:+14157879921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502027] [to:15403132472] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282067669] [to:+19282976374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632802451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069281] [to:13174905120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-20 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323585] [to:+447828999265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-21 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:29 ip-10-0-64-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155019897] [to:+16304892820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108679621] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-21 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-21 mdr: 2016-02-01 11:13:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-11 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:29 ip-10-0-0-10 mdr: 2016-02-01 11:13:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16393176982] [to:+13065004423] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105386] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878635] [to:19362177816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958138] [to:14435150780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+17126428043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-21 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451225508] [to:+447738853652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632638816] [to:+18639492415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:30 ip-10-0-0-11 mdr: 2016-02-01 11:13:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018499127] [to:18016388071] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-11 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:30 ip-10-0-64-10 mdr: 2016-02-01 11:13:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158954] [to:19706912476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158694754] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168545883] [to:+12168343387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802887014] [to:+19148486991] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16393176982] [to:+13065004423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:31 ip-10-0-0-10 mdr: 2016-02-01 11:13:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:31 ip-10-0-64-11 mdr: 2016-02-01 11:13:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326191714] [to:+13478028142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809438] [to:16473779846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-10 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-20 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447788413056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:12533551786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:12533551786] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-64-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222295] [to:13013703925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-11 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:13159458403] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:32 ip-10-0-0-10 mdr: 2016-02-01 11:13:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956368] [to:13069812377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649017770] [to:+13477055443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940402] [to:15148895629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15034626016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043901311] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:33 ip-10-0-0-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-11 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:33 ip-10-0-64-10 mdr: 2016-02-01 11:13:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-20 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788413056] [to:+447451214528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193437923] [to:15086856001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477747698] [to:+16304893783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+13479788150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026048035] [to:+19172660626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146796584] [to:+14506392642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-10 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:34 ip-10-0-0-11 mdr: 2016-02-01 11:13:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:34 ip-10-0-64-11 mdr: 2016-02-01 11:13:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:14167250403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12145276076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:14153774062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862900479] [to:+18133209359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-64-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549371606] [to:+19543143634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285814658] [to:+19282977063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-11 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:16477941467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:35 ip-10-0-0-10 mdr: 2016-02-01 11:13:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405395361] [to:+14402528368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19717709812] [to:+15034555101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102095923] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076596] [to:12678440672] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126648226] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-11 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:36 ip-10-0-0-11 mdr: 2016-02-01 11:13:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162390282] [to:16164982170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:36 ip-10-0-64-10 mdr: 2016-02-01 11:13:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:12482520194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182905592] [to:+15817012463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938561] [to:16093427411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377842] [to:12012499114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-11 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266330] [to:+12497009278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:37 ip-10-0-64-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:37 ip-10-0-0-10 mdr: 2016-02-01 11:13:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900661] [to:12564992648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045998575] [to:+19046948102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842644207] [to:+13479787545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348107] [to:16789723647] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174062949] [to:+12134784739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644356920] [to:+18649995457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666626] [to:18322337938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024909] [to:16615108220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-11 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-64-11 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152135955] [to:+14695327740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:38 ip-10-0-0-10 mdr: 2016-02-01 11:13:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18126648226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079511430] [to:+18572190737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342767] [to:14048836130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174488910] [to:+16465641094] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609252311] [to:+16193593557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865513] [to:18182617837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066998976] [to:+14706730660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024395388] [to:13475456858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697085763] [to:+18653209476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174904373] [to:+13175204089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12043901311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-0-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-11 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:39 ip-10-0-64-10 mdr: 2016-02-01 11:13:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139197800] [to:+18133244808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251516] [to:18282168538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025453] [to:14096512603] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197051972] [to:+14198777028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-21 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B00202] -Feb 1 11:13:40 ip-10-0-0-21 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00201] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101391] [to:17896462638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-21 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447402156409] [to:+447520607569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293751362] [to:+17199990996] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122443121] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-10 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502187526] [to:+17784020235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12163945551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:40 ip-10-0-64-11 mdr: 2016-02-01 11:13:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:40 ip-10-0-0-11 mdr: 2016-02-01 11:13:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108700263] [to:+12105718914] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186057694] [to:+18572190404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134681969] [to:+17277052463] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-20 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194962840] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-11 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:41 ip-10-0-0-10 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:41 ip-10-0-64-11 mdr: 2016-02-01 11:13:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142139710] [to:+14388086100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393228] [to:15418708500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393436] [to:12694925648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007908] [to:14146986415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796866] [to:17406446840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-11 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-11 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:42 ip-10-0-0-10 mdr: 2016-02-01 11:13:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:42 ip-10-0-64-11 mdr: 2016-02-01 11:13:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343871] [to:14046456448] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632638816] [to:+18639492415] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396286695] [to:+12392190308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601672] [to:17729406961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807085444] [to:+15873232724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524261959] [to:+17027184040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:43 ip-10-0-0-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-11 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478694054] [to:+15109482910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866565434] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:43 ip-10-0-64-10 mdr: 2016-02-01 11:13:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742974623] [to:+17256660335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206290167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206290167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009278] [to:17056266330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-11 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:44 ip-10-0-0-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-11 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:44 ip-10-0-64-10 mdr: 2016-02-01 11:13:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632808303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17653133912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464912273] [to:+16463496469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993037] [to:12092708001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+12044806968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-10 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12698386942] [to:+16163190706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-64-11 mdr: 2016-02-01 11:13:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-21 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:45 ip-10-0-0-11 mdr: 2016-02-01 11:13:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041906] [to:15066080971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005963] [to:19125928065] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013508420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086141] [to:13473598272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134681969] [to:+17277052463] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16033130171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168545883] [to:+12168343387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-11 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294442498] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:46 ip-10-0-0-10 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:46 ip-10-0-64-11 mdr: 2016-02-01 11:13:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383466436] [to:+15817020101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159246798] [to:+16158075951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602236616] [to:+12606337353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12125420767] [to:+13477966527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083197] [to:13155762003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015869] [to:13865852128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450728] [to:17743137867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+19513641948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-11 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377842] [to:12012499114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:47 ip-10-0-64-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:15797654545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:47 ip-10-0-0-10 mdr: 2016-02-01 11:13:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195786554] [to:+18127777123] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326820537] [to:+13123009529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12148403591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855132] [to:12096171332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175742] [to:13214021210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175628419] [to:+13478083251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609252311] [to:+16193593557] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:16463536220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946223] [to:13522017715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:48 ip-10-0-64-11 mdr: 2016-02-01 11:13:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165342532] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-10 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:48 ip-10-0-0-11 mdr: 2016-02-01 11:13:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515083812] [to:+15167349404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13857770040] [to:18016661070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015428] [to:18122298713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602296838] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602296838] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16694009950] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:49 ip-10-0-64-11 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-10 mdr: 2016-02-01 11:13:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474539496] [to:+13866012860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:49 ip-10-0-0-11 mdr: 2016-02-01 11:13:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995525] [to:12177723163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183314118] [to:12187307730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174382084] [to:+13123001237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769608] [to:19372101121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-10 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:50 ip-10-0-64-11 mdr: 2016-02-01 11:13:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-10 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:50 ip-10-0-0-11 mdr: 2016-02-01 11:13:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146986415] [to:+14146007908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:14383451554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-10 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079749402] [to:+13366452269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043522178] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015869] [to:13865852128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699253] [to:17576947264] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540716] [to:13013025011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040448] [to:14502303473] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12125420767] [to:+13477966527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856477401] [to:+14158539060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362900303] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:51 ip-10-0-64-10 mdr: 2016-02-01 11:13:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:51 ip-10-0-0-11 mdr: 2016-02-01 11:13:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735909] [to:19035162911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594908] [to:19546842942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13096485200] [to:+17729797240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-11 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-10 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556419] [to:18638086862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:52 ip-10-0-0-11 mdr: 2016-02-01 11:13:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220426] [to:18594336992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:52 ip-10-0-64-11 mdr: 2016-02-01 11:13:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:14192069033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855199890] [to:+19122005562] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199833796] [to:13193290801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708731219] [to:+16785867056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174395597] [to:+14242846600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-10 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:53 ip-10-0-64-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-11 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:53 ip-10-0-0-21 mdr: 2016-02-01 11:13:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13132667092] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-10 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417777330] [to:+15415392129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15026001554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459242] [to:14194908607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:54 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222295] [to:13013703925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:54 ip-10-0-64-10 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359862] [to:19375450582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184557124] [to:+15152032934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192053431] [to:+13477147772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053218900] [to:+12892755984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+12262717673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109161959] [to:+18084681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854058269] [to:+18018905483] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196927166] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066160301] [to:+19298418140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-21 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102948] [to:19083585387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-21 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307202009] [to:+12342312846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555952] [to:15192164518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:55 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:55 ip-10-0-0-11 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193437923] [to:15086856001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635214078] [to:+18638557058] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463927582] [to:+17817863384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036288413] [to:+13477735668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13038018052] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158694754] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155019897] [to:+16304892820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-64-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-10 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587991] [to:19045079179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:56 ip-10-0-0-11 mdr: 2016-02-01 11:13:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609252311] [to:+16193593557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864667174] [to:+14696293030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-11 mdr: 2016-02-01 11:13:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:57 ip-10-0-0-10 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:14383451554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:14506757221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:57 ip-10-0-64-11 mdr: 2016-02-01 11:13:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026943927] [to:+19027058454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362177816] [to:+19365878635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-10 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066160301] [to:+19298418140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557648] [to:12899960503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938476] [to:19738852250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-20 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-11 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968750] [to:19312064640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:58 ip-10-0-64-11 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062077758] [to:+14064042098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:58 ip-10-0-0-10 mdr: 2016-02-01 11:13:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:17863879885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094985475] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094985462] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094985451] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875962413] [to:+15068045091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:13364645198] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887156] [to:16128067695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169160] [to:16035932884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-64-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-11 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735909] [to:19035162911] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:13:59 ip-10-0-0-10 mdr: 2016-02-01 11:13:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578120807] [to:+13474340233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132716227] [to:+14132519155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003430201] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039569] [to:18196797956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134045128] [to:+18134301851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003600301] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003600303] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018334001] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199022477] [to:+12819421616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:00 ip-10-0-0-11 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:00 ip-10-0-64-11 mdr: 2016-02-01 11:14:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137286270] [to:+12342314798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491516] [to:19568987036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103105814] [to:+13478022143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-11 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:01 ip-10-0-0-10 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:01 ip-10-0-64-11 mdr: 2016-02-01 11:14:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15203428726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032002756] [to:+13019179756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411171] [to:12034355422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005092] [to:13346551429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201096] [to:+15102540070] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:16463536220] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-10 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235399778] [to:+12139359670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285518295] [to:+17036466705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887404] [to:16059412778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-10 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:02 ip-10-0-64-11 mdr: 2016-02-01 11:14:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234836276] [to:+13473799318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048884416] [to:+19047582212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-10 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083394005] [to:+12085010815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:14506757221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604000] [to:17203129608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-11 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15044606213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-20 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-11 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:03 ip-10-0-64-10 mdr: 2016-02-01 11:14:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856683] [to:16153518043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:03 ip-10-0-0-10 mdr: 2016-02-01 11:14:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408775010] [to:+12533361218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-21 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:MSFT] [to:+447451249192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312087248] [to:13146990205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005469] [to:18159144915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149163410] [to:+14387931246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474946352] [to:+12897790300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18126648226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364312] [to:+13203737100] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193073188] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266330] [to:+12497009278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632458945] [to:+18638553142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:13045338082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155582159] [to:+13479196773] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-10 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:15126887175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:04 ip-10-0-0-11 mdr: 2016-02-01 11:14:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:04 ip-10-0-64-11 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-20 mdr: 2016-02-01 11:14:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339013] [to:+447830728428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377835] [to:13126623231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132716227] [to:+14132519155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003430202] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105516136] [to:+17754993417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389921988] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702320285] [to:+12085012693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833658] [to:17022018705] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039D0201] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-21 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242937] [to:+447946297227] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735909] [to:19035162911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784359] [to:18623730813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102075] [to:17058799274] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:05 ip-10-0-64-11 mdr: 2016-02-01 11:14:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102075] [to:17058799274] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-11 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:05 ip-10-0-0-10 mdr: 2016-02-01 11:14:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500039D0202] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19133709536] [to:17852192670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15717818830] [to:17039697411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13189470961] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-11 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-11 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:13127782153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734264367] [to:+19148486925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:06 ip-10-0-0-10 mdr: 2016-02-01 11:14:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:06 ip-10-0-64-10 mdr: 2016-02-01 11:14:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408775010] [to:+12533361218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192053431] [to:+19703006699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082357944] [to:+13477974357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-21 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981747] [to:16264985762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147402] [to:19316199789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807125668] [to:+17786549855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:07 ip-10-0-0-10 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-11 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102948] [to:19089661260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:07 ip-10-0-64-10 mdr: 2016-02-01 11:14:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158256467] [to:16194852647] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-10 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578120807] [to:+13474340233] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-10 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-10 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009178] [to:12064209041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058527] [to:13155708386] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-10 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186492379] [to:+15186500105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008245] [to:12175650025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704624458] [to:+13024002770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-10 mdr: 2016-02-01 11:14:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-0-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486909] [to:13079967773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:08 ip-10-0-64-11 mdr: 2016-02-01 11:14:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995193] [to:12177414525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805812] [to:17174762622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786037] [to:12029044424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:16394710629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-11 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594521] [to:14079075909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-11 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056335] [to:19022922833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296708] [to:12513014970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13174904373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-11 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242090893] [to:+13059014402] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093247469] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-20 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231733] [to:+447914191789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:09 ip-10-0-0-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:09 ip-10-0-64-10 mdr: 2016-02-01 11:14:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703997080] [to:+16784348711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327740] [to:19152135955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879321] [to:15756358205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:10 ip-10-0-64-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062048624] [to:+19148988160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-10 mdr: 2016-02-01 11:14:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15402481428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-10 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012215] [to:17654904775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:10 ip-10-0-0-11 mdr: 2016-02-01 11:14:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002928] [to:18656074837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596122859] [to:+18583604710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:12892742394] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088731753] [to:+16236664711] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955297] [to:16475298995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-20 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462996248] [to:+13013552497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106275059] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:15126887175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364356] [to:+14072163207] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245035368] [to:+17248035417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-11 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864467] [to:16623076157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:11 ip-10-0-0-10 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-10 mdr: 2016-02-01 11:14:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:11 ip-10-0-64-11 mdr: 2016-02-01 11:14:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626558035] [to:+17278600434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182905592] [to:+15817012463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174240009] [to:+19292201587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-21 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738853652] [to:+447451225508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393373] [to:16786994651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043901311] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-11 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235348741] [to:+17074032311] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393373] [to:16786994651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16307859678] [to:16309307000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14074317434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:12 ip-10-0-64-10 mdr: 2016-02-01 11:14:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-11 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:12 ip-10-0-0-10 mdr: 2016-02-01 11:14:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039519731] [to:+19783619759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13858881961] [to:+13853361804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727521274] [to:13035210641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534292] [to:15628816208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-10 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:13 ip-10-0-64-11 mdr: 2016-02-01 11:14:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:13 ip-10-0-0-11 mdr: 2016-02-01 11:14:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178095117] [to:+16467019094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19372196018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146588] [to:19037300135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088894] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244029] [to:18048744207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-11 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:14 ip-10-0-0-10 mdr: 2016-02-01 11:14:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908974] [to:19517225423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:14 ip-10-0-64-11 mdr: 2016-02-01 11:14:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178095117] [to:+16467019094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152971965] [to:+13479803059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109993934] [to:+18312919279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15044606213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968007] [to:14152400262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102948] [to:19732713553] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:15142222548] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-0-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-11 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013703925] [to:+15103222295] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199993042] [to:+17328677713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:15 ip-10-0-64-10 mdr: 2016-02-01 11:14:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034355422] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-10 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16474709957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322337938] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455447] [to:19125707971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417458843] [to:+19715125746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062386160] [to:+15068038800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947873] [to:19043827693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-11 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:16 ip-10-0-64-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:16 ip-10-0-0-10 mdr: 2016-02-01 11:14:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315225481] [to:+14703335489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088433964] [to:+17077507919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314003432] [to:+13479191031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-11 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361652] [to:12532485181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203737882] [to:19102828326] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-10 mdr: 2016-02-01 11:14:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:17 ip-10-0-0-11 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:17 ip-10-0-64-10 mdr: 2016-02-01 11:14:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805689287] [to:+16233837043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569271] [to:14798836437] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192046618] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406840843] [to:+15406286289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712298972] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D30201] -Feb 1 11:14:18 ip-10-0-64-10 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15402481428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-11 mdr: 2016-02-01 11:14:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021620] [to:19025371991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:18 ip-10-0-64-11 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403354403] [to:+13203074334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:18 ip-10-0-0-10 mdr: 2016-02-01 11:14:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D30202] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:17738507270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550435] [to:14508462532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012091952] [to:+19292689532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012215] [to:17654904775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784968] [to:18434504421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190308] [to:12396286695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022181514] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-20 mdr: 2016-02-01 11:14:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447873376789] [to:+447418324797] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:19 ip-10-0-0-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:19 ip-10-0-64-11 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16106999386] [to:16103495475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883680] [to:17758432110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009599] [to:13046101599] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082219] [to:14045799770] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197051972] [to:+14198777028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-10 mdr: 2016-02-01 11:14:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:20 ip-10-0-64-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:15147583030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:20 ip-10-0-0-10 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-10 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323287740] [to:15732391676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096183] [to:14388005943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-11 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-10 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-10 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641094] [to:17174488910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:21 ip-10-0-64-10 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037817] [to:14172088939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-11 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143970286] [to:+16109737920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:21 ip-10-0-0-10 mdr: 2016-02-01 11:14:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194409863] [to:+18193073745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609659290] [to:+19784009366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-21 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502326795] [to:15148296998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-21 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029126808] [to:+17026748807] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-11 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-11 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022619] [to:+17273332749] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-21 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609659290] [to:+19784009366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:22 ip-10-0-0-10 mdr: 2016-02-01 11:14:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:22 ip-10-0-64-10 mdr: 2016-02-01 11:14:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409636] [to:12267924047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-11 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359434] [to:16788625796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031905] [to:19132750260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-11 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:23 ip-10-0-64-10 mdr: 2016-02-01 11:14:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:23 ip-10-0-0-10 mdr: 2016-02-01 11:14:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012215] [to:17654904775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802309593] [to:+14156578137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233137970] [to:+14804390547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602157180] [to:+13478967168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402968247] [to:+19142063815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592709435] [to:+15592232461] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082741373] [to:+16057897030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:24 ip-10-0-64-11 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174386591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:24 ip-10-0-0-10 mdr: 2016-02-01 11:14:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030573] [to:19029510018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252411696] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174904373] [to:+13175204089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-11 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018101476] [to:18016669354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-11 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:25 ip-10-0-0-10 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-11 mdr: 2016-02-01 11:14:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818912] [to:+19027041284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:25 ip-10-0-64-10 mdr: 2016-02-01 11:14:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-10 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789878] [to:19732774907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-21 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451225508] [to:+447738853652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12175650025] [to:+18724008245] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044954029] [to:+17049700679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:26 ip-10-0-0-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-11 mdr: 2016-02-01 11:14:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:26 ip-10-0-64-10 mdr: 2016-02-01 11:14:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144624467] [to:+14388095330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045338082] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236463088] [to:+19802093921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-10 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-0-21 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-11 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-10 mdr: 2016-02-01 11:14:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:27 ip-10-0-64-10 mdr: 2016-02-01 11:14:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263490055] [to:+12262411796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16286001350] [to:+19287564504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065036] [to:12153005744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148232067] [to:+15148198525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796923127] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745384553] [to:+16475569122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-10 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-10 mdr: 2016-02-01 11:14:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184246] [to:17024266722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:28 ip-10-0-0-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:17069790338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:28 ip-10-0-64-11 mdr: 2016-02-01 11:14:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047962460] [to:+19142797598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364703257] [to:+14243364271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087449] [to:15404561205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393373] [to:16786994651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699569] [to:13152462997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016517] [to:17023581148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-10 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209320] [to:19786481026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177344] [to:12679885488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:29 ip-10-0-64-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12083394005] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:29 ip-10-0-0-11 mdr: 2016-02-01 11:14:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092895035] [to:+14088725919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358306969] [to:+14353391601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671467] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080473C70201] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671467] [to:+16042438288] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080473C70202] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673637] [to:17862233980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376949203] [to:+13478684159] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:30 ip-10-0-0-11 mdr: 2016-02-01 11:14:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393437] [to:15416537166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-11 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235721943] [to:+15207278038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:30 ip-10-0-64-10 mdr: 2016-02-01 11:14:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486468] [to:18282609708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143970286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327263649] [to:+16465472222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+14387926960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573865423] [to:+15096512689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007629] [to:18089901764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:13239150620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009529] [to:17326820537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-10 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:31 ip-10-0-0-11 mdr: 2016-02-01 11:14:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850497] [to:15748088496] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:31 ip-10-0-64-11 mdr: 2016-02-01 11:14:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077088045] [to:+14076336833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-11 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379562] [to:16787885278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-11 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886856] [to:+19149338536] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035481176] [to:+14157876925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266735] [to:19738038182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:32 ip-10-0-0-10 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:32 ip-10-0-64-11 mdr: 2016-02-01 11:14:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200632] [to:1971550847528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533914850] [to:+15635387891] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784739] [to:17174062949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15202474049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476805516] [to:+16475039278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-64-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-11 mdr: 2016-02-01 11:14:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925046] [to:15147583030] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:33 ip-10-0-0-10 mdr: 2016-02-01 11:14:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048879053] [to:+12138737003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604710] [to:18596122859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035979559] [to:+15873231529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368296232] [to:+13369382412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-21 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447879287611] [to:+447451212614] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048879053] [to:+12138737003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-21 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418323765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507919] [to:14088433964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-11 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-0-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597598] [to:19144107977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15414096738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-11 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043920989] [to:+12048088478] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:34 ip-10-0-64-10 mdr: 2016-02-01 11:14:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143868636] [to:+18193074692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:12196082233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512533728] [to:+17728004632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-10 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-10 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048744207] [to:+18046244029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-10 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-10 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-11 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-10 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292071] [to:12816037262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:35 ip-10-0-0-11 mdr: 2016-02-01 11:14:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:35 ip-10-0-64-10 mdr: 2016-02-01 11:14:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896754628] [to:+16475039712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175755] [to:16789148197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733880844] [to:+19732985306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038321431] [to:+13474916939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-11 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:36 ip-10-0-64-10 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:36 ip-10-0-0-11 mdr: 2016-02-01 11:14:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652389228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563051] [to:13107201440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164002854] [to:+17162793045] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038403] [to:+13479193718] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855199890] [to:+19122005562] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-10 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666862] [to:17735597249] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548412] [to:16502438489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092897058] [to:+13475086027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155619796] [to:+13477988094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-10 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:37 ip-10-0-64-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:37 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326692906] [to:+17322582284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557880] [to:18632881935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966801] [to:14042454995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503077600] [to:+19709997013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152515712] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-20 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19016743195] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19016743195] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670477] [to:19016743195] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637168] [to:19407355180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736280] [to:13368042553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074867532] [to:+14074424069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862900479] [to:+18133209359] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14249996670] [to:13477375204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:38 ip-10-0-64-10 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:38 ip-10-0-0-11 mdr: 2016-02-01 11:14:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17807125668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017506969] [to:+15169341476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049086745] [to:+13479979915] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-21 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242504] [to:+447581090440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-10 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:39 ip-10-0-64-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-10 mdr: 2016-02-01 11:14:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:39 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312846] [to:13307202009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237766862] [to:+13477865005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328576373] [to:+14696293943] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433173781] [to:+19292200741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733880844] [to:+19732985306] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787895763] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402266753] [to:+18328043923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125071729] [to:+12138736725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307711428] [to:+13017710107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14019990197] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:40 ip-10-0-0-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-10 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:40 ip-10-0-64-11 mdr: 2016-02-01 11:14:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177723163] [to:+18729995525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868286] [to:19712258236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038815053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038815053] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326692906] [to:+17322582284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476384] [to:17022388231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422090] [to:19183991084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-11 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045919239] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:41 ip-10-0-64-10 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286526] [to:15402329963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:41 ip-10-0-0-11 mdr: 2016-02-01 11:14:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506396574] [to:12268087891] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404282] [to:12093272892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-10 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-64-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990309] [to:18723015797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-10 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:42 ip-10-0-0-11 mdr: 2016-02-01 11:14:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096171332] [to:+19282855132] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003230201] -Feb 1 11:14:43 ip-10-0-64-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096944364] [to:+16096144183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003230202] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-11 mdr: 2016-02-01 11:14:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349077698] [to:+19734535345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:43 ip-10-0-0-11 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004510] [to:14148920283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:43 ip-10-0-64-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824043] [to:15858990149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-10 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163161] [to:16098478547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-10 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786481026] [to:+19788209320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931246] [to:15149163410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-10 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000550] [to:19419147503] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:44 ip-10-0-64-11 mdr: 2016-02-01 11:14:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040259] [to:+16139122474] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:44 ip-10-0-0-11 mdr: 2016-02-01 11:14:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720930] [to:12292926387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072986] [to:19195598377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12145276076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895082] [to:18147714545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439911810] [to:+14434530564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753612115] [to:+15758258609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-11 mdr: 2016-02-01 11:14:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-11 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:45 ip-10-0-0-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:45 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048391048] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034373897] [to:+15036478149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-11 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:46 ip-10-0-64-10 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-11 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:46 ip-10-0-0-10 mdr: 2016-02-01 11:14:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:18035522684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045396193] [to:+18046650459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787647278] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-10 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18168007290] [to:18162164010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417515] [to:15197173031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219850] [to:18105169855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15712597894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200861] [to:12072190162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503488] [to:12105016414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044023058] [to:+17278603799] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-11 mdr: 2016-02-01 11:14:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134782] [to:19783374047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:47 ip-10-0-0-10 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:47 ip-10-0-64-11 mdr: 2016-02-01 11:14:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-11 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603748256] [to:+16467389033] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162350401] [to:+12167772174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407080218] [to:+16233838227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429017] [to:17077710481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669804] [to:17734583334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600917] [to:16477933626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12043901311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-10 mdr: 2016-02-01 11:14:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:48 ip-10-0-0-10 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:48 ip-10-0-64-11 mdr: 2016-02-01 11:14:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755820] [to:50257079906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395268] [to:19094542191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236389935] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183035406] [to:+14043412244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012463] [to:14182905592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17653133912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17653133912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884617] [to:13602410397] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-11 mdr: 2016-02-01 11:14:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186397182] [to:+17184169044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:49 ip-10-0-64-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198013] [to:16612682829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883373] [to:15307197163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499494] [to:18159889934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-10 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:49 ip-10-0-0-11 mdr: 2016-02-01 11:14:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824855] [to:17162210505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488785] [to:13144790948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-11 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-11 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-11 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652479178] [to:+12606337306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:50 ip-10-0-0-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12169249659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17042775297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-10 mdr: 2016-02-01 11:14:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:50 ip-10-0-64-11 mdr: 2016-02-01 11:14:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555101] [to:19717709812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012499114] [to:+14152377842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416537166] [to:+15415393437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046267895] [to:+19802097887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106275059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003910201] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18018334001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-64-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142853429] [to:+17726177417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-11 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:51 ip-10-0-0-10 mdr: 2016-02-01 11:14:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003910202] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309641] [to:12297260313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689532] [to:16012091952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702998647] [to:+18484824271] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069888410] [to:+13069938220] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069888410] [to:+13069938220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-10 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472338969] [to:18592293240] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-10 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:52 ip-10-0-0-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174904373] [to:+13175204089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:52 ip-10-0-64-11 mdr: 2016-02-01 11:14:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472005200] [to:+12262431585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692054977] [to:19033376996] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775900] [to:14142029995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702312638] [to:+15152038051] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092402748] [to:+17325824491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:53 ip-10-0-64-10 mdr: 2016-02-01 11:14:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:53 ip-10-0-0-11 mdr: 2016-02-01 11:14:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135631228] [to:+14137289347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123806752] [to:+13475186474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-10 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16087125300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277077] [to:19037491937] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-11 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:54 ip-10-0-0-10 mdr: 2016-02-01 11:14:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:54 ip-10-0-64-11 mdr: 2016-02-01 11:14:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266735] [to:19738038182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172199663] [to:+17063501296] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086070358] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003600302] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018734672] [to:+14157127360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088433964] [to:+17077507919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062077758] [to:+14064042098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049667874] [to:+16307859980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734264367] [to:+19148486925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406446840] [to:+17408796866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475287773] [to:+14259845653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362900303] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14147916585] [to:+19292209553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628816208] [to:+15625534292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369815860] [to:+13366452519] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193718] [to:16067038403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198013] [to:16612682829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140214] [to:16139853003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:55 ip-10-0-64-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-11 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072264577] [to:+16079655966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:55 ip-10-0-0-10 mdr: 2016-02-01 11:14:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206272375] [to:+12627776045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603799] [to:15044023058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009128] [to:14189286731] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179910] [to:17572024465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177702374] [to:+19177229726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538494] [to:13076798165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-10 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286477] [to:18014149223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:56 ip-10-0-64-11 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-10 mdr: 2016-02-01 11:14:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:56 ip-10-0-0-11 mdr: 2016-02-01 11:14:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852842648] [to:+15852824175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047582212] [to:19048884416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-10 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176830555] [to:+15146008076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:57 ip-10-0-0-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062321876] [to:+15068029215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-11 mdr: 2016-02-01 11:14:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:57 ip-10-0-64-10 mdr: 2016-02-01 11:14:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-10 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083341848] [to:+14155945284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523483090] [to:+17863847953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790011] [to:56991646742] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-11 mdr: 2016-02-01 11:14:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504439242] [to:+17277568024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199833796] [to:13193290801] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:15743340945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:58 ip-10-0-64-10 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095330] [to:15144624467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:58 ip-10-0-0-11 mdr: 2016-02-01 11:14:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191419] [to:16158779023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-10 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032621771] [to:+15612319936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-10 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018895] [to:19023053414] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-10 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:59 ip-10-0-64-10 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:14:59 ip-10-0-64-11 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364157] [to:+19715127507] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:14:59 ip-10-0-0-11 mdr: 2016-02-01 11:14:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305876593] [to:13309790508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242942] [to:18043091927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-21 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670687] [to:+447879305654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876088] [to:15138070031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062787] [to:18642008011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338905] [to:+15102547516] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244878] [to:18042525359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-21 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130302] [to:19726073496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008684] [to:18152742508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170720] [to:15756372092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-11 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-21 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-11 mdr: 2016-02-01 11:15:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:00 ip-10-0-0-11 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:00 ip-10-0-64-10 mdr: 2016-02-01 11:15:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408756] [to:15024720826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:01 ip-10-0-0-10 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803007390] [to:+15874040861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0115587999312824] [to:+17402017772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477498489] [to:+12242767605] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603871735] [to:+14706735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252075621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408756] [to:15024720826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-10 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:01 ip-10-0-64-11 mdr: 2016-02-01 11:15:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:01 ip-10-0-0-11 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:01 ip-10-0-0-11 mdr: 2016-02-01 11:15:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16087125300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-11 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-11 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063291502] [to:+14706730180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:02 ip-10-0-64-10 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479827960] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:19085109352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-11 mdr: 2016-02-01 11:15:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:02 ip-10-0-0-10 mdr: 2016-02-01 11:15:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266735] [to:19738038182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137449] [to:15044606213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18187985047] [to:18188007845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:15148258269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597875] [to:17808845956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602296838] [to:+12602777396] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882990] [to:15306327826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-10 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:03 ip-10-0-64-11 mdr: 2016-02-01 11:15:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:03 ip-10-0-0-10 mdr: 2016-02-01 11:15:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649389] [to:15673153015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-11 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613512] [to:12253850388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-20 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447904774706] [to:+447418332855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-20 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008684] [to:18152742508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-11 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-11 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044023058] [to:+17278603799] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032960] [to:17788085164] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:04 ip-10-0-64-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:04 ip-10-0-0-10 mdr: 2016-02-01 11:15:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-21 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147715792] [to:+15146007246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362232547] [to:+19365493853] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290298] [to:+13069927789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362232547] [to:+19365493853] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14502326795] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173794209] [to:+16466288063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132308199] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413997958] [to:+19895334966] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702847104] [to:+17186755485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479926597] [to:+12039904317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803007390] [to:+15874040861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144945048] [to:+13476908522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170102] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024428530] [to:+13025957693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864421] [to:14014058044] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-20 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-0-10 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025052122] [to:+13023744844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148000] [to:213676702796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-10 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:05 ip-10-0-64-11 mdr: 2016-02-01 11:15:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837043] [to:14805689287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084254285] [to:+17185676650] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079075909] [to:+19172594521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:17575098255] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082833329] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-10 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314353] [to:12152784918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026604871] [to:+12026609492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:06 ip-10-0-64-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806656714] [to:+19282974207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:06 ip-10-0-0-11 mdr: 2016-02-01 11:15:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824275] [to:17327319820] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-10 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146736] [to:19083319505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:07 ip-10-0-64-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-11 mdr: 2016-02-01 11:15:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009537] [to:17097437519] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:07 ip-10-0-0-10 mdr: 2016-02-01 11:15:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652479178] [to:+12606337306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691210] [to:13472965701] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491157] [to:18653089786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808166] [to:18143677730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372150741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198969255] [to:+17194266485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645296242] [to:+14242768105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048898] [to:16136005697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102116] [to:17403369772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132848791] [to:+18133086866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:08 ip-10-0-0-11 mdr: 2016-02-01 11:15:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:08 ip-10-0-64-10 mdr: 2016-02-01 11:15:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:09 ip-10-0-0-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198013] [to:15627260356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-10 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:13309575021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:09 ip-10-0-0-21 mdr: 2016-02-01 11:15:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672837] [to:+447719748679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:09 ip-10-0-0-10 mdr: 2016-02-01 11:15:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:09 ip-10-0-64-11 mdr: 2016-02-01 11:15:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514725078] [to:+14158908974] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-11 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-10 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-10 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-11 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-10 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328264] [to:13215766521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-10 mdr: 2016-02-01 11:15:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047026439] [to:+13477691448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:10 ip-10-0-64-11 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:10 ip-10-0-0-20 mdr: 2016-02-01 11:15:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673943] [to:+447941073968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031772] [to:17575937930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482520194] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093921] [to:14236463088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039260] [to:13065263861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:11 ip-10-0-0-10 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:11 ip-10-0-64-11 mdr: 2016-02-01 11:15:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790011] [to:56991646742] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187572698] [to:+16466288758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-20 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447704045859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143318250] [to:+17162790512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748088496] [to:+15744850497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855204076] [to:+15852821499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187572698] [to:+16466288758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13184641644] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-11 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-11 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:12 ip-10-0-64-10 mdr: 2016-02-01 11:15:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:12 ip-10-0-0-10 mdr: 2016-02-01 11:15:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007246] [to:15147715792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425950] [to:16626332495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-20 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788260320] [to:+447451236230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272146] [to:+18133243811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376701357] [to:+16465479846] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049126179] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506396574] [to:12268087891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15878897450] [to:+15873231722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383538] [to:15635801118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-10 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:14373453880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452212] [to:13363803340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-11 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329123608] [to:+12019956045] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184990997] [to:+13054174755] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19034314102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:13 ip-10-0-0-10 mdr: 2016-02-01 11:15:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:13 ip-10-0-64-11 mdr: 2016-02-01 11:15:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889181] [to:12522029780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013508420] [to:+12136946214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124125] [to:14844325018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016669354] [to:+18018101476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-10 mdr: 2016-02-01 11:15:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:14 ip-10-0-64-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389314550] [to:+14388079525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:14 ip-10-0-0-11 mdr: 2016-02-01 11:15:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022595] [to:+19149089297] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318293] [to:12699535432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862950836] [to:+13134688366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908840] [to:12675794194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908840] [to:12675794194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500038A0201] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208202] [to:19843331640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307811640] [to:+13126311221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038A0202] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13155524686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:17243326744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-11 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-11 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-64-10 mdr: 2016-02-01 11:15:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:15 ip-10-0-0-10 mdr: 2016-02-01 11:15:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134202916] [to:+18133206933] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166379] [to:13049529021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174039644] [to:+12132952549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313673] [to:18505030332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634180] [to:19175647487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222398] [to:15136030839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512922787] [to:+19512995690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247866] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407043941] [to:+19404638848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13076798165] [to:+17193538494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-11 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:16 ip-10-0-64-10 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-10 mdr: 2016-02-01 11:15:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:16 ip-10-0-0-20 mdr: 2016-02-01 11:15:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-20 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023730391] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290298] [to:+13069927789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-20 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-10 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-11 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:17 ip-10-0-64-11 mdr: 2016-02-01 11:15:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:17 ip-10-0-0-10 mdr: 2016-02-01 11:15:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364356] [to:+19142068755] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161813] [to:12255059091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022181514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805689287] [to:+16233837043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782917855] [to:+16025528305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668273] [to:17182009300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790011] [to:56991646742] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-64-10 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-10 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:18 ip-10-0-0-11 mdr: 2016-02-01 11:15:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712258236] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720930] [to:12292926387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-11 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18433257762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048896314] [to:+15617665916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19075659411] [to:+19172835693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-11 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:19 ip-10-0-64-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965132] [to:12139440733] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:19 ip-10-0-0-10 mdr: 2016-02-01 11:15:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168304650] [to:+16475567419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182010] [to:+18724008184] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142029995] [to:+12627775900] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507919] [to:14088433964] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16129305928] [to:16517476320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082833329] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082280537] [to:+17142153727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-20 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238072] [to:+447443419116] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337606] [to:12396452397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364767] [to:+14422816916] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032971] [to:17247194389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702170671] [to:+18729996288] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709741192] [to:+12162396094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039260] [to:13065263861] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003DF0201] -Feb 1 11:15:20 ip-10-0-64-10 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-11 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:20 ip-10-0-0-10 mdr: 2016-02-01 11:15:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245035368] [to:+17248035417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095418742] [to:+15612576741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15144437199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-11 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-10 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863604] [to:14344716445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-11 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:21 ip-10-0-64-10 mdr: 2016-02-01 11:15:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:21 ip-10-0-0-11 mdr: 2016-02-01 11:15:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-10 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-10 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864421] [to:14014058044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127350952] [to:+14125354001] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:22 ip-10-0-0-10 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:22 ip-10-0-64-11 mdr: 2016-02-01 11:15:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027030573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003DF0202] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062392380] [to:+13479801492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153253272] [to:13342030709] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032204055] [to:+16025721880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143338860] [to:+15852822555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-11 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-11 mdr: 2016-02-01 11:15:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:23 ip-10-0-64-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:23 ip-10-0-0-10 mdr: 2016-02-01 11:15:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:24 ip-10-0-0-11 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16032098571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-10 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:24 ip-10-0-0-10 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-11 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:24 ip-10-0-0-11 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:13364645198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-11 mdr: 2016-02-01 11:15:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-11 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:24 ip-10-0-64-10 mdr: 2016-02-01 11:15:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364146] [to:+13203074556] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473598272] [to:+18133086141] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057944327] [to:+16474915417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403961243] [to:+14403594458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023581148] [to:+17029016517] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13102569805] [to:+13234984987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146736] [to:19174703738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:15129717640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-11 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-0-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-11 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:17605323103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157097130] [to:+13476067816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:25 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127723] [to:+19199164481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801427] [to:12084068641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108943501] [to:+17279166398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263123594] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242942] [to:18042776626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:26 ip-10-0-64-11 mdr: 2016-02-01 11:15:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-11 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783572402] [to:+12138733770] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:26 ip-10-0-0-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-10 mdr: 2016-02-01 11:15:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666541] [to:17087850373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073491] [to:17734029085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235348741] [to:+17074032311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172028448] [to:+16317626572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-64-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-11 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:27 ip-10-0-0-10 mdr: 2016-02-01 11:15:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14324257138] [to:+14706733706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003610201] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491157] [to:18653089786] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912464] [to:16042435069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-21 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320259] [to:+447864540950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028291420] [to:+19172751574] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14324257138] [to:+14706733706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003610202] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168071826] [to:+14158537026] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018148092] [to:+16319800847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373774] [to:17573188106] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193313999] [to:+12194408361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-10 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676959] [to:13309577811] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:28 ip-10-0-0-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:28 ip-10-0-64-11 mdr: 2016-02-01 11:15:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13127727214] [to:+18133316316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712038853] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-11 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:29 ip-10-0-64-11 mdr: 2016-02-01 11:15:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:29 ip-10-0-0-10 mdr: 2016-02-01 11:15:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702441347] [to:+13053400936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108679621] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215121213] [to:+14076333744] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138349] [to:15806063256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164059543] [to:+16413166003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-0-10 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:30 ip-10-0-64-10 mdr: 2016-02-01 11:15:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802454584] [to:+13302370429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402222086] [to:19403663300] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:16785129333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-0-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863170197] [to:+17277053382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-10 mdr: 2016-02-01 11:15:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:31 ip-10-0-64-11 mdr: 2016-02-01 11:15:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192283] [to:12175069593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898882615] [to:+12898042489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293768904] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18066624968] [to:+14695325487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:13235930220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032007055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129730265] [to:+17089467128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:32 ip-10-0-64-11 mdr: 2016-02-01 11:15:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:16787895763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:32 ip-10-0-0-11 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175647487] [to:+19176634180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367560588] [to:+13369381752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049453385] [to:+17278578423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965977] [to:12033088413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133445896] [to:+19142063866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802784949] [to:+13478028171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149963091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:33 ip-10-0-64-10 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317532] [to:13097373851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053216978] [to:+12892757140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-10 mdr: 2016-02-01 11:15:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147845501] [to:+13053400270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:33 ip-10-0-0-11 mdr: 2016-02-01 11:15:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136005697] [to:+16136048898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042224760] [to:+14242839317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290298] [to:+13069927789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-10 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-10 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040920] [to:15093458376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013025011] [to:+12404540716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:34 ip-10-0-0-11 mdr: 2016-02-01 11:15:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066505772] [to:+14064043199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:34 ip-10-0-64-11 mdr: 2016-02-01 11:15:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-11 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-21 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016213031] [to:+12016800509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402809900] [to:+18583604015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-11 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-10 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19372196018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:35 ip-10-0-0-11 mdr: 2016-02-01 11:15:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:18184867676] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:35 ip-10-0-64-10 mdr: 2016-02-01 11:15:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127797] [to:17602133640] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008184] [to:12179182010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-11 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512420313] [to:+14692056767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400980201] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152347765] [to:+16466999889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:36 ip-10-0-64-11 mdr: 2016-02-01 11:15:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257291] [to:12527171269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:36 ip-10-0-0-10 mdr: 2016-02-01 11:15:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706172212] [to:+15028041400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433260398] [to:+14437204329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191111] [to:12629308417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154361346] [to:+13475087920] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594877] [to:19547087771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607605] [to:13095307036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988321] [to:19142572130] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659788] [to:16062052244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049910424] [to:+19142815866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-11 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512420313] [to:+14692056767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400980202] -Feb 1 11:15:37 ip-10-0-64-11 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:37 ip-10-0-0-10 mdr: 2016-02-01 11:15:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069133931] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:37 ip-10-0-64-10 mdr: 2016-02-01 11:15:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937942] [to:14199795006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064780580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476106284] [to:+14697516501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995418] [to:19085109352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:17183145988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783718] [to:19177044806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485087385] [to:+13134688660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-64-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034314102] [to:+19033074918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342292493] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-10 mdr: 2016-02-01 11:15:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196419731] [to:+19193072505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:38 ip-10-0-0-11 mdr: 2016-02-01 11:15:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092800537] [to:+16477997300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147300081] [to:+19148486524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298054423] [to:+19142286675] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261049] [to:17034856351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-10 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14389323129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-10 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947195] [to:19046970517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:39 ip-10-0-64-11 mdr: 2016-02-01 11:15:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:39 ip-10-0-0-10 mdr: 2016-02-01 11:15:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:12266003108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:18028585558] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614528765] [to:+12135455721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-20 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447455205160] [to:+447520671851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-10 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:40 ip-10-0-0-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732017] [to:12405386051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:40 ip-10-0-64-11 mdr: 2016-02-01 11:15:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329123608] [to:+12019956045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-10 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-11 mdr: 2016-02-01 11:15:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824855] [to:17162210505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096389028] [to:+17097000583] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:41 ip-10-0-64-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614960674] [to:+19543639342] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-10 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:41 ip-10-0-0-11 mdr: 2016-02-01 11:15:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063150080] [to:+13479378350] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720119] [to:19124093094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002147] [to:17708003449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-21 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418323765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040138] [to:14502300380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676959] [to:12348174205] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16082791045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719959] [to:14806667809] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852448761] [to:+13479139015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472624297] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-11 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-10 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:42 ip-10-0-0-11 mdr: 2016-02-01 11:15:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:42 ip-10-0-64-10 mdr: 2016-02-01 11:15:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186899394] [to:+15817008489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-11 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749118] [to:14196188562] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448992] [to:15015028962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-10 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042098] [to:14062077758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:43 ip-10-0-0-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-11 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:43 ip-10-0-64-10 mdr: 2016-02-01 11:15:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-21 mdr: 2016-02-01 11:15:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819676] [to:15673772942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623683212] [to:+14242836598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-11 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048391048] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237146348] [to:+12139354558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435150780] [to:+13025958138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-21 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:44 ip-10-0-0-21 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-11 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:44 ip-10-0-64-10 mdr: 2016-02-01 11:15:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492814596] [to:17406803773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19252157323] [to:+12342315108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506757221] [to:+14502326795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198969255] [to:+17194266485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808859646] [to:+15874090821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574143955] [to:+18046242177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672044151] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-21 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202537787] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-10 mdr: 2016-02-01 11:15:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:45 ip-10-0-0-11 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:45 ip-10-0-64-10 mdr: 2016-02-01 11:15:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048091100] [to:+13203075440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-10 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396069] [to:12167677617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043895] [to:12109201365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-10 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17099868732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-10 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094519827] [to:+19162908740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-10 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844325018] [to:+14844124125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-10 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:46 ip-10-0-64-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035417] [to:17245035368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:46 ip-10-0-0-11 mdr: 2016-02-01 11:15:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-11 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15809270948] [to:+14695326377] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307126190] [to:+17743570125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:17183145988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488536] [to:17703749498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005312] [to:17097644100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996609] [to:17206468421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473100] [to:12625278944] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:47 ip-10-0-64-10 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-10 mdr: 2016-02-01 11:15:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:47 ip-10-0-0-11 mdr: 2016-02-01 11:15:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084068641] [to:+13479801427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803199408] [to:+14072162720] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197920481] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190737] [to:12079511430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12169249659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723169687] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073196074] [to:+16465319872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168304650] [to:+16475567419] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395268] [to:19094542191] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-11 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-11 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:48 ip-10-0-0-10 mdr: 2016-02-01 11:15:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318293] [to:12699535432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:48 ip-10-0-64-10 mdr: 2016-02-01 11:15:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243283033] [to:+14126940223] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148296998] [to:+14502326795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-21 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-11 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:49 ip-10-0-64-10 mdr: 2016-02-01 11:15:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863226] [to:15157799017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:49 ip-10-0-0-10 mdr: 2016-02-01 11:15:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318942876] [to:+16317707113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049126179] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065290232] [to:+13069932980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013041] [to:+13053404063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470730] [to:18068911269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189510907] [to:+18194140246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174488910] [to:+16465641094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375158178] [to:+17408798879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177397] [to:17727776680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555913] [to:15199992335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908816] [to:19362291178] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034048847] [to:+15189305390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-21 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:50 ip-10-0-64-11 mdr: 2016-02-01 11:15:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:18608341380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-11 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659644504] [to:+16465319699] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:50 ip-10-0-0-10 mdr: 2016-02-01 11:15:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134613665] [to:+12105560418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168304650] [to:+16475567419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697215] [to:18572515533] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545574081] [to:+13053405149] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:19089021138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025355064] [to:+13477146002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024873507] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139578555] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046200218] [to:+15865747629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:51 ip-10-0-0-11 mdr: 2016-02-01 11:15:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:51 ip-10-0-64-10 mdr: 2016-02-01 11:15:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042015158] [to:+15103137337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032621771] [to:+15612319936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:52 ip-10-0-64-11 mdr: 2016-02-01 11:15:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:52 ip-10-0-0-10 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17732363818] [to:+19292209692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055087677] [to:+19172610483] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159813496] [to:+16158431585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:18135037758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161813] [to:16623028017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-11 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-64-11 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043043132] [to:+19046948403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:53 ip-10-0-0-10 mdr: 2016-02-01 11:15:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995455] [to:17096326277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277932] [to:13053454776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045357487] [to:+13866017588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055087677] [to:+19172610483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014068] [to:18126749082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-20 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092386828] [to:+17864800149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15303602594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15024922389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682797] [to:17068726884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016176533] [to:+14017680021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15024922389] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467128] [to:13129730265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041557] [to:15062210094] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-64-10 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-11 mdr: 2016-02-01 11:15:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850497] [to:15748088496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:54 ip-10-0-0-10 mdr: 2016-02-01 11:15:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020709] [to:+15874059049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733880844] [to:+19735479072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862233980] [to:+17865673637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145998571] [to:+17187510062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024804190] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174177164] [to:+18046245374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+19142065036] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036366878] [to:+17193538722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656583095] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196082233] [to:+19142671738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605388049] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414184495] [to:+19712488394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157859110] [to:+16158075902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833772] [to:14096702168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135079485] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154590297] [to:+12679232812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-10 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-0-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-10 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000550] [to:14077152495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:55 ip-10-0-64-11 mdr: 2016-02-01 11:15:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:15058791445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-21 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848405332] [to:+19148250371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062052244] [to:+19172659788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-20 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792909450] [to:+447418325969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232413848] [to:+16233836266] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033074918] [to:19034314102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18129460596] [to:+12193701959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12348174205] [to:+12678676959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-10 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029906376] [to:+14694127885] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:56 ip-10-0-64-11 mdr: 2016-02-01 11:15:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:56 ip-10-0-0-11 mdr: 2016-02-01 11:15:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363803340] [to:+13366452212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003420201] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003420202] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165405445] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861821] [to:16783611013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-10 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-20 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:57 ip-10-0-64-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195200685] [to:+18193033371] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:57 ip-10-0-0-11 mdr: 2016-02-01 11:15:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296740] [to:17044041697] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764941] [to:12193809379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948102] [to:19045998575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939216] [to:19013643413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023008644] [to:+17027478851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328757428] [to:+13866016469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165342532] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202073974] [to:+12602327143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522313456] [to:+19014449072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213158] [to:12516439103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-10 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854144457] [to:+15852822735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:58 ip-10-0-0-11 mdr: 2016-02-01 11:15:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13125099864] [to:12109045694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:58 ip-10-0-64-10 mdr: 2016-02-01 11:15:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022018705] [to:+14096833658] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195200685] [to:+18193033371] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308633] [to:+13065004481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063150080] [to:+13479378350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056880751] [to:+18638555698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143634] [to:19549371606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036748012] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-11 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028322223] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202314] [to:16063758961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:15:59 ip-10-0-0-10 mdr: 2016-02-01 11:15:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788489622] [to:+17749921802] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-10 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:15:59 ip-10-0-64-11 mdr: 2016-02-01 11:15:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635919] [to:18176297862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195200685] [to:+18193033371] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199795006] [to:+17274937942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502614818] [to:+13477737038] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205196319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955073] [to:13023584975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205196319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248331621] [to:+17243200664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857142745] [to:+15852821482] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:00 ip-10-0-0-11 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:00 ip-10-0-64-10 mdr: 2016-02-01 11:16:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:13197753859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425404] [to:12704042589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15875960815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007864] [to:14087063128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220366] [to:12175504879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-21 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-10 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083506070] [to:+17328677534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075912997] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:15197920481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-10 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:01 ip-10-0-64-11 mdr: 2016-02-01 11:16:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:01 ip-10-0-0-11 mdr: 2016-02-01 11:16:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328443] [to:15032099766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15144437199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135079485] [to:+15133860427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14404632802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-10 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079967773] [to:+19148486909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745921] [to:17788826602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056232096] [to:+17329869123] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-11 mdr: 2016-02-01 11:16:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:02 ip-10-0-0-11 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:02 ip-10-0-64-10 mdr: 2016-02-01 11:16:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139369] [to:+14703336167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17803183777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148814] [to:19157409297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065351879] [to:+19085160343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305362] [to:15184152536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808210088] [to:+15873158148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253109530] [to:19165195238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022772559] [to:+13145488484] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378589] [to:16783408636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472822803] [to:+17027181439] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049910424] [to:+19142815866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106215391] [to:+15204336298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419838] [to:13344981496] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419838] [to:13344981496] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:03 ip-10-0-64-10 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348319] [to:18596127059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079005245] [to:+15085562554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:03 ip-10-0-0-11 mdr: 2016-02-01 11:16:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-10 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-10 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094915] [to:17047705962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059188575] [to:+13476762136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-10 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-11 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-10 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:04 ip-10-0-0-20 mdr: 2016-02-01 11:16:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:04 ip-10-0-64-11 mdr: 2016-02-01 11:16:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12066735243] [to:+17325824416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029678] [to:17056412177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197920481] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625426733] [to:+13477989352] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784176399] [to:+16172193242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566691401] [to:+16096144354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192213780] [to:+13069938249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277932] [to:13053454776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725847150] [to:+17727668489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253096140] [to:+14253338231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-64-11 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-10 mdr: 2016-02-01 11:16:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:05 ip-10-0-0-11 mdr: 2016-02-01 11:16:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142026707] [to:+14073372139] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997528] [to:16472036984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-21 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179220674] [to:+13149320713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138585835] [to:+15134282047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:06 ip-10-0-0-11 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:06 ip-10-0-64-10 mdr: 2016-02-01 11:16:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:18562005472] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138081659] [to:+18133244490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192223863] [to:+12262410722] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-11 mdr: 2016-02-01 11:16:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-11 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784176399] [to:+16172193242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:07 ip-10-0-64-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-20 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447442506551] [to:+447451200529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F10201] -Feb 1 11:16:07 ip-10-0-64-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:07 ip-10-0-0-10 mdr: 2016-02-01 11:16:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149963091] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-21 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19512370215] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-21 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13033517082] [to:17205875212] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253109530] [to:19165195238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548506045] [to:+17542009235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996609] [to:17206468421] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-0-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192223863] [to:+12262410722] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-10 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:08 ip-10-0-64-11 mdr: 2016-02-01 11:16:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411375] [to:12512221830] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073497453] [to:+17743570429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-21 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604500503] [to:+13479805959] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127360] [to:13018734672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-11 mdr: 2016-02-01 11:16:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-11 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:09 ip-10-0-0-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:09 ip-10-0-64-10 mdr: 2016-02-01 11:16:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13472624297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675702] [to:13022647062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220366] [to:13125855013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015092] [to:14189576337] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696841500] [to:+19039005799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364828473] [to:+13476675028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-10 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886788] [to:+19148291709] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-21 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:10 ip-10-0-0-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:10 ip-10-0-64-11 mdr: 2016-02-01 11:16:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174386591] [to:+15178615956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168577397] [to:+16474980605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346721295] [to:+19177227060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146120326] [to:+18722535248] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-21 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447442506551] [to:+447451200529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F10202] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503067616] [to:+17784025167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809699] [to:15134290524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086705988] [to:+16465473544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:11 ip-10-0-0-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787895763] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-10 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:11 ip-10-0-64-11 mdr: 2016-02-01 11:16:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12027136481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17087317578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258806] [to:16185315251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12402455887] [to:12022775560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158779023] [to:+18572191419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-10 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:12 ip-10-0-64-11 mdr: 2016-02-01 11:16:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:12 ip-10-0-0-11 mdr: 2016-02-01 11:16:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064719295] [to:+14804394160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500034A0201] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138350] [to:19042354144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-21 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447746878103] [to:+447451249229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744844] [to:13025052122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863839955] [to:+13053406965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17022018991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-20 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822374] [to:13152006926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708003449] [to:+14049002147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018659] [to:12629095976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639908090] [to:+18638553169] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-20 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415393034] [to:15415437065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:13 ip-10-0-0-10 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013859] [to:18634403535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:13 ip-10-0-64-11 mdr: 2016-02-01 11:16:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192046618] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064719295] [to:+14804394160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500034A0202] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799068453] [to:+19792326637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673637] [to:17862233980] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152135955] [to:+14695327740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096748607] [to:+18584804137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16474952279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:16196550074] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-10 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475505196] [to:+16049015351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:14 ip-10-0-0-21 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447719748679] [to:+447520672837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-11 mdr: 2016-02-01 11:16:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784176399] [to:+16172193242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:14 ip-10-0-64-10 mdr: 2016-02-01 11:16:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725608] [to:18285770058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15403836164] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065916008] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125934] [to:19188458396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345231] [to:17705392912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184030701] [to:+18188563552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-10 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032204055] [to:+15204335477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:15 ip-10-0-64-11 mdr: 2016-02-01 11:16:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:15 ip-10-0-0-10 mdr: 2016-02-01 11:16:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672131582] [to:+19703156775] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295639841] [to:+14242868919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103362609] [to:+14435299773] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188921650] [to:+19099395121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939181] [to:19188518008] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064712559] [to:+14388077739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053149355] [to:+18053942254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301372] [to:16578882279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819498] [to:15672191122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:16 ip-10-0-64-11 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372139] [to:17142026707] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:16 ip-10-0-0-10 mdr: 2016-02-01 11:16:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282230606] [to:+12134786989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-10 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008489] [to:14186899394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364229] [to:+15617666697] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-21 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675602656] [to:+12138619574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017588] [to:19045357487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-11 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045998575] [to:+19046948102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:17 ip-10-0-64-11 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:17 ip-10-0-0-10 mdr: 2016-02-01 11:16:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734029085] [to:+13203073491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089160247] [to:+13126311924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145815] [to:14422459755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039697411] [to:+15717818830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-10 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135709] [to:15595123671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-21 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:18 ip-10-0-64-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068028460] [to:15148254662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:13477379513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:18 ip-10-0-0-11 mdr: 2016-02-01 11:16:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403171198] [to:+13477361071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042998331] [to:+18046246239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-10 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:19 ip-10-0-0-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-10 mdr: 2016-02-01 11:16:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:19 ip-10-0-64-11 mdr: 2016-02-01 11:16:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-11 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18196927166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-21 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573185213] [to:+18572559806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:14129746663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-20 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643770095] [to:+13479971058] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-11 mdr: 2016-02-01 11:16:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471631] [to:13045349939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:20 ip-10-0-64-11 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:20 ip-10-0-0-10 mdr: 2016-02-01 11:16:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008489] [to:14186899394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642140] [to:19416238866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-10 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231855] [to:17812907659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231855] [to:17812907659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-21 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240745] [to:+447949317709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322337938] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:13155293321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-10 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:21 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194447] [to:13409983308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:21 ip-10-0-0-10 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186183] [to:12055208282] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16694009950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022467053] [to:+13477697617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444370] [to:13175154053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173765078] [to:+19142065244] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:1803308994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302405] [to:13479220407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:12482520194] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709800777] [to:+19148608499] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:22 ip-10-0-64-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032621771] [to:+15612319936] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-10 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488949079] [to:+13134247930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:22 ip-10-0-0-11 mdr: 2016-02-01 11:16:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166379] [to:13049235090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19259612067] [to:+15129526543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096511189] [to:15093088848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202040182] [to:+19709996036] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062077758] [to:+14064042098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146155] [to:19805055307] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318265] [to:15867189898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:23 ip-10-0-64-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18125984441] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-11 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:23 ip-10-0-0-10 mdr: 2016-02-01 11:16:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183181263] [to:+13479378787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-20 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525934] [to:14244778751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073542799] [to:+17077238192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389893726] [to:+14388085823] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-11 mdr: 2016-02-01 11:16:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:24 ip-10-0-64-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:24 ip-10-0-0-10 mdr: 2016-02-01 11:16:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19314096230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478892452] [to:+16474952667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099868732] [to:+16474916487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666398] [to:17736191807] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214585136] [to:+16193833315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-20 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238928] [to:+447549499702] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16787704613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407280977] [to:+17279353363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015893943] [to:+19084095147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-64-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177309580] [to:+13866015652] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-11 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:25 ip-10-0-0-10 mdr: 2016-02-01 11:16:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055073] [to:19142462005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041400] [to:12706172212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703152718] [to:17062849122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377230] [to:15309170824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-0-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044888815] [to:+19142812598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-11 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044888815] [to:+19142812598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:26 ip-10-0-64-10 mdr: 2016-02-01 11:16:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703195301] [to:+15624733826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542581620] [to:+15103353298] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988033] [to:+12138064090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602296838] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405092699] [to:+13477973721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025040919] [to:+17029015598] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19843331640] [to:+19148208202] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378589] [to:16783408636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635214078] [to:+18638557058] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12126039135] [to:+15513336865] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13349910880] [to:+18583048613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-10 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:27 ip-10-0-0-10 mdr: 2016-02-01 11:16:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049953962] [to:+12048172688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:27 ip-10-0-64-11 mdr: 2016-02-01 11:16:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136036184] [to:16812148812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-10 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148009946] [to:+14693537168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-21 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447701324703] [to:+447451217199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736112] [to:19376385076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025090921] [to:+16463491316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:28 ip-10-0-0-10 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608341380] [to:+13473898357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:28 ip-10-0-64-11 mdr: 2016-02-01 11:16:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196609796] [to:+12264558871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538494] [to:13076798165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-20 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192769970] [to:+17206234858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19204109777] [to:+12627774900] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437516106] [to:+17702004798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506825893] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778695] [to:15625473302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676843] [to:18503219596] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:29 ip-10-0-0-10 mdr: 2016-02-01 11:16:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690110] [to:13139995124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-10 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:29 ip-10-0-64-11 mdr: 2016-02-01 11:16:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16399998161] [to:+13069927681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013967362] [to:+19733157488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-21 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572368260] [to:+18572194300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197985052] [to:+19199164125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:12132745974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049453385] [to:+17278578423] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:30 ip-10-0-0-10 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:30 ip-10-0-64-11 mdr: 2016-02-01 11:16:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334292] [to:19898917022] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126637437] [to:+12026015963] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689483] [to:18189633845] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034969947] [to:+15034868481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-11 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788826602] [to:+17727745921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:31 ip-10-0-64-11 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069938220] [to:13069888410] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:31 ip-10-0-0-10 mdr: 2016-02-01 11:16:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022226] [to:17406895104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993080] [to:12705668291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492082] [to:18504549775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-20 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278225] [to:14057793728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677992] [to:14014976513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615956] [to:15174386591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-11 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029199149] [to:+14025002617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-64-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345231] [to:17705392912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154806] [to:+18582568094] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063291502] [to:+14706730180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:32 ip-10-0-0-10 mdr: 2016-02-01 11:16:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369384747] [to:+13369383411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672682] [to:12035439684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-11 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:17186354873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-10 mdr: 2016-02-01 11:16:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:33 ip-10-0-0-10 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:33 ip-10-0-64-11 mdr: 2016-02-01 11:16:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798675] [to:19096420587] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559806] [to:18573185213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025917022] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18032621771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058902876] [to:+17053026964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:34 ip-10-0-0-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338554] [to:+16475569240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-10 mdr: 2016-02-01 11:16:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:34 ip-10-0-64-11 mdr: 2016-02-01 11:16:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043940] [to:14067020581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064719295] [to:+14804394160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018424867] [to:19015059856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19376077633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972302] [to:17807959000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798032] [to:14063172040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798032] [to:14063172040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170437] [to:15053214510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167256979] [to:+16475039223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-0-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-10 mdr: 2016-02-01 11:16:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046102578] [to:+15612910814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:35 ip-10-0-64-11 mdr: 2016-02-01 11:16:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302405] [to:15626862690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148212] [to:+19785337669] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274599919] [to:+14158536872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182280061] [to:+13202975739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077556200] [to:+13479789589] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198053477] [to:+13473439765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612710375] [to:+19368511519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:36 ip-10-0-0-11 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:36 ip-10-0-64-10 mdr: 2016-02-01 11:16:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522564744] [to:+17162792332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173979520] [to:+18638552269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467320] [to:17246506843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12093247469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069938220] [to:13069888410] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:13302842537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364536] [to:+13025852875] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300885] [to:12023416472] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046124418] [to:+16574008218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726210573] [to:+17726177440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:37 ip-10-0-0-11 mdr: 2016-02-01 11:16:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503067616] [to:+17784025167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:37 ip-10-0-64-10 mdr: 2016-02-01 11:16:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-10 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022722418] [to:+13025957780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-10 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-10 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475334880] [to:+16475569353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-10 mdr: 2016-02-01 11:16:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036248566] [to:+17636346749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13155524686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-10 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406184] [to:15595563226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:38 ip-10-0-64-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415414] [to:17658607330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:38 ip-10-0-0-11 mdr: 2016-02-01 11:16:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568706] [to:16477610874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189510907] [to:+18194140246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361692] [to:12292054977] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637127029] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:1916705774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-20 mdr: 2016-02-01 11:16:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218022] [to:+447719782529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:39 ip-10-0-0-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504215054] [to:+14387927015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-11 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:39 ip-10-0-64-10 mdr: 2016-02-01 11:16:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:12108679621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130600] [to:12545417692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046156246] [to:+13478961887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522313456] [to:+19014449072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-20 mdr: 2016-02-01 11:16:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415799544] [to:+447520627702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:40 ip-10-0-0-11 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:16106791024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:40 ip-10-0-64-10 mdr: 2016-02-01 11:16:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732556] [to:14787033042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018334001] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733032657] [to:16307857439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17098995524] [to:+15817017008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18286740334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:41 ip-10-0-0-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-11 mdr: 2016-02-01 11:16:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:41 ip-10-0-64-10 mdr: 2016-02-01 11:16:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145679330] [to:+14388071572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-20 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447723432310] [to:+447520609962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:14182918680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918489] [to:18193072491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625455587] [to:+17604748326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316918908] [to:+14055823095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-11 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:42 ip-10-0-0-10 mdr: 2016-02-01 11:16:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:42 ip-10-0-64-11 mdr: 2016-02-01 11:16:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748917] [to:18103575300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316035375] [to:+14695323765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359434] [to:16788625796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269353] [to:15628503060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035932884] [to:+19782169160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034596330] [to:+18133081488] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436857076] [to:+19108888252] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-20 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577240115] [to:+13477972642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400928] [to:15703354078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843357229] [to:+14844207974] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252104201] [to:+12138225426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409742014] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:43 ip-10-0-64-10 mdr: 2016-02-01 11:16:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296993] [to:12523404634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:43 ip-10-0-0-11 mdr: 2016-02-01 11:16:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364710040] [to:+19783231437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827532] [to:14133285333] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348747] [to:18432244359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305244790] [to:+14582025806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076567331] [to:+14242839875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037817] [to:14172088939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969861] [to:15182908458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144653583] [to:+12167990932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:44 ip-10-0-0-10 mdr: 2016-02-01 11:16:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-10 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:44 ip-10-0-64-11 mdr: 2016-02-01 11:16:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028184555] [to:+19027031629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283207677] [to:+14073372677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996036] [to:17202040182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472799185] [to:+16572076488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:45 ip-10-0-64-10 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:45 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239019098] [to:+12135455530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274599919] [to:+14158536872] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572465687] [to:+16172139392] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404905897] [to:+19173834959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13608498113] [to:13604647070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-11 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404905897] [to:+19173834959] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:46 ip-10-0-0-11 mdr: 2016-02-01 11:16:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:46 ip-10-0-64-10 mdr: 2016-02-01 11:16:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033376996] [to:+14692054977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047933] [to:14059998605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047933] [to:14059998605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145679330] [to:+14388071572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503077] [to:18504490597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181083] [to:18455480496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193491] [to:17344446314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200861] [to:17148748830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578773] [to:12054517478] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133150598] [to:+18133243278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15022873997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B90201] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607548020] [to:+17812621955] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195003487] [to:+12264555057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062297878] [to:+16474912440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479801499] [to:+12134783007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-11 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:18135037758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193809379] [to:+13476764941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365887046] [to:+12026090324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-11 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455923] [to:16616002122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144107977] [to:+19086597598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951923] [to:16475501162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-64-10 mdr: 2016-02-01 11:16:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951923] [to:16475501162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169065422] [to:+15817020884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:47 ip-10-0-0-10 mdr: 2016-02-01 11:16:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018148092] [to:+16319800847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951923] [to:16475501162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027724063] [to:+17027794152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673772942] [to:+15672819676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038403] [to:+13479193718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B90202] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352101298] [to:+13126142984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027724063] [to:+17027794152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062182747] [to:+14692175268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052407611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002265] [to:17323378276] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-64-11 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607031341] [to:+13608498799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14252498374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:48 ip-10-0-0-11 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17805170701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802792181] [to:+14696292741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899075] [to:13472132106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737087823] [to:+12342227347] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16314493166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482483] [to:18433724896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583566083] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:49 ip-10-0-64-10 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-11 mdr: 2016-02-01 11:16:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:49 ip-10-0-0-10 mdr: 2016-02-01 11:16:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035537324] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092602664] [to:12094019081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069133931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135927650] [to:+15103407418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183013] [to:14252411696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866225] [to:14178080682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411563] [to:14166550193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12169249659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058438] [to:19025748879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:50 ip-10-0-64-10 mdr: 2016-02-01 11:16:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:50 ip-10-0-0-11 mdr: 2016-02-01 11:16:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863202508] [to:+17206233183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092911891] [to:+14097771506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530294] [to:17318191478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029165] [to:13606029645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185278518] [to:+15189305426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106628845] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028585558] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164125] [to:19197985052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-10 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320366] [to:17655090807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:51 ip-10-0-0-11 mdr: 2016-02-01 11:16:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:51 ip-10-0-64-11 mdr: 2016-02-01 11:16:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822042] [to:18598665294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026012165] [to:+14025001568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248102466] [to:+17248035680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:18166822644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:18195931070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048837] [to:18052160397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763898399] [to:+18653209048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029199149] [to:+14025002617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029716123] [to:+12404077698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:52 ip-10-0-0-10 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:52 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15718588422] [to:+15874050355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739227225] [to:+13479971541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444370] [to:13174734328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15199559248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868919] [to:12295639841] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175154053] [to:+13176444370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815866] [to:13049910424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788769230] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-11 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:53 ip-10-0-64-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-11 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165342532] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:53 ip-10-0-0-10 mdr: 2016-02-01 11:16:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238866] [to:+19412642140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-0-10 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-0-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:54 ip-10-0-0-11 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215766521] [to:+13218328264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186183] [to:12055208282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-10 mdr: 2016-02-01 11:16:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176986493] [to:+19172750903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:54 ip-10-0-64-11 mdr: 2016-02-01 11:16:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543543462] [to:19543802897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052204330] [to:+17053026076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023971118] [to:+19027043821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067403104] [to:+15068041558] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14147592276] [to:+14144007476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097377092] [to:+15096511977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863839955] [to:+13053406965] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016213031] [to:+12016800509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383451357] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263122733] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673849612] [to:+12138068519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046156246] [to:+13478961887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123349101] [to:+13479569139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404279] [to:+13867423381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188234417] [to:+15109487344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858513198] [to:+15122657333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148531833] [to:+13476908352] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047047094] [to:+17274938104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195663045] [to:+12267793030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496525] [to:+19895697517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097233282] [to:+19092934625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793259217] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479827960] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-20 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208035] [to:+447548544753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168275827] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162164010] [to:+18168007290] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-20 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208035] [to:+447548544753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-11 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082219] [to:14045799770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:55 ip-10-0-64-11 mdr: 2016-02-01 11:16:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076926040] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:55 ip-10-0-0-10 mdr: 2016-02-01 11:16:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022918845] [to:+12134787384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17154172359] [to:+17186755891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122698] [to:12532730845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17732363818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208202] [to:19843331640] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453106] [to:17147529815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335477] [to:18032204055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605317324] [to:+14694060452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605317324] [to:+14694060452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605317324] [to:+14694060452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-20 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862628] [to:+14402526832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-0-10 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032311] [to:13235348741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162390386] [to:16164309122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845505035] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-11 mdr: 2016-02-01 11:16:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:56 ip-10-0-64-10 mdr: 2016-02-01 11:16:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092386828] [to:+17864800149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001665] [to:12254397324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852079026] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13239169121] [to:13235067918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076183781] [to:+16465640646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146499301] [to:+14387942954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242197795] [to:+15624733574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-10 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405743556] [to:+14403594886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:57 ip-10-0-0-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049999010] [to:+12048134597] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:57 ip-10-0-64-11 mdr: 2016-02-01 11:16:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-10 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785337294] [to:19786069323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787895763] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-20 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-11 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347503864] [to:+12134785320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-10 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:58 ip-10-0-64-10 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18122443121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-20 mdr: 2016-02-01 11:16:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:58 ip-10-0-0-11 mdr: 2016-02-01 11:16:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438136536] [to:+14437202393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-20 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16177042229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199907889] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-10 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:16:59 ip-10-0-64-10 mdr: 2016-02-01 11:16:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:16:59 ip-10-0-0-11 mdr: 2016-02-01 11:16:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538324] [to:13612310549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467306790] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190756] [to:13044823430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015576] [to:17095730593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786989] [to:18282230606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004406] [to:13065301448] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898701] [to:17314337191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:00 ip-10-0-0-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-11 mdr: 2016-02-01 11:17:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:00 ip-10-0-64-10 mdr: 2016-02-01 11:17:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015038488] [to:+17604747750] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687344] [to:17163715367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348319] [to:18596127059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788064899] [to:+19895334723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783408636] [to:+13479378589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867486101] [to:+13866016569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708605225] [to:+18572400422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-10 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:01 ip-10-0-64-11 mdr: 2016-02-01 11:17:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:01 ip-10-0-0-11 mdr: 2016-02-01 11:17:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-21 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447806095884] [to:+447520629899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-20 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17068530485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047925389] [to:+19802093412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593603] [to:14166662555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062787] [to:18649818266] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292914959] [to:+12138611874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:16177042229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-11 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:02 ip-10-0-0-10 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:02 ip-10-0-64-11 mdr: 2016-02-01 11:17:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266117] [to:16162320511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-10 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-10 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-10 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-10 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-11 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990932] [to:16144653583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-11 mdr: 2016-02-01 11:17:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:03 ip-10-0-64-10 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:03 ip-10-0-0-21 mdr: 2016-02-01 11:17:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301372] [to:16981949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022647062] [to:+13476675702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540716] [to:13013025011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188054450] [to:+17027478066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035610284] [to:+15873154477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-10 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:04 ip-10-0-64-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-10 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016517] [to:17023581148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:04 ip-10-0-0-11 mdr: 2016-02-01 11:17:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777215] [to:12175042093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472036984] [to:+16477997528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196641382] [to:+16139125644] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969861] [to:15182908458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202203025] [to:+15865747722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032B0202] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202203025] [to:+15865747722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500032B0201] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603062341] [to:+12405538727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062824587] [to:+14158531653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024922389] [to:+13478083195] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388783868] [to:+14388078679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178284120] [to:+14158536261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-20 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332855] [to:+447904774706] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173979520] [to:+18638552269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13062904307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504493] [to:18435982039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209692] [to:17732363818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570153] [to:15198035912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-10 mdr: 2016-02-01 11:17:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:05 ip-10-0-0-10 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:05 ip-10-0-64-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570153] [to:15198035912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127797] [to:13184610993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12487701782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17754420480] [to:+17026748579] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-10 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:06 ip-10-0-0-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-10 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783408636] [to:+13479378589] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-10 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:06 ip-10-0-64-11 mdr: 2016-02-01 11:17:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18122443121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-10 mdr: 2016-02-01 11:17:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474898300] [to:+13478682310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342375] [to:18033088994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572021875] [to:+13478120130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-64-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:15196164747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:19124232550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-10 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-11 mdr: 2016-02-01 11:17:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:07 ip-10-0-0-11 mdr: 2016-02-01 11:17:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649908508] [to:+18645010293] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165015124] [to:+19715129635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615773860] [to:+13054175173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610483] [to:14055087677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602155] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-10 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-10 mdr: 2016-02-01 11:17:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:08 ip-10-0-0-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522190776] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:08 ip-10-0-64-11 mdr: 2016-02-01 11:17:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182717058] [to:+15817009943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040445] [to:+16572071390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304367] [to:19175640950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548605] [to:12109955321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292741] [to:15802792181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-10 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:18166822644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:09 ip-10-0-0-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364731937] [to:+19726665612] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505306263] [to:+18506314686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600532] [to:17053803806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035300] [to:12263123594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-10 mdr: 2016-02-01 11:17:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049807744] [to:+19142064074] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:09 ip-10-0-64-11 mdr: 2016-02-01 11:17:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325664] [to:12693559961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132401876] [to:+18133244907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388262220] [to:+14388095850] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961632] [to:14403398861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13067000438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:18635328940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981957] [to:13152619045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13364710040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-20 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447071528] [to:+447451247514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048036341] [to:+19046947190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555352] [to:15734798792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-20 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-10 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:10 ip-10-0-0-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:10 ip-10-0-64-11 mdr: 2016-02-01 11:17:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124750] [to:14849269015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182483739] [to:+13478992188] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572021875] [to:+13478120130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740445] [to:+16466320664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729406961] [to:+17723601672] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-11 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:11 ip-10-0-64-11 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682220] [to:13856851031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:17058267576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:11 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234858] [to:14192769970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321634] [to:13064501706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025060785] [to:+17723601650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-21 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447864337686] [to:+447418323505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-10 mdr: 2016-02-01 11:17:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:12 ip-10-0-0-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:12 ip-10-0-64-11 mdr: 2016-02-01 11:17:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183013] [to:14252411696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508855334] [to:+16042593517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058438] [to:19025748879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032204055] [to:+15204335477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-11 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-11 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:13 ip-10-0-0-10 mdr: 2016-02-01 11:17:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182483739] [to:+13478992188] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:13 ip-10-0-64-10 mdr: 2016-02-01 11:17:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202849183] [to:+19285992812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776403] [to:18635328940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-21 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015576] [to:17095730593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202217075] [to:19203443458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750903] [to:13176986493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:18122443121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-0-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-11 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129746663] [to:+14125354593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15869441447] [to:+13478021557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:14 ip-10-0-64-10 mdr: 2016-02-01 11:17:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:14252498374] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:19167057745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16474936636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882990] [to:15306328352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139488] [to:14785503257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-11 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174457890] [to:+19149798242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146499301] [to:+14387942954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733032657] [to:17737908501] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:15 ip-10-0-0-11 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:15 ip-10-0-64-10 mdr: 2016-02-01 11:17:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938415] [to:13615002324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-21 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235973] [to:+447956527123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13472624297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-10 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:16 ip-10-0-0-10 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:16 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083387018] [to:+15129525124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14055823095] [to:19316918908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-20 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332325] [to:+447470020431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:13152474621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:16787895763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169160] [to:16035932884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755221] [to:17153184849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-10 mdr: 2016-02-01 11:17:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-10 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095415037] [to:+18583048201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:17 ip-10-0-0-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047623106] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:17 ip-10-0-64-11 mdr: 2016-02-01 11:17:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19132148809] [to:17853935371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233867] [to:13305327257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147085997] [to:+14387940292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044033129] [to:+13052036900] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-11 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026697106] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:18 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-11 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:18 ip-10-0-64-10 mdr: 2016-02-01 11:17:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378589] [to:16783408636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044033129] [to:+13052036900] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-20 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-20 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882990] [to:15306328352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563108585] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095532416] [to:+17327068221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046101599] [to:+19784009599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-64-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-11 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077293971] [to:+17864803208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655917683] [to:+13479130734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:19 ip-10-0-0-10 mdr: 2016-02-01 11:17:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021456] [to:14185903689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265823] [to:19792539211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508855334] [to:+16042593517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147085997] [to:+14387940292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15309488436] [to:15306048136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138169] [to:17577685495] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013239] [to:18607066200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:20 ip-10-0-0-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-11 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:20 ip-10-0-64-10 mdr: 2016-02-01 11:17:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017312876] [to:+16233839210] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054431005] [to:+12132896519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632921782] [to:+18133201569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635801118] [to:+13369383538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182918680] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147085997] [to:+14387940292] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16813680782] [to:+15203376681] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567448040] [to:+13479198651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503077600] [to:+19709997013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:21 ip-10-0-0-10 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064674476] [to:+17053028125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-11 mdr: 2016-02-01 11:17:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:21 ip-10-0-64-10 mdr: 2016-02-01 11:17:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19132148809] [to:17853935371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732017] [to:12405386051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-10 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:19099654464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-10 mdr: 2016-02-01 11:17:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087176] [to:13218958217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:22 ip-10-0-0-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:22 ip-10-0-64-11 mdr: 2016-02-01 11:17:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697447] [to:19895512166] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-21 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223239] [to:+447719799531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184198331] [to:+19782729489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361804] [to:13858881961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-10 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675702] [to:13022647062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-0-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-11 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:23 ip-10-0-64-10 mdr: 2016-02-01 11:17:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018484404] [to:+14706733151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:15105866069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-11 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104746974] [to:+19729470888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142670324] [to:15135464525] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137698183] [to:13234566670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:24 ip-10-0-64-11 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:24 ip-10-0-0-10 mdr: 2016-02-01 11:17:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043719] [to:19072037485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-10 mdr: 2016-02-01 11:17:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774958] [to:13473562319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024208] [to:16614188581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-20 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-10 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14238874728] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:12014503565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865393] [to:13042289506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-21 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451240203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:25 ip-10-0-64-10 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19724417014] [to:+15089166128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] Wilbens Dieujuste: Tomorrow |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:17:25 ip-10-0-0-11 mdr: 2016-02-01 11:17:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135267] [to:12709789647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705668291] [to:+13478993080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:15169025840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096702168] [to:+14096833772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043821] [to:19023971118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462837273] [to:+14073374649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348598] [to:14787148641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027709063] [to:+14242839708] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:12266003108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:26 ip-10-0-64-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-20 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-10 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437099] [to:15198185555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:26 ip-10-0-0-11 mdr: 2016-02-01 11:17:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895104] [to:+16125022226] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052066459] [to:+18316107752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-21 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-21 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602594] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-10 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022573] [to:+13477970343] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-10 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:27 ip-10-0-64-11 mdr: 2016-02-01 11:17:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:27 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883833] [to:13063042963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997528] [to:16472036984] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326367] [to:14322887145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343827971] [to:+12132959593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15303602155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246083] [to:18049380963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656039291] [to:+16789495774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C70201] -Feb 1 11:17:28 ip-10-0-64-11 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-11 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096753080] [to:+16513335425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:28 ip-10-0-0-10 mdr: 2016-02-01 11:17:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:28 ip-10-0-64-10 mdr: 2016-02-01 11:17:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862671] [to:+13219990443] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578423] [to:19049453385] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405151] [to:12268810188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C70202] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372056332] [to:+14242838343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172688] [to:12049953962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968737] [to:12706959501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185315251] [to:+18722258806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125201843] [to:+18572193275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227347] [to:17737087823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-10 mdr: 2016-02-01 11:17:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-0-11 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:18644259017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:29 ip-10-0-64-10 mdr: 2016-02-01 11:17:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705290071] [to:+13479066748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023793196] [to:+19785663353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416066726] [to:+14582015344] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:30 ip-10-0-64-10 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-21 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:30 ip-10-0-0-11 mdr: 2016-02-01 11:17:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244907] [to:18132401876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740392] [to:+13025830092] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748917] [to:18103575300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103005] [to:14144354370] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12547356029] [to:14325286267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173082899] [to:+12148148729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-20 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026001554] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-20 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276076] [to:+14703336604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343827971] [to:+12132959593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-10 mdr: 2016-02-01 11:17:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314027608] [to:+16317732054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:31 ip-10-0-64-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692175268] [to:18062182747] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:31 ip-10-0-0-11 mdr: 2016-02-01 11:17:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15144437199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01122508009213] [to:+14694061116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969182] [to:17577496369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14383451357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-10 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17573870734] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-20 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-20 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326170] [to:14094997686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689561] [to:16624167558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-10 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:32 ip-10-0-0-10 mdr: 2016-02-01 11:17:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:32 ip-10-0-64-11 mdr: 2016-02-01 11:17:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:15597080497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432092962] [to:+14502334398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606462798] [to:+17607909411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:17708459762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314096230] [to:+13477865527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246720849] [to:+18508950340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026285959] [to:+15874101723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19716459522] [to:+15036478746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808232802] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-11 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:33 ip-10-0-0-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028302162] [to:+16475567404] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:33 ip-10-0-64-10 mdr: 2016-02-01 11:17:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607196135] [to:+16463490295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144995353] [to:+16576668384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-21 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709891018] [to:+13479190682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:18635295264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12532485837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405127] [to:15194657797] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333121] [to:14705354084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054100129] [to:+18054202886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067170379] [to:+13065003440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:12104820807] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:12104820807] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615773860] [to:+13054175173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:34 ip-10-0-64-10 mdr: 2016-02-01 11:17:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531043] [to:15733886181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:34 ip-10-0-0-11 mdr: 2016-02-01 11:17:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343827971] [to:+12132959593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192769970] [to:+17206234858] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926409] [to:12104820807] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-20 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:19099654464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12506825893] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623714077] [to:+18572193345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326875325] [to:+16096144171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:35 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:35 ip-10-0-0-10 mdr: 2016-02-01 11:17:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109087591] [to:+19715129409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889713] [to:13179035132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-21 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182717058] [to:+15817009943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515996711] [to:+19148486395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623714077] [to:+18572193345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-11 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:36 ip-10-0-0-11 mdr: 2016-02-01 11:17:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:36 ip-10-0-64-10 mdr: 2016-02-01 11:17:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015093] [to:15813194370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042174974] [to:+13478961784] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503770813] [to:+14703334329] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410722] [to:15192228980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:18635295264] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801492] [to:19062392380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18623714077] [to:+18572193345] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681442] [to:18635122885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152515712] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559003] [to:12899240182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317560891] [to:+16694002136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-11 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:37 ip-10-0-64-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066508971] [to:+14062041664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:37 ip-10-0-0-10 mdr: 2016-02-01 11:17:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659644504] [to:+16465319699] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052330557] [to:+17029015524] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17209880037] [to:+17274938279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778695] [to:16202856249] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145276196] [to:+16822139457] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18193522333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413800512] [to:+19417256304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049807744] [to:+19142064074] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-20 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447071528] [to:+447451247514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995999] [to:14849084081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-11 mdr: 2016-02-01 11:17:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:38 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:38 ip-10-0-64-11 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193718] [to:16067038403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-10 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552881] [to:14235065145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064090] [to:17042988033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364271] [to:13364703257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028042248] [to:+16139092407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833937] [to:14434965824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13062035204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-0-10 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:39 ip-10-0-64-11 mdr: 2016-02-01 11:17:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805111] [to:13047779470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223823] [to:12158009272] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15139041880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993774] [to:14849259387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:40 ip-10-0-64-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-10 mdr: 2016-02-01 11:17:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524256068] [to:+13369383586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:40 ip-10-0-0-11 mdr: 2016-02-01 11:17:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843979247] [to:14844260438] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144653583] [to:+12167990932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048391048] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-10 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697517] [to:18104496525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-10 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15308482777] [to:+16574008183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:41 ip-10-0-0-11 mdr: 2016-02-01 11:17:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:41 ip-10-0-64-11 mdr: 2016-02-01 11:17:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477855417] [to:+13475187831] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052617916] [to:+12892755684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15057176776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434249024] [to:+19802097212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297595] [to:14232017444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598665294] [to:+15852822042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-0-20 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-10 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334752] [to:17065339613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136870232] [to:+14242837053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:42 ip-10-0-64-11 mdr: 2016-02-01 11:17:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334752] [to:17065339613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567259086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-21 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044136153] [to:+17605433526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+12543130302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108679621] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916487] [to:17096897308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098478547] [to:+19199163161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106635672] [to:+14153404016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167057745] [to:+19163477063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:14806192877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023971118] [to:+19027043821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817324] [to:16072328395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:43 ip-10-0-64-11 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021890] [to:16477812697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:43 ip-10-0-0-10 mdr: 2016-02-01 11:17:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767799300] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672033253] [to:+15103228925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166740] [to:12527623802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-20 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083387018] [to:+15129525124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:16104677841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096324] [to:14505438688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691493] [to:14237770480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162626676] [to:+17162790986] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776632] [to:18018885266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776632] [to:18018885266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317454] [to:16822038321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-21 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627143] [to:+447747104276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464751031] [to:16072595567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186330635] [to:+15817020180] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:44 ip-10-0-0-11 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:44 ip-10-0-64-10 mdr: 2016-02-01 11:17:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132833918] [to:+18327807538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097303679] [to:+12099923435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990899] [to:12166098179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-20 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447857027430] [to:+447451232940] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19723608932] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-64-11 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-11 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178284120] [to:+14158536261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026946262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:45 ip-10-0-0-10 mdr: 2016-02-01 11:17:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16107138851] [to:16109997864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509007443] [to:12502080477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866752654] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752009348] [to:+15056007648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552269] [to:13173979520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623388313] [to:+14706733906] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687081] [to:19034661684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-10 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839875] [to:19076567331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:46 ip-10-0-0-10 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:46 ip-10-0-64-11 mdr: 2016-02-01 11:17:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613028016] [to:+12139212248] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13126183996] [to:+13122752529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18188353670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025748879] [to:+19027058438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-10 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-0-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372884248] [to:+18585199029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198053477] [to:+13473439765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348319] [to:18596127059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:47 ip-10-0-64-11 mdr: 2016-02-01 11:17:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18198060986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315531] [to:18505126470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132005330] [to:+15137259463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:48 ip-10-0-0-10 mdr: 2016-02-01 11:17:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401738] [to:16262486404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:48 ip-10-0-64-11 mdr: 2016-02-01 11:17:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-21 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609962] [to:+447723432310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-11 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653418416] [to:+12138612750] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276577454] [to:+17278578220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007961] [to:15146689965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687344] [to:18173600764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15199559248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092881514] [to:19712059186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052340195] [to:+15592232463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884019] [to:17743050092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-11 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-11 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056335] [to:19022922833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408008] [to:13472496796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976849] [to:17179620133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:49 ip-10-0-64-10 mdr: 2016-02-01 11:17:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:49 ip-10-0-0-10 mdr: 2016-02-01 11:17:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039535036] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13178693343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E10201] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813176] [to:14438597628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203960] [to:13013318892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:50 ip-10-0-64-11 mdr: 2016-02-01 11:17:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:50 ip-10-0-0-10 mdr: 2016-02-01 11:17:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:14045207748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253163646] [to:+12138025350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282325217] [to:19288999012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882930] [to:19855077528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049394380] [to:+12048093988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894180897] [to:+19895334091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-11 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342949011] [to:+13478969839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:51 ip-10-0-64-10 mdr: 2016-02-01 11:17:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:51 ip-10-0-0-10 mdr: 2016-02-01 11:17:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927989] [to:14384961763] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-20 mdr: 2016-02-01 11:17:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732391676] [to:+17323287740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186882726] [to:+13476675618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14067995073] [to:+14064042257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709800777] [to:+19148608499] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:52 ip-10-0-0-10 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:52 ip-10-0-64-11 mdr: 2016-02-01 11:17:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144661320] [to:+14388095318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-21 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-11 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014582] [to:14239233194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-11 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286740334] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14385808778] [to:+14388078836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-11 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486166] [to:17575065458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597843] [to:17783182968] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14389921988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755820] [to:50257079906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138350] [to:19042354144] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:53 ip-10-0-64-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E10202] -Feb 1 11:17:53 ip-10-0-0-10 mdr: 2016-02-01 11:17:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990932] [to:16144653583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003650201] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14705355374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888425] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003650202] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803201] [to:17863198700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-21 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605433526] [to:19044136153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807538] [to:17132833918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037D0201] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-11 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037D0202] -Feb 1 11:17:54 ip-10-0-0-11 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:54 ip-10-0-64-10 mdr: 2016-02-01 11:17:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173880459] [to:+15612407328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:54 ip-10-0-0-10 mdr: 2016-02-01 11:17:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476863917] [to:+12897798019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18608618951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143942746] [to:+14144006597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263765560] [to:+12138062444] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139995124] [to:+13137690110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096512603] [to:+14582025453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142027038] [to:+13477736282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467306790] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312057852] [to:+18724449057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185903689] [to:+15817021456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673849612] [to:+13024001422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096748607] [to:+18584804137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736191807] [to:+17736666398] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197985052] [to:+19199164125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199084914] [to:+19199161655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055087677] [to:+19172610483] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478022025] [to:18127675107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076875] [to:12165123481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-11 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-20 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:55 ip-10-0-64-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-20 mdr: 2016-02-01 11:17:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:55 ip-10-0-0-10 mdr: 2016-02-01 11:17:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17083100748] [to:+12139354390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14389373568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173316261] [to:+13479977302] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201282] [to:14107083406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269268] [to:14065702309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809042499] [to:+15874085531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-10 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:56 ip-10-0-64-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-11 mdr: 2016-02-01 11:17:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948229] [to:16162991958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:56 ip-10-0-0-10 mdr: 2016-02-01 11:17:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522072568] [to:+16503008157] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12145276076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476157328] [to:+13478303542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:14236659931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622765918] [to:+12677938872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296317] [to:19372196018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13127715246] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896640] [to:14436238491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506825893] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269268] [to:14065702309] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132466] [to:17743050848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211439] [to:13473406555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830052] [to:12563665783] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476157328] [to:+13478303542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567449697] [to:+13479198651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:57 ip-10-0-64-10 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124125] [to:14844325018] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:57 ip-10-0-0-11 mdr: 2016-02-01 11:17:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:14129746663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614915619] [to:12819404755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165539633] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021497] [to:17172479845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192046618] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500039E0301] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039E0302] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039E0303] -Feb 1 11:17:58 ip-10-0-0-20 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878648] [to:18065442157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19197176373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-20 mdr: 2016-02-01 11:17:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:58 ip-10-0-64-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BA0201] -Feb 1 11:17:58 ip-10-0-64-10 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:58 ip-10-0-0-11 mdr: 2016-02-01 11:17:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277682317] [to:+17274938481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316035375] [to:+14695323765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095305] [to:18768463339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:15165473909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597368] [to:15127999255] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407196] [to:+16474955001] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19314096230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988284] [to:17163282515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0202] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-11 mdr: 2016-02-01 11:17:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:17:59 ip-10-0-64-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:17:59 ip-10-0-0-10 mdr: 2016-02-01 11:17:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755221] [to:12696898782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-20 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477610874] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-10 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15805142234] [to:+12135760506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17147833488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024781053] [to:+19027062654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009228] [to:17057838614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-10 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088487] [to:13086606966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:00 ip-10-0-0-10 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043821] [to:19023971118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:00 ip-10-0-64-11 mdr: 2016-02-01 11:18:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190682] [to:15709891018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194300] [to:18572368260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801492] [to:19062392380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:14806192877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064739956] [to:+14706731099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376077633] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:13866752654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:17349043488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-11 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203960] [to:13013318892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132778743] [to:+14132519454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-10 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:01 ip-10-0-64-11 mdr: 2016-02-01 11:18:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:01 ip-10-0-0-10 mdr: 2016-02-01 11:18:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-11 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-11 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523615837] [to:+14072161130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-11 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062404] [to:15672083233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-11 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:02 ip-10-0-0-10 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-10 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:02 ip-10-0-64-11 mdr: 2016-02-01 11:18:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15183609566] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18109644996] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234640533] [to:+12133773188] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019967093] [to:+15204335323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093079] [to:19173752648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316122875] [to:18314308339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836010] [to:19079476537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083195] [to:15024922389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998775] [to:19855149184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-20 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:03 ip-10-0-64-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163346567] [to:+16164200387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-10 mdr: 2016-02-01 11:18:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:03 ip-10-0-0-11 mdr: 2016-02-01 11:18:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-11 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525757728] [to:+19172660673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-11 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:14806192877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404308] [to:18572434435] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:12023507018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-11 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127797] [to:13184610993] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-11 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-11 mdr: 2016-02-01 11:18:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:04 ip-10-0-0-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286675] [to:12298054423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:04 ip-10-0-64-10 mdr: 2016-02-01 11:18:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:16164208196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807984723] [to:+15209996437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024804190] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864996439] [to:+13054175782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034567688] [to:+12342313815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502614818] [to:+13477737038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305679888] [to:+15304513985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049394380] [to:+12048093988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155494361] [to:12512229978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147072197] [to:+14403594636] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183030] [to:14077917073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164773] [to:19194918494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817324] [to:16072328395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-10 mdr: 2016-02-01 11:18:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:05 ip-10-0-64-11 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:05 ip-10-0-0-10 mdr: 2016-02-01 11:18:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873257311] [to:+15874050250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12533044281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16034796330] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-21 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333121] [to:14705354084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031469] [to:+12362373471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153100560] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:06 ip-10-0-64-11 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403171198] [to:+13477361071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:06 ip-10-0-0-10 mdr: 2016-02-01 11:18:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869341] [to:17874770849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066425] [to:17867472292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613028016] [to:+12139212248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-21 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226017] [to:+447470947713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-10 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405127] [to:15194657795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-10 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-11 mdr: 2016-02-01 11:18:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:07 ip-10-0-64-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014077817] [to:+13475089681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:07 ip-10-0-0-11 mdr: 2016-02-01 11:18:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504493] [to:18435982039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195520614] [to:+18193039665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790960] [to:17164561200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528837978] [to:+13473439872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-21 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447737406730] [to:+447451224705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228692] [to:16143786953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288805] [to:18312969033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144437199] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-10 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988284] [to:17163282515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:08 ip-10-0-0-11 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:08 ip-10-0-64-10 mdr: 2016-02-01 11:18:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15639290133] [to:+13198000373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693559961] [to:+12693325664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038091447] [to:+13024991541] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436184418] [to:+14706734719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731092] [to:14437398815] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528825] [to:13134821810] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-11 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308839660] [to:+19172661133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086606966] [to:+19149088487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:09 ip-10-0-64-10 mdr: 2016-02-01 11:18:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056596169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056596169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:09 ip-10-0-0-11 mdr: 2016-02-01 11:18:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862667] [to:+19142286940] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156388554] [to:+17133896673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044136153] [to:+17605433526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016569] [to:13867486101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083642485] [to:+19298413982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625473302] [to:+12627778695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17793489657] [to:+12602755490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730502] [to:17064832353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789533] [to:15184194506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-64-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12094221934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015605] [to:17027629827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19133963319] [to:+14198430804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-21 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-10 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:10 ip-10-0-0-11 mdr: 2016-02-01 11:18:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-10 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006405] [to:14146403351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564992648] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996458] [to:13142102012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725919] [to:12092895035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185991576] [to:+18724008819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:11 ip-10-0-0-10 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14075912997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735280910] [to:+17207291591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:11 ip-10-0-64-11 mdr: 2016-02-01 11:18:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175085372] [to:+15109480570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364814] [to:+19703158397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:17272602820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788333627] [to:+16049019221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999590] [to:19062022527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001707] [to:17054641713] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-10 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:12 ip-10-0-64-11 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:12 ip-10-0-0-11 mdr: 2016-02-01 11:18:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-20 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-21 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334493] [to:+447766532630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-21 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334493] [to:+447766532630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039697411] [to:+15717818830] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-11 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148258269] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:16789072168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:13 ip-10-0-0-10 mdr: 2016-02-01 11:18:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:13 ip-10-0-64-11 mdr: 2016-02-01 11:18:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759530] [to:17138168106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-10 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478823] [to:12027068660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095920] [to:18192094408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389987865] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164773] [to:19192252496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:14 ip-10-0-64-11 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342030709] [to:+14153253272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-10 mdr: 2016-02-01 11:18:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707130139] [to:+17605899918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:14 ip-10-0-0-11 mdr: 2016-02-01 11:18:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691367] [to:15172821775] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050664] [to:16043381613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022366163] [to:+16466998127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041619] [to:15062279592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537525] [to:12293180203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-10 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:15 ip-10-0-64-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:15 ip-10-0-0-11 mdr: 2016-02-01 11:18:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678771721] [to:13062290883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577685495] [to:+13479138169] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411097] [to:18015921633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434965824] [to:+19172833937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003730201] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574392221] [to:+13603138146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:19167057745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681629] [to:19054325973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12674678399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-10 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-11 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:16 ip-10-0-64-11 mdr: 2016-02-01 11:18:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:16 ip-10-0-0-10 mdr: 2016-02-01 11:18:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802792181] [to:+14696292741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-10 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139369] [to:+14703336167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245161] [to:18042523832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:13024485469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732485] [to:13016421543] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637964] [to:19705768718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881190] [to:18125984441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-10 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-10 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367141463] [to:+13168544948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:17 ip-10-0-64-11 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:17 ip-10-0-0-11 mdr: 2016-02-01 11:18:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168322254] [to:+18133316053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:19129966500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345955] [to:17328645746] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146541] [to:14696520923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319699] [to:18659644504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14077476605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-21 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-11 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-20 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:18 ip-10-0-64-10 mdr: 2016-02-01 11:18:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-11 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:18 ip-10-0-0-10 mdr: 2016-02-01 11:18:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467612] [to:17736063266] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172821775] [to:+15175691367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129327924] [to:+13479131354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163945551] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18286740334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:19 ip-10-0-0-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105362522] [to:+13366450570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097368] [to:109472186328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-11 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:19 ip-10-0-64-10 mdr: 2016-02-01 11:18:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863782303] [to:+19177730434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048197] [to:16502088013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036366878] [to:+17193538722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021456] [to:14185903689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579186553] [to:+19193072123] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-11 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053022789] [to:19059034091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406858933] [to:19124647287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-11 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638777370] [to:+18638552245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-11 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543802897] [to:+19543543462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:20 ip-10-0-64-10 mdr: 2016-02-01 11:18:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016910752] [to:+16197324340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:20 ip-10-0-0-10 mdr: 2016-02-01 11:18:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372296] [to:13212407424] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732054] [to:16314027608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-11 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-10 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:21 ip-10-0-64-11 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-21 mdr: 2016-02-01 11:18:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:21 ip-10-0-0-10 mdr: 2016-02-01 11:18:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681049] [to:14076831702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046048437] [to:+16784123496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817002347] [to:19029998165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473544] [to:17086705988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891132] [to:+13479789254] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018553] [to:19028041532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-11 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-0-10 mdr: 2016-02-01 11:18:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165839636] [to:+15817009445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817002347] [to:19029998165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-11 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:22 ip-10-0-64-10 mdr: 2016-02-01 11:18:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707350171] [to:+13479976210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024723477] [to:+17027182720] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681049] [to:14076831702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987039] [to:19895060408] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:18583566083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190811] [to:12132741549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347101513] [to:+13364500879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-21 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162430474] [to:+16463496109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-10 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438597628] [to:+14436813176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:23 ip-10-0-0-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-11 mdr: 2016-02-01 11:18:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:23 ip-10-0-64-10 mdr: 2016-02-01 11:18:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853150] [to:13306002171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656248986] [to:+18583146015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377258] [to:16035209271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093079] [to:19174742727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333382] [to:14072182409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739936610] [to:+13125099961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783993389] [to:+19785334213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:24 ip-10-0-0-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533044281] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-11 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:24 ip-10-0-64-10 mdr: 2016-02-01 11:18:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103575300] [to:+15865748917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15199907889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:19129966500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048993364] [to:+12048172584] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022922833] [to:+19027056335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681629] [to:19054325973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496014] [to:18643001198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-21 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-21 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447843143486] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267793494] [to:12263400928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139212064] [to:17272152143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139212064] [to:17272152143] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-11 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048993364] [to:+12048172584] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500038B0201] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:25 ip-10-0-64-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:25 ip-10-0-0-10 mdr: 2016-02-01 11:18:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015605] [to:17029297440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-20 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447957992873] [to:+447418338504] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18168007290] [to:18162164010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602700] [to:12673356211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500038B0202] -Feb 1 11:18:26 ip-10-0-0-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063780196] [to:+15068019647] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13045919239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:14192046618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-11 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162330] [to:12528858189] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931369] [to:+16136046085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-11 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523404634] [to:+12139296993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15633810574] [to:+15633167433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:26 ip-10-0-64-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142828948] [to:+13147639648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17146971437] [to:+15399999519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:26 ip-10-0-0-10 mdr: 2016-02-01 11:18:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097233282] [to:+19092934625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472412972] [to:+12138028786] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679397] [to:17273661560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-10 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708459762] [to:+15103403586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735028] [to:19012354021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:27 ip-10-0-64-11 mdr: 2016-02-01 11:18:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531043] [to:16155964587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-11 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:27 ip-10-0-0-10 mdr: 2016-02-01 11:18:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308839660] [to:+19172661133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-10 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622511499] [to:+19018427784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:12393628514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123889914] [to:+19122175793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-20 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321290] [to:19723652969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:19165486232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-21 mdr: 2016-02-01 11:18:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968959] [to:19732558017] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:28 ip-10-0-0-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-10 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:28 ip-10-0-64-11 mdr: 2016-02-01 11:18:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982578] [to:+18103393058] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174255423] [to:+15714412441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077476605] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536261] [to:13178284120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672423808] [to:+14197767982] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-10 mdr: 2016-02-01 11:18:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613954] [to:16015196239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:29 ip-10-0-64-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735674727] [to:+19177739401] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-11 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:29 ip-10-0-0-10 mdr: 2016-02-01 11:18:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414184495] [to:+19712488394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064090] [to:17042988033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019647] [to:15063780196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366195] [to:19177696655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323273] [to:15138242018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922441] [to:14388233957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922441] [to:14388233957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785757] [to:16099721415] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547369237] [to:+17865673687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13155524686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:19723608932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076438094] [to:+16079655988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-11 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:30 ip-10-0-64-10 mdr: 2016-02-01 11:18:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164125] [to:19197985052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:30 ip-10-0-0-10 mdr: 2016-02-01 11:18:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142682236] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-10 mdr: 2016-02-01 11:18:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432461639] [to:+17315744398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-21 mdr: 2016-02-01 11:18:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474535648] [to:+15817008028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-11 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054641713] [to:+13658001707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143677730] [to:+13479808166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-20 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:31 ip-10-0-0-11 mdr: 2016-02-01 11:18:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:31 ip-10-0-64-10 mdr: 2016-02-01 11:18:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292926387] [to:+19172720930] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-21 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418325506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146689965] [to:+15146007961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-10 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-10 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086467074] [to:+18316122412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-21 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233142] [to:+447773456650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640711] [to:19513473576] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:32 ip-10-0-0-11 mdr: 2016-02-01 11:18:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202817818] [to:13137185885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:32 ip-10-0-64-11 mdr: 2016-02-01 11:18:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12892284373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835795] [to:15017431490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-20 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447752250832] [to:+447520672744] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126648226] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096748607] [to:+18584804137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276577454] [to:+17278578220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CD0201] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132160631] [to:+15087884732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931369] [to:+16136046085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:33 ip-10-0-0-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974187] [to:15703574652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-11 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125759184] [to:15126985079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:33 ip-10-0-64-10 mdr: 2016-02-01 11:18:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198194802] [to:+19727521362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15184951338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252791017] [to:+15874050355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608618951] [to:+18609710162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706274942] [to:+13477869245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874054766] [to:+15817015569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-11 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169249659] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:34 ip-10-0-0-10 mdr: 2016-02-01 11:18:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:34 ip-10-0-64-10 mdr: 2016-02-01 11:18:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14077476605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064809779] [to:+15204337040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789254] [to:16462891132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12163945551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364703257] [to:+14243364271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18034799075] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481131] [to:15055449502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470179] [to:18654418446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295639841] [to:+14242868919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-11 mdr: 2016-02-01 11:18:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:35 ip-10-0-0-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839210] [to:12017312876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-11 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803578] [to:17852896134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:35 ip-10-0-64-10 mdr: 2016-02-01 11:18:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981264] [to:14143333051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-20 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301670] [to:18435405800] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134202916] [to:+18133207792] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216140364] [to:+14073373350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787260896] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202217075] [to:19203443458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-10 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018553] [to:19028041532] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:36 ip-10-0-64-10 mdr: 2016-02-01 11:18:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:36 ip-10-0-0-11 mdr: 2016-02-01 11:18:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12267793494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346363316] [to:+17348228124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136095579] [to:+18133201661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:19165486232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155494361] [to:12537545624] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969580] [to:18025989463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:18704552394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102794841] [to:+12026015056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346363316] [to:+17348228124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969754] [to:14046833761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172479845] [to:+13478021497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:37 ip-10-0-64-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-10 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:37 ip-10-0-0-11 mdr: 2016-02-01 11:18:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194645306] [to:+19199161050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-10 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-10 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449937] [to:14794624116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883504] [to:15306659391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343867680] [to:14105071348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-10 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064216187] [to:+14706731927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-64-10 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17814292452] [to:+17542220671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-10 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:38 ip-10-0-0-11 mdr: 2016-02-01 11:18:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857667710] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800329] [to:12563285471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182717058] [to:+15817009943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196618838] [to:+18194140688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667554] [to:14849851016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663353] [to:18023793196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366865] [to:16463774324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212431660] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238874728] [to:+14242846032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228289] [to:14195693207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228289] [to:14195693207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867486101] [to:+13866016569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663353] [to:18023793196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-10 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:39 ip-10-0-0-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13199392578] [to:+18133244256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:39 ip-10-0-64-11 mdr: 2016-02-01 11:18:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239074319] [to:+16156146889] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-11 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484457] [to:16085185494] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004260] [to:13069819863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000155] [to:13479877458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-11 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627231] [to:12254289392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-10 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-20 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447747104276] [to:+447520627143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-11 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184194506] [to:+12134789533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-10 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CD0202] -Feb 1 11:18:40 ip-10-0-64-11 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-11 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:40 ip-10-0-0-20 mdr: 2016-02-01 11:18:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:40 ip-10-0-64-11 mdr: 2016-02-01 11:18:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:14808232802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-11 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192037977] [to:+17279986024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:41 ip-10-0-64-11 mdr: 2016-02-01 11:18:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927052] [to:18649996255] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:41 ip-10-0-0-11 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:41 ip-10-0-0-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:41 ip-10-0-0-10 mdr: 2016-02-01 11:18:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654159705] [to:+12138029747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-21 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478339997] [to:+16465319678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12766186516] [to:+13479190489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-10 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-11 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:42 ip-10-0-64-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:42 ip-10-0-0-10 mdr: 2016-02-01 11:18:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477379513] [to:+14153269840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-20 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239846] [to:+447818447272] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317931405] [to:+16317707340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-11 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:12134222037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349460] [to:13608307067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:43 ip-10-0-64-10 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-11 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:43 ip-10-0-0-21 mdr: 2016-02-01 11:18:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333382] [to:14077328274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557058] [to:18635214078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430804] [to:19133963319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019289] [to:19023012589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323378276] [to:+13024002265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-11 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15303602594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13473887473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-11 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-64-10 mdr: 2016-02-01 11:18:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-10 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:44 ip-10-0-0-20 mdr: 2016-02-01 11:18:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855132] [to:12096171332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023313347] [to:+19802095667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725344625] [to:17179634678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813194370] [to:+15817015093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748088496] [to:+15744850497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107671] [to:18312103369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153024707] [to:+13126145548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:45 ip-10-0-64-10 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374704] [to:13309491441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:45 ip-10-0-0-11 mdr: 2016-02-01 11:18:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899457] [to:17063296832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:14195750760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416222] [to:12262299626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193033371] [to:18195200685] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193033371] [to:18195200685] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-11 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-20 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:46 ip-10-0-64-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-10 mdr: 2016-02-01 11:18:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286740334] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:46 ip-10-0-0-11 mdr: 2016-02-01 11:18:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961887] [to:18046156246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132364] [to:16035098602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188210449] [to:+19148252664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447800584470] [to:+19177086042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185315251] [to:+18722258806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-11 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974187] [to:15707213250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:47 ip-10-0-0-10 mdr: 2016-02-01 11:18:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:47 ip-10-0-64-10 mdr: 2016-02-01 11:18:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109367219] [to:+15406286667] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14705355374] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103414] [to:17542522567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139041880] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000474] [to:19294315516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303556] [to:18139523751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:48 ip-10-0-0-11 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-11 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014569] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:48 ip-10-0-64-10 mdr: 2016-02-01 11:18:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148163] [to:+15103225266] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001882] [to:14023068943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625455587] [to:+17604748326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371670] [to:15203609493] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044852087] [to:+12044807024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162507111] [to:+12312663162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619142440] [to:+15613165828] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:49 ip-10-0-0-11 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:49 ip-10-0-64-10 mdr: 2016-02-01 11:18:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940292] [to:15147085997] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940292] [to:15147085997] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666626] [to:18143357203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-10 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19713315920] [to:+15034475468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925676] [to:15146085627] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958635] [to:19104955232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16107138851] [to:16109997864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-21 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-11 mdr: 2016-02-01 11:18:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12542338287] [to:12546240178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:50 ip-10-0-64-11 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059122749] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:50 ip-10-0-0-10 mdr: 2016-02-01 11:18:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:17819750230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015688372] [to:+19014445676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528368] [to:14405395361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-10 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025033675] [to:+19282975885] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167057745] [to:+19163477063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673564] [to:12674018774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326620] [to:19795740669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141474] [to:18198561126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-10 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444097] [to:12155946831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:51 ip-10-0-0-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:51 ip-10-0-64-11 mdr: 2016-02-01 11:18:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322576549] [to:+18328042008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13853472390] [to:+18018903153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512221830] [to:+14043411375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997434] [to:19562618427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163527308] [to:+12167776639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-21 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-0-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022366163] [to:+16466998127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-11 mdr: 2016-02-01 11:18:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138089521] [to:+19032130749] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:52 ip-10-0-64-10 mdr: 2016-02-01 11:18:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517032200] [to:+16513184766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-20 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447440304346] [to:+447451217767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-20 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14125195252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-10 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086308] [to:17578057337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-11 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-10 mdr: 2016-02-01 11:18:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:53 ip-10-0-64-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:53 ip-10-0-0-11 mdr: 2016-02-01 11:18:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046080768] [to:+12138612741] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805176125] [to:+15874087104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480102] [to:17012006035] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480102] [to:17012006035] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043940] [to:14067020678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047642311] [to:+17784032540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755971] [to:18603945829] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077476605] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:54 ip-10-0-0-10 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709800777] [to:+19148608499] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:54 ip-10-0-64-11 mdr: 2016-02-01 11:18:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207695] [to:17864368230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146497] [to:13157836474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13373138342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479653588] [to:+13475184277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102294711] [to:+19108888010] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302842537] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232193610] [to:+13473799648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873417685] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095190687] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234074305] [to:+13233207157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184198331] [to:+19782729489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783611013] [to:+16785861821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042525359] [to:+18046244878] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045634329] [to:+12138027593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133866381] [to:+14243365698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505727638] [to:+12509000911] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802792181] [to:+14696292741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636627653] [to:+18639493205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931369] [to:+16136046085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232017444] [to:+12135297595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106447209] [to:+13477970686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472903163] [to:+19175995814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038403] [to:+13479193718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025536997] [to:+12139297295] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903062] [to:18598018161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-11 mdr: 2016-02-01 11:18:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140688] [to:18196618838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:55 ip-10-0-64-10 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:55 ip-10-0-0-21 mdr: 2016-02-01 11:18:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163238538] [to:+12162394633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-20 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205243] [to:+447754384468] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083642485] [to:+19298413982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17807281706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549789] [to:17788858453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12547356029] [to:12603104474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531043] [to:16155964587] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18183912124] [to:+18188753800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072328395] [to:+19142817324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788477634] [to:+12138619759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-11 mdr: 2016-02-01 11:18:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:19167167334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:56 ip-10-0-0-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-10 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:56 ip-10-0-64-11 mdr: 2016-02-01 11:18:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646176474] [to:+15103136102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669245] [to:17147209231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309575021] [to:+12138612976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678448451] [to:+12672732500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:57 ip-10-0-64-10 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-11 mdr: 2016-02-01 11:18:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:57 ip-10-0-0-20 mdr: 2016-02-01 11:18:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418325506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065646860] [to:+17027184709] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:58 ip-10-0-64-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062279592] [to:+15068041619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038D0201] -Feb 1 11:18:58 ip-10-0-64-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-10 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402081597] [to:+16513335842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:58 ip-10-0-0-11 mdr: 2016-02-01 11:18:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364512434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004290] [to:14049444188] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038D0202] -Feb 1 11:18:59 ip-10-0-0-20 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418335241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375455823] [to:+19148252760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096992574] [to:+16465688833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19034747763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038027418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:14236659931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-11 mdr: 2016-02-01 11:18:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:18:59 ip-10-0-64-11 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:18:59 ip-10-0-0-10 mdr: 2016-02-01 11:18:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872790065] [to:+15874052285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717670] [to:12263489531] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406837] [to:14016493216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:18653073516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142816254] [to:17179770195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198765] [to:19207135057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708821018] [to:+16784342890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15598645305] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-20 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038027418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17098325098] [to:+17097019189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789533] [to:15184194506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:00 ip-10-0-64-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-10 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:00 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:18435357645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-10 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674773253] [to:+17248033499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-10 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032205] [to:17243225422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916737] [to:17054331991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-10 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-10 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652436642] [to:+18653471745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674773253] [to:+17248033499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:01 ip-10-0-64-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:01 ip-10-0-0-11 mdr: 2016-02-01 11:19:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674773253] [to:+17248033499] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-10 mdr: 2016-02-01 11:19:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142635022] [to:+19172595532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-10 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-10 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-10 mdr: 2016-02-01 11:19:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785488253] [to:+16785867751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:02 ip-10-0-64-10 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:02 ip-10-0-0-11 mdr: 2016-02-01 11:19:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017198] [to:18059219935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-10 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-10 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-10 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864368230] [to:+18133207695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-64-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592293240] [to:+17472338969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-10 mdr: 2016-02-01 11:19:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018601739] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-10 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:03 ip-10-0-0-11 mdr: 2016-02-01 11:19:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239233194] [to:+17607014582] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:18764643133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220671] [to:17814292452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-21 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226017] [to:+447470947713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107671] [to:18317940401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152534434] [to:+14696292731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455530] [to:13239019098] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403352039] [to:+14088683785] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724105613] [to:+14049001240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-10 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:04 ip-10-0-0-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:04 ip-10-0-64-11 mdr: 2016-02-01 11:19:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479827960] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12624704197] [to:+14132736961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436238491] [to:+17605896640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045694819] [to:+17185041621] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017431490] [to:+14242835795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067870747] [to:+15068039997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477448723] [to:+16513337178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619698034] [to:+15617664288] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193083262] [to:+17189627155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-21 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-10 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265415423] [to:+16269882642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:05 ip-10-0-64-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136888] [to:15146607546] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-21 mdr: 2016-02-01 11:19:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:05 ip-10-0-0-11 mdr: 2016-02-01 11:19:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17805176125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725014177] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205619] [to:17069928150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184059846] [to:+15189305393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-10 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-10 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:06 ip-10-0-64-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157893] [to:15873578886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:06 ip-10-0-0-11 mdr: 2016-02-01 11:19:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526882] [to:15673153549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555952] [to:15192164518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:18593170192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-21 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672744] [to:+447752250832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592801] [to:19033140038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618076] [to:13477537945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:07 ip-10-0-0-11 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16509065749] [to:+14695527921] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-11 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:07 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16087120622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018601739] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196754] [to:14177186413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-20 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447501699050] [to:+447418335346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-20 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447534986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786505980] [to:+17784023875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:08 ip-10-0-0-11 mdr: 2016-02-01 11:19:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003729] [to:19378962580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865050] [to:19285213825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:08 ip-10-0-64-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:17046706180] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190756] [to:13044823430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053475] [to:18649082362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022102080] [to:+19027046378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-11 mdr: 2016-02-01 11:19:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866291095] [to:+15103402043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] peiseubug injeungkodeu-ibnida] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-11 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:09 ip-10-0-64-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013466975] [to:+12408924523] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:09 ip-10-0-0-10 mdr: 2016-02-01 11:19:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015344] [to:15416066726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783027203] [to:+13479809572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040423] [to:+19142286562] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049149306] [to:+17408796104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599830696] [to:+19172751324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597070287] [to:+14153404009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146214107] [to:+15147003851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-11 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653133912] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789702] [to:12156680364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:10 ip-10-0-0-10 mdr: 2016-02-01 11:19:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-10 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:10 ip-10-0-64-11 mdr: 2016-02-01 11:19:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705063528] [to:+17187510912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178334353] [to:+16513335899] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-20 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-20 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974548] [to:14803054277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:18656583095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950081] [to:18194734182] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705063528] [to:+17187510912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-11 mdr: 2016-02-01 11:19:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:11 ip-10-0-64-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:11 ip-10-0-0-11 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096526961] [to:+15103404843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317931405] [to:+16317707340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-20 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451222927] [to:+447914068572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-10 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001808] [to:17706165190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-11 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:12 ip-10-0-64-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103959] [to:17544226426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-20 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-11 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606390716] [to:+13477973751] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743671488] [to:+15747251955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:12 ip-10-0-0-10 mdr: 2016-02-01 11:19:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094997686] [to:+19792326170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050664] [to:16043381613] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-0-10 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649224] [to:12075171956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026903336] [to:+12138612952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:13 ip-10-0-64-11 mdr: 2016-02-01 11:19:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:14087267601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268003840] [to:+16475569430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179537] [to:13013286556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-20 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146035415] [to:+16149965617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729025] [to:+18459407409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-20 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866614649] [to:+15103402882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-20 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949317709] [to:+447451240745] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477063] [to:19167057745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-21 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-21 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-21 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887797390] [to:+447451223512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-10 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-11 mdr: 2016-02-01 11:19:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283471185] [to:+16783941715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017337990] [to:+19015042038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:14 ip-10-0-0-11 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:14 ip-10-0-64-10 mdr: 2016-02-01 11:19:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134222037] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548816896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132906242] [to:+16139093312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-20 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525354119] [to:+19364174516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064149190] [to:+13477988215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13212431660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:12154591281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18625889436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888699] [to:18438013356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-0-11 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-10 mdr: 2016-02-01 11:19:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142739] [to:19543933194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:15 ip-10-0-64-11 mdr: 2016-02-01 11:19:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316238] [to:15672015466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-21 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14092205492] [to:13463025825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-11 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525354119] [to:+19364174516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-10 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:16 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:16 ip-10-0-64-10 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143386106] [to:+19149027075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058810] [to:15878791861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-20 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190139] [to:12392097786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294315516] [to:+17254000474] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194399] [to:16789821326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136102] [to:18646176474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:17 ip-10-0-0-11 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406803773] [to:+19492814596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:17 ip-10-0-64-10 mdr: 2016-02-01 11:19:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158257] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543543462] [to:19543802897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514557169] [to:+13017710247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:19024062772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-20 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447423654719] [to:+447451230432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-10 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-64-11 mdr: 2016-02-01 11:19:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:18 ip-10-0-0-11 mdr: 2016-02-01 11:19:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132624551] [to:+16139099432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220677] [to:+19785663152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176760049] [to:+13479805812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235067918] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472572278] [to:+19148486614] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-21 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-11 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-21 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218856] [to:+447508333805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:19 ip-10-0-0-10 mdr: 2016-02-01 11:19:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053146980] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:19 ip-10-0-64-11 mdr: 2016-02-01 11:19:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983936] [to:15199197586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403927765] [to:+13364500557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202629] [to:14436849646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874090843] [to:12267736474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298790] [to:19122379374] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15402711053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15402711053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125195252] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-10 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004909] [to:13069811978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634607] [to:17065934264] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:20 ip-10-0-0-10 mdr: 2016-02-01 11:19:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:20 ip-10-0-64-11 mdr: 2016-02-01 11:19:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12533044281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19152443636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788858453] [to:+17786549789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-20 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-20 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364937] [to:+14153405023] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410194] [to:15198198612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-64-10 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029864593] [to:+14022060563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-11 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338454] [to:+16475569330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:21 ip-10-0-0-10 mdr: 2016-02-01 11:19:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378962580] [to:+17542003729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997151] [to:13124656195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13395459478] [to:13303404873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842463] [to:18622340609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868464436] [to:+13867428451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502438489] [to:+15102548412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092478299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12898388049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291368] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184194506] [to:+12134789533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:22 ip-10-0-64-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-20 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:22 ip-10-0-0-10 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702699897] [to:+19172751695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-11 mdr: 2016-02-01 11:19:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412646874] [to:+19412642469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988321] [to:19142572130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069819863] [to:+13065004260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134242598] [to:+13479191926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605744534] [to:+13478086162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:23 ip-10-0-0-11 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046043344] [to:+12138064853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:23 ip-10-0-64-10 mdr: 2016-02-01 11:19:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053475] [to:18649996956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404063] [to:15612013041] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403544403] [to:+12139927018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138636953] [to:+15162526629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503488148] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063433606] [to:+15068036463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065183131] [to:+14706730784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-21 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176317381] [to:14692680065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-21 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:18023592397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163514] [to:14079491613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038482] [to:14017497004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:24 ip-10-0-0-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865976] [to:+14697286163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-11 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:24 ip-10-0-64-10 mdr: 2016-02-01 11:19:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:19563108585] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-10 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022283031] [to:+13024991024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-10 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-10 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:12038091447] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-10 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003070201] -Feb 1 11:19:25 ip-10-0-64-10 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862588] [to:+13479377471] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-0-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-10 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:25 ip-10-0-64-11 mdr: 2016-02-01 11:19:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-21 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447855143746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303602594] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782171843] [to:+19178777043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-21 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329545] [to:18646633004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:19059122749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893394] [to:16305494752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893394] [to:16305494752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748579] [to:17754420480] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434616932] [to:+12138619382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-11 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857149] [to:12404324607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-0-11 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618929027] [to:+12243239691] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043940] [to:16618775552] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:19086351617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202982308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:26 ip-10-0-64-10 mdr: 2016-02-01 11:19:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144653583] [to:+12167990932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202982308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307061604] [to:+13123009388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085718531] [to:+15099550907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748579] [to:17754420480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547610] [to:14239304113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547610] [to:14239304113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054172587] [to:+17053024510] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177186413] [to:+13479196754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143215868] [to:+12138225537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:27 ip-10-0-64-10 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-10 mdr: 2016-02-01 11:19:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046476255] [to:+15624162390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:27 ip-10-0-0-11 mdr: 2016-02-01 11:19:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-21 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620297] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587481] [to:19046733929] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18604282455] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196164747] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062380868] [to:+17189629851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868464436] [to:+13867428451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387859] [to:13104159632] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194734182] [to:+16474950081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-11 mdr: 2016-02-01 11:19:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:28 ip-10-0-64-11 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17805176125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:28 ip-10-0-0-10 mdr: 2016-02-01 11:19:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145045] [to:12524123671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18106628845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309496270] [to:+19148818715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707935864] [to:+19142816923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032457] [to:12138416469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:29 ip-10-0-0-21 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-10 mdr: 2016-02-01 11:19:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:29 ip-10-0-64-11 mdr: 2016-02-01 11:19:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453888] [to:13186389486] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668273] [to:19292562744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143215868] [to:+12138737166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015688372] [to:+19014445676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799770330] [to:14505012619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025734939] [to:+14435835032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046715718] [to:+19175805379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-11 mdr: 2016-02-01 11:19:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587481] [to:19046733929] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587481] [to:19046733929] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062787] [to:18649818266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12154327143] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:30 ip-10-0-0-10 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:30 ip-10-0-64-11 mdr: 2016-02-01 11:19:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163514] [to:14079491613] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739552] [to:14802422990] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16267107484] [to:+16467019441] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190953] [to:16166385587] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18108451230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-21 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447440304346] [to:+447451217767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579528441] [to:+17572969570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18162009899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077328274] [to:+14076333382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086229] [to:17043400440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796104] [to:13049149306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034522] [to:17249490620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:31 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017543027] [to:+19172669615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:31 ip-10-0-64-10 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123064713] [to:+19134289254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382477] [to:19106705282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16082791045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142344] [to:17547796794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184055] [to:16518907201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046476255] [to:+15624162390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672015466] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335899] [to:19178334353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-11 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-64-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-11 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:32 ip-10-0-0-10 mdr: 2016-02-01 11:19:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-10 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895016160] [to:+19895334815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-10 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898200603] [to:+19895334574] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-10 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:33 ip-10-0-0-11 mdr: 2016-02-01 11:19:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070031] [to:+12135876088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:33 ip-10-0-64-11 mdr: 2016-02-01 11:19:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-21 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337258] [to:+447948928503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064132131] [to:+14706731129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427784] [to:16622511499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473563] [to:19315104080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16082791045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028697] [to:13049923540] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364753] [to:+16467381243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-21 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064832353] [to:+14706730502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043439002] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145177590] [to:+17409102232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309170824] [to:+13479377230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783366979] [to:+14783020925] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:34 ip-10-0-0-10 mdr: 2016-02-01 11:19:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139731971] [to:13373228161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:34 ip-10-0-64-11 mdr: 2016-02-01 11:19:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158151245] [to:+13479801295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144790948] [to:+13145488785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15597026154] [to:15596727078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999485] [to:+19177320121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476079840] [to:+13658001558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288805] [to:18312969033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-10 mdr: 2016-02-01 11:19:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003729] [to:19378962580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-10 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042548689] [to:+14043411275] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:35 ip-10-0-64-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:35 ip-10-0-0-11 mdr: 2016-02-01 11:19:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239878794] [to:+17604748640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789702] [to:12156680364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047779470] [to:+18105805111] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462837273] [to:+14073374649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077213066] [to:+12404357887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994521] [to:14039289151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163060] [to:13046401448] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857149] [to:12027106538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865050] [to:12098727682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-10 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12154327143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:12185170336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244546686] [to:+13479569548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-21 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333002] [to:+447933101077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:36 ip-10-0-64-10 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:36 ip-10-0-0-11 mdr: 2016-02-01 11:19:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031618] [to:12243109094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868236821] [to:+15865746776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710247] [to:12514557169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13149735534] [to:+13148998202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373084637] [to:+12138028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040308] [to:+17727740304] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868236821] [to:+15865746776] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034718833] [to:+15873323646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889181] [to:12522029780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132461977] [to:+19788678736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:37 ip-10-0-64-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333286] [to:17405919847] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387859] [to:13104159632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-11 mdr: 2016-02-01 11:19:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:37 ip-10-0-0-10 mdr: 2016-02-01 11:19:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809824099] [to:+15874087673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-21 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-21 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094997686] [to:+19792326170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193152] [to:18149529924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-10 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18036623951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-10 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:38 ip-10-0-64-10 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195887871] [to:+14503286351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:38 ip-10-0-0-11 mdr: 2016-02-01 11:19:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134067694] [to:+14433801822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-11 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084531] [to:19175280444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-11 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032151] [to:15152054635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-11 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333286] [to:17405919847] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889713] [to:13179855260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-11 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16699002108] [to:+12138228743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-11 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509007247] [to:12506194952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-11 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035209271] [to:+13479377258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:39 ip-10-0-64-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:39 ip-10-0-0-10 mdr: 2016-02-01 11:19:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314398] [to:18506316340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609818] [to:+13369383893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724105613] [to:+14049001240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306002171] [to:+17407853150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-11 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:40 ip-10-0-64-10 mdr: 2016-02-01 11:19:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:40 ip-10-0-0-10 mdr: 2016-02-01 11:19:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139933] [to:12094509274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107671] [to:18312721042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477537945] [to:+17723618076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833626] [to:17573390002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805812] [to:17176760049] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-21 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153953992] [to:+18484824123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477448723] [to:+16513337178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574177] [to:12086026634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-64-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-10 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:41 ip-10-0-0-11 mdr: 2016-02-01 11:19:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527446] [to:19152515712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167772174] [to:12162350401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19132148809] [to:17854242228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042548689] [to:+14043411275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324906] [to:19102587933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-11 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15108606110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-21 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-10 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-10 mdr: 2016-02-01 11:19:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-10 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:42 ip-10-0-64-10 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:42 ip-10-0-0-20 mdr: 2016-02-01 11:19:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-21 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:12172138657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532301058] [to:+17813129425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-10 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154464] [to:+13473439053] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477773729] [to:+18188693873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:43 ip-10-0-0-10 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:43 ip-10-0-64-11 mdr: 2016-02-01 11:19:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508168552] [to:+18589568738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977480] [to:15403595226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029996287] [to:+19028019398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-21 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447779731912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:14049449589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-21 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096171332] [to:+19282855132] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025919677] [to:+14022060740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-20 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-10 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:44 ip-10-0-0-21 mdr: 2016-02-01 11:19:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:44 ip-10-0-64-11 mdr: 2016-02-01 11:19:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256225785] [to:+13606027013] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19122810395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:45 ip-10-0-64-10 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103090570] [to:+17078974245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-20 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292731] [to:19152534434] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151532] [to:15183810759] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:45 ip-10-0-0-10 mdr: 2016-02-01 11:19:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213305082] [to:+17862546921] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065305511] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094869854] [to:+17097005163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994521] [to:14039289151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13463025825] [to:+14092205492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145679330] [to:+14388071572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709135] [to:18144460471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709135] [to:18144460471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12025734939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14127134862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:14049449589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:46 ip-10-0-0-10 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213305082] [to:+17862546921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-10 mdr: 2016-02-01 11:19:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:46 ip-10-0-64-11 mdr: 2016-02-01 11:19:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039F0201] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039F0202] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151532] [to:15183810759] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149419] [to:13309798448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12674816749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084531] [to:19175280444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-10 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755971] [to:18603945829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:47 ip-10-0-64-11 mdr: 2016-02-01 11:19:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146689965] [to:+15146007961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:47 ip-10-0-0-11 mdr: 2016-02-01 11:19:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922986] [to:15148046171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15146924709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032789940] [to:+13475186154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-21 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137944815] [to:+16136048059] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-21 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-11 mdr: 2016-02-01 11:19:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003730202] -Feb 1 11:19:48 ip-10-0-64-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-20 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:48 ip-10-0-64-10 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:48 ip-10-0-0-11 mdr: 2016-02-01 11:19:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649996956] [to:+17277053475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176634753] [to:15167257290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072626584] [to:19524573956] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482483] [to:18433724896] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258628] [to:16184191852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-11 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:49 ip-10-0-64-10 mdr: 2016-02-01 11:19:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-11 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:49 ip-10-0-0-10 mdr: 2016-02-01 11:19:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17012101730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500505] [to:15139047971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320121] [to:12079999485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-20 mdr: 2016-02-01 11:19:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12675962115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-21 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-10 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18167395655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:50 ip-10-0-0-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269840] [to:13477379513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:50 ip-10-0-64-11 mdr: 2016-02-01 11:19:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18137850753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068014] [to:16782002881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-21 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327665] [to:+447414885630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022992494] [to:+13473799648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-21 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447904424393] [to:+447451249834] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500030D0201] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139933] [to:12569191042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709809308] [to:+19706010241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285838142] [to:+19175630754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18286740334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-21 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447806095884] [to:+447520629899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834240] [to:17163075109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154772] [to:+16042652697] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947567] [to:12012341229] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034777924] [to:+18678880439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-0-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:13308097578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-10 mdr: 2016-02-01 11:19:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:51 ip-10-0-64-11 mdr: 2016-02-01 11:19:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108095698] [to:+12674862816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149569177] [to:+16149963761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986024] [to:14192037977] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986024] [to:14192037977] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:52 ip-10-0-64-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-11 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:52 ip-10-0-0-10 mdr: 2016-02-01 11:19:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183660] [to:14088814344] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-10 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-20 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447904424393] [to:+447451249834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500030D0202] -Feb 1 11:19:53 ip-10-0-0-10 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-20 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-21 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19102612854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:53 ip-10-0-0-11 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-10 mdr: 2016-02-01 11:19:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:53 ip-10-0-64-11 mdr: 2016-02-01 11:19:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732886] [to:16318942077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033779] [to:17087317578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867128450] [to:+13478683806] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015402861] [to:+12182031169] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:15206315681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129746663] [to:+14125354593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015402861] [to:+12182031169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13033198819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850497] [to:15748088496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-11 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:54 ip-10-0-64-10 mdr: 2016-02-01 11:19:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:54 ip-10-0-0-21 mdr: 2016-02-01 11:19:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155524686] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712499715] [to:+12029991541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036690562] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145901528] [to:+13476678942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077152745] [to:+16463497668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038502642] [to:+17077502879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179397726] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868236821] [to:+15865746776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407517766] [to:+14353391085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003070202] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402041912] [to:+12408924904] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475492498] [to:+16474916287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164309122] [to:+16162390386] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316174037] [to:+16313975052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293538599] [to:+13475186323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786064541] [to:+19783619441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190953] [to:16166385587] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13033198819] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-10 mdr: 2016-02-01 11:19:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129232173] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-10 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004481] [to:13069308633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-21 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327665] [to:+447414885630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:55 ip-10-0-64-11 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:55 ip-10-0-0-21 mdr: 2016-02-01 11:19:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062480] [to:12086061438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106705282] [to:+13369382477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19017365304] [to:+19142815264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042593560] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062548170] [to:+16515608421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334329] [to:18503770813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-10 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:15417257454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:56 ip-10-0-64-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-10 mdr: 2016-02-01 11:19:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14428886132] [to:+13479138787] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:56 ip-10-0-0-11 mdr: 2016-02-01 11:19:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143279] [to:19393398874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15744857331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048201] [to:12095415037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-10 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17065705339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-20 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-20 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627143] [to:+447747104276] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033950] [to:17243120760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12139102155] [to:+19282977695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042289506] [to:+14242865393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-64-11 mdr: 2016-02-01 11:19:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190139] [to:12392096166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-10 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:57 ip-10-0-0-11 mdr: 2016-02-01 11:19:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389532] [to:12107458192] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777108] [to:18127012443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234507233] [to:+18312228652] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17134384220] [to:+17133735871] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+16137014607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016804163] [to:+14242847436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:18307346824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865697210] [to:+13867428035] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:58 ip-10-0-0-10 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373451330] [to:+16474916206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-11 mdr: 2016-02-01 11:19:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:58 ip-10-0-64-10 mdr: 2016-02-01 11:19:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-20 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-21 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-21 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236847] [to:+447944253420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003850202] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221030] [to:14847197736] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216142235] [to:+13219998418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745032] [to:16318486826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17158190902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12892756578] [to:12266003112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-10 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:19:59 ip-10-0-64-11 mdr: 2016-02-01 11:19:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:19:59 ip-10-0-0-11 mdr: 2016-02-01 11:19:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105450005] [to:+17604749841] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16107138851] [to:16109997864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-10 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-21 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447418335241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-21 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:17184337212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479961] [to:13047039748] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249317470] [to:+14128193461] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-10 mdr: 2016-02-01 11:20:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145313365] [to:+16465472836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-11 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:00 ip-10-0-64-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:15184059846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019420] [to:13186171902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-10 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228537] [to:16202626867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-10 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988998] [to:18042522727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167772174] [to:12162350401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-11 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-21 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218466] [to:+447762782867] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-10 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:01 ip-10-0-64-10 mdr: 2016-02-01 11:20:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:01 ip-10-0-0-21 mdr: 2016-02-01 11:20:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-20 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645381] [to:15023315352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-11 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14087675320] [to:+14086182958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-10 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872790065] [to:+15874052285] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164463284] [to:+16163266402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:02 ip-10-0-64-10 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:02 ip-10-0-0-11 mdr: 2016-02-01 11:20:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693847154] [to:18067812198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026880592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997744] [to:12603164642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053949556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525324089] [to:+14158594819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-20 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-11 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-10 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144177218] [to:+16692223797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-21 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-20 mdr: 2016-02-01 11:20:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:03 ip-10-0-64-11 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:03 ip-10-0-0-10 mdr: 2016-02-01 11:20:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036174167] [to:+16822139507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283026505] [to:+14242835510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482483] [to:18433724896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802997] [to:12392873669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181112] [to:16147331997] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:13134604556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-10 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364271] [to:13364703257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:04 ip-10-0-0-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-11 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12137698395] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:04 ip-10-0-64-10 mdr: 2016-02-01 11:20:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-20 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914840] [to:14502097442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045399316] [to:+12132957246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097438098] [to:+16474914812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003850201] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274225] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+15874090843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319180531] [to:+16318127495] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18167395655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145255591] [to:+13477865358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733826] [to:17708787981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334213] [to:19783993389] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18434616932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009304] [to:19736995203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372139] [to:17142026707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048946377] [to:+12048132732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198765] [to:19207135057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044715390] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-11 mdr: 2016-02-01 11:20:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:05 ip-10-0-64-11 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:05 ip-10-0-0-10 mdr: 2016-02-01 11:20:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319180531] [to:+16318127495] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053737972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:17756363269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122298492] [to:+18326501697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-20 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+19177739392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:17173711421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193714] [to:16624696644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:06 ip-10-0-0-11 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146035415] [to:+16149965617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-11 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882642] [to:16265415423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:06 ip-10-0-64-10 mdr: 2016-02-01 11:20:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767694] [to:15673954880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-21 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020456] [to:14783194716] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-21 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246275] [to:+447754128416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024121626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097700643] [to:+17097004811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852261093] [to:+16319801029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785808176] [to:+14704446258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868324] [to:16786634702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884901] [to:13609318163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15142682236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137209039] [to:+19492453060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-20 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:07 ip-10-0-0-11 mdr: 2016-02-01 11:20:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:07 ip-10-0-64-10 mdr: 2016-02-01 11:20:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284001153] [to:+12139354420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:16095190687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631781] [to:15309218670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-21 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223142] [to:+447581423589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:16138595949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040312] [to:+16467380890] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055996297] [to:+12262430538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:08 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503591] [to:13378527605] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-11 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138647230] [to:+16136041758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:08 ip-10-0-64-10 mdr: 2016-02-01 11:20:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-10 mdr: 2016-02-01 11:20:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503591] [to:13378527605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203444] [to:15144245278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13858881961] [to:+13853361804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914840] [to:14502097442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-20 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17013187756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14125195252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:14087267601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16063071537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865061145] [to:+13023744821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672705064] [to:+12136348812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652592108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-0-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-10 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:09 ip-10-0-64-11 mdr: 2016-02-01 11:20:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649389] [to:15673153015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316316] [to:13127727214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-11 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894930231] [to:+19894020297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-10 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109627476] [to:+19178093867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105818680] [to:+13477865211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-10 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13432640243] [to:+16476911771] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:10 ip-10-0-0-20 mdr: 2016-02-01 11:20:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146611559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-10 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:10 ip-10-0-64-11 mdr: 2016-02-01 11:20:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365855] [to:17257778741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232274837] [to:+19149088724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082202001] [to:+12086252270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908280] [to:18167395655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340695] [to:12105374244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203867062] [to:14136253174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-11 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412323265] [to:+15412488213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:11 ip-10-0-0-10 mdr: 2016-02-01 11:20:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436682114] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:11 ip-10-0-64-11 mdr: 2016-02-01 11:20:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15805142234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14238874728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046200] [to:19028024432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164629] [to:19194920459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824670] [to:19732892199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882930] [to:15302645696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12345678901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085587547] [to:+18572329795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:12 ip-10-0-64-11 mdr: 2016-02-01 11:20:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:12 ip-10-0-0-10 mdr: 2016-02-01 11:20:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-10 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210043] [to:15593034298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572147899] [to:+16025004726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017127925] [to:+12027179723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472602765] [to:+14242846404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-20 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520605601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040616] [to:+16172193643] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:13 ip-10-0-64-11 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072979358] [to:+12139353198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-10 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-21 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447855143746] [to:+447418338470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:13 ip-10-0-0-21 mdr: 2016-02-01 11:20:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-21 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082982517] [to:+19177373848] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023012589] [to:+19028019289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092115] [to:17043088948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015093] [to:15813194370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-10 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-10 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:14 ip-10-0-0-11 mdr: 2016-02-01 11:20:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:14 ip-10-0-64-11 mdr: 2016-02-01 11:20:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691642] [to:12603129925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542020718] [to:+13055017810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360322] [to:18562374133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788769230] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375032928] [to:+17604748030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152534434] [to:+14696292731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044715390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649082362] [to:+17277053475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-21 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097368] [to:109472186328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-20 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335346] [to:+447901942641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149963091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-20 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335346] [to:+447901942641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640711] [to:19513473576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652276] [to:16047156940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-10 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-11 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412646874] [to:+19412642469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:15 ip-10-0-0-20 mdr: 2016-02-01 11:20:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:15 ip-10-0-64-10 mdr: 2016-02-01 11:20:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897001618] [to:+16096144562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-20 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095876] [to:14384044133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974245] [to:15103090570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807631] [to:17048845646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999485] [to:+19177320121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-20 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348449] [to:17606289263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022799] [to:17095417302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129409] [to:16109087591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375032928] [to:+17604748030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788334597] [to:+14044811778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785205325] [to:+16465640991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145255591] [to:+13477865358] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-10 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:16 ip-10-0-64-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:16 ip-10-0-0-11 mdr: 2016-02-01 11:20:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375032928] [to:+17604748030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732090] [to:14239947333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358401240] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132980063] [to:+12135455120] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-21 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835314] [to:13179952880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467503113] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-21 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262285050] [to:+12262411654] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286062] [to:15402711053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13134235752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835314] [to:12562984060] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138658] [to:16034774307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:14236659931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:17 ip-10-0-64-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12068613508] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:17 ip-10-0-0-11 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819892233] [to:+15817023385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316109658] [to:+19014449905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:15312894745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677702173] [to:+12674862910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-10 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-10 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14388757916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316316] [to:13127727214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:18 ip-10-0-64-10 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:18 ip-10-0-0-11 mdr: 2016-02-01 11:20:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-21 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15195206869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-21 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-20 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640030] [to:16783620479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872790065] [to:+15874052285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138089521] [to:+19032130749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262032637] [to:+12262403373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14424446851] [to:19852108127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312969033] [to:+18314288805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044012691] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-10 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-64-11 mdr: 2016-02-01 11:20:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:19 ip-10-0-0-11 mdr: 2016-02-01 11:20:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884532] [to:14439293834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619698550] [to:+13476677773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093312] [to:16132906242] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297595] [to:14232017444] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048059] [to:16137944815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893394] [to:16305494752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252775218] [to:+19149098181] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401924] [to:12132734348] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372196018] [to:+12135296317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530366] [to:14108006608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-10 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046396] [to:19022330148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-20 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-20 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014059] [to:12187664406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:20 ip-10-0-64-10 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:20 ip-10-0-0-11 mdr: 2016-02-01 11:20:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667835] [to:+12602327238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:14087267601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404378] [to:19102733383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032155434] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054808325] [to:+15058004451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-10 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285213825] [to:+13234865050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:21 ip-10-0-0-10 mdr: 2016-02-01 11:20:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:21 ip-10-0-64-11 mdr: 2016-02-01 11:20:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505012619] [to:+15799770330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364864294] [to:+13366450997] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093132072] [to:+14022854442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328025406] [to:17132566795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175386580] [to:+19177329053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:22 ip-10-0-0-10 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:22 ip-10-0-64-11 mdr: 2016-02-01 11:20:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175386580] [to:+19177329053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257769104] [to:+12136165064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056304580] [to:+12264559516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-11 mdr: 2016-02-01 11:20:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326170] [to:14094997686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-20 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027588775] [to:+14242863733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-64-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-11 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:23 ip-10-0-0-10 mdr: 2016-02-01 11:20:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168289822] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071572] [to:15145679330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:12105609818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142635022] [to:+19172595532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000012] [to:13025218967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-21 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787610] [to:12525602096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023592397] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713427] [to:17177069020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:24 ip-10-0-0-11 mdr: 2016-02-01 11:20:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-11 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177663] [to:12393404917] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:24 ip-10-0-64-10 mdr: 2016-02-01 11:20:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812650] [to:13049622422] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088377938] [to:+14155698445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-20 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164629] [to:19194920459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-20 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451240203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143667457] [to:+15873277837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143667457] [to:+15873277837] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162274096] [to:+16177067220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19122810395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364864294] [to:+13366450997] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373084637] [to:+12138028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089864000] [to:+19083824945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095896552] [to:+17097019065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:25 ip-10-0-64-10 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815000555] [to:+16172139626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-11 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:25 ip-10-0-0-21 mdr: 2016-02-01 11:20:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179976060] [to:+13478086924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734583334] [to:+17736669804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037E0601] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182085399] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037E0602] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13854441676] [to:+14043412642] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-11 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:26 ip-10-0-64-10 mdr: 2016-02-01 11:20:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480064] [to:13477499138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:26 ip-10-0-0-10 mdr: 2016-02-01 11:20:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179855260] [to:+13176889713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122810395] [to:+14242836557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187510680] [to:13474996890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299390443] [to:+12136163363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019289] [to:19023012589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407726967] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688349] [to:18042197488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-10 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:27 ip-10-0-64-10 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:27 ip-10-0-0-11 mdr: 2016-02-01 11:20:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664676] [to:18327222425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204832566] [to:+15104474872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158482] [to:19209032554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-20 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748640] [to:14239878794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193089562] [to:+19172610801] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397773466] [to:+19543141240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691857] [to:18027821603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-11 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17019365685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-10 mdr: 2016-02-01 11:20:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:28 ip-10-0-0-21 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214836] [to:+447463795268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-11 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804388] [to:17852153918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:28 ip-10-0-64-10 mdr: 2016-02-01 11:20:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18434616932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964644] [to:16149665303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196754] [to:14177186413] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12892756578] [to:15196213738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037E0604] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730502] [to:17064832353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189245542] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463539485] [to:+18133201244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740532] [to:+18638555574] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:29 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:29 ip-10-0-64-10 mdr: 2016-02-01 11:20:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852108127] [to:+14424446851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405890] [to:17866161419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-10 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252104201] [to:+12138225426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086363565] [to:+17328842569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064148215] [to:+18033104551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954765] [to:12506616498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-11 mdr: 2016-02-01 11:20:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737087823] [to:+12342227347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:30 ip-10-0-64-11 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:30 ip-10-0-0-10 mdr: 2016-02-01 11:20:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-21 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-20 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90A06] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165579955] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148143924] [to:+13023744627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064148215] [to:+18033104551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020297] [to:19894930231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905854] [to:+15817015041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215933] [to:17604988489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12087915382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064789961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884732] [to:14132160631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:31 ip-10-0-64-11 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-20 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:31 ip-10-0-0-10 mdr: 2016-02-01 11:20:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19719998165] [to:15038689819] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034747763] [to:+19033076562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157036] [to:14692685728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-20 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90A07] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364568] [to:+14146006720] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883504] [to:15306659391] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-20 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16138610727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064739956] [to:+14706731099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858569998] [to:+13392304734] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15746078165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-11 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835510] [to:18283026505] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674816749] [to:+12672732617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:32 ip-10-0-0-10 mdr: 2016-02-01 11:20:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19164673228] [to:+19165836400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:32 ip-10-0-64-10 mdr: 2016-02-01 11:20:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480019] [to:17312279270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191031] [to:17314003432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202783764] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317802443] [to:+16316141242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202783764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109087591] [to:+19715129409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046200] [to:19028024432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:33 ip-10-0-0-11 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023315352] [to:+18572645381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-10 mdr: 2016-02-01 11:20:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673038477] [to:+14197767796] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:33 ip-10-0-64-11 mdr: 2016-02-01 11:20:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095896552] [to:+17097019065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786634702] [to:+16785868324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411370] [to:12267923785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703162755] [to:+14706734251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-21 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90A09] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134853958] [to:+12344017332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783876566] [to:+19513387072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-21 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B90A08] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-21 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603945829] [to:+17186755971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175386580] [to:+19177329053] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155855547] [to:+19312577599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046195] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:34 ip-10-0-64-11 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:34 ip-10-0-0-10 mdr: 2016-02-01 11:20:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696898782] [to:+12602755221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365403] [to:14048015396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142504] [to:19542039954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855100266] [to:+16465640673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474678085] [to:+16474955737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018659] [to:12629095976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-20 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90A0A] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-20 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142572130] [to:+19148988321] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-10 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414457541] [to:+13126145672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-10 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305244790] [to:+14582025806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:35 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:35 ip-10-0-0-11 mdr: 2016-02-01 11:20:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12895273321] [to:+12264556086] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168208270] [to:+12167990710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309075668] [to:+14402526529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-20 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-21 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447852965335] [to:+447451231301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-21 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-21 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520605601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014059] [to:12187664406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-10 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108451230] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309170824] [to:+13479377230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466635591] [to:+16572211439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-10 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739302] [to:19105082074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-64-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-20 mdr: 2016-02-01 11:20:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:36 ip-10-0-0-11 mdr: 2016-02-01 11:20:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088543] [to:15203385110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-20 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BA0A01] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17727776680] [to:+17726177397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204046] [to:18133614539] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513473576] [to:+19513640711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:15303032792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004510] [to:13068502141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-11 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:37 ip-10-0-0-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:37 ip-10-0-64-10 mdr: 2016-02-01 11:20:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012341229] [to:+19046947567] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-21 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0A02] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18033159556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547551] [to:15139096635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603945829] [to:+17186755971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-20 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BA0A04] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-20 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0A03] -Feb 1 11:20:38 ip-10-0-0-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:13127782153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-11 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:38 ip-10-0-0-10 mdr: 2016-02-01 11:20:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:38 ip-10-0-64-11 mdr: 2016-02-01 11:20:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:18705147031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156974070] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19782547436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388757916] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-21 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327665] [to:+447414885630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181018] [to:12045340517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-21 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287763443] [to:+12139354620] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159976874] [to:15166525462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:39 ip-10-0-64-10 mdr: 2016-02-01 11:20:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-11 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:39 ip-10-0-0-20 mdr: 2016-02-01 11:20:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BA0A05] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147004181] [to:14388638503] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132071017] [to:+14132519315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:12057372189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046162449] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327238] [to:12603667835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787610] [to:19193446057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-11 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389983448] [to:+14388079726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093132072] [to:+14022854442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:17044497875] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621663] [to:17023087225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:40 ip-10-0-64-11 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18122193057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:40 ip-10-0-0-10 mdr: 2016-02-01 11:20:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785968044] [to:+19783649053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035569002] [to:+17206231331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033103] [to:17248825599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147639648] [to:13142828948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-11 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-20 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-21 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BA0A06] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-11 mdr: 2016-02-01 11:20:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730097] [to:17068178717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:41 ip-10-0-64-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-11 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153739678] [to:+13477866491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:41 ip-10-0-0-10 mdr: 2016-02-01 11:20:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603945829] [to:+17186755971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663407] [to:12693835856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-10 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287107759] [to:+14804392157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805176125] [to:+15874087104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360322] [to:18562374133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17159310683] [to:+14148887109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-11 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095876] [to:14384044133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-20 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BA0A07] -Feb 1 11:20:42 ip-10-0-0-11 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123122978] [to:+18572405070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:42 ip-10-0-0-20 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BA0A08] -Feb 1 11:20:42 ip-10-0-0-10 mdr: 2016-02-01 11:20:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:42 ip-10-0-64-10 mdr: 2016-02-01 11:20:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-21 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12194337971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-21 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18175007950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344462744] [to:+13473899775] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148397] [to:12542957140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703950765] [to:+17605898713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805379] [to:13046715718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-10 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016675341] [to:+13473899665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-11 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:43 ip-10-0-64-11 mdr: 2016-02-01 11:20:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:43 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-10 mdr: 2016-02-01 11:20:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189474331] [to:+17813129143] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694149384] [to:+12693366473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092407331] [to:+19712611279] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-20 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BA0A09] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862594] [to:+16463494861] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025199395] [to:+13025830100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:44 ip-10-0-0-11 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512000819] [to:+16125023319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193833498] [to:16197170200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:44 ip-10-0-64-10 mdr: 2016-02-01 11:20:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-21 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BA0A0A] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855100266] [to:+16465640673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838168] [to:13046829869] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411370] [to:12267923785] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-10 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-11 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:45 ip-10-0-64-10 mdr: 2016-02-01 11:20:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808327124] [to:+17784024510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:45 ip-10-0-0-11 mdr: 2016-02-01 11:20:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-20 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447747104276] [to:+447520627143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449338] [to:+17279986354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474097995] [to:+14692175240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18133048435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132160631] [to:+15087884732] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102804803] [to:+19199162830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046200] [to:19028024432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164629] [to:19194920459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19167532374] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12294441599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BB0A02] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360322] [to:18562374133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BB0A01] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823486] [to:15852605379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:46 ip-10-0-64-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152054635] [to:+15152032151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-10 mdr: 2016-02-01 11:20:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-21 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:46 ip-10-0-0-11 mdr: 2016-02-01 11:20:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12137698395] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017934910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140141] [to:16037260657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472338969] [to:18592293240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337215] [to:13182908946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162332] [to:19196416348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143357203] [to:+15617666626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-20 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364512434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401390] [to:15086620626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737184405] [to:+13473797285] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257291] [to:12527171269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142029995] [to:+12627775900] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-20 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BB0A03] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-20 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447711865468] [to:+447451239077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203163328] [to:+14242218692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-0-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897883] [to:17654629936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-11 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:47 ip-10-0-64-10 mdr: 2016-02-01 11:20:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082026499] [to:+19083824775] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473931363] [to:+14158253889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082623] [to:17812197320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530684] [to:16025385101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19377502900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055443] [to:18649017770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086100] [to:15142139710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-21 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BB0A04] -Feb 1 11:20:48 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-21 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17084154278] [to:+17736666846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:48 ip-10-0-0-10 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198067490] [to:+12262410233] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:48 ip-10-0-64-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036909651] [to:+15874084760] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049237174] [to:+19802093652] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016549845] [to:+18018500580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500036C0201] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347218988] [to:+17185041039] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-11 mdr: 2016-02-01 11:20:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:49 ip-10-0-0-11 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:49 ip-10-0-64-10 mdr: 2016-02-01 11:20:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044885510] [to:+14049001307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218949] [to:16015967594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016549845] [to:+18018500580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500036C0202] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169103636] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767796] [to:15673038477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742646440] [to:+17187349894] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-21 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BB0A05] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055443] [to:18649017770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19122810395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-20 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-21 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-20 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632740496] [to:+18188753678] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:14012975501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-10 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:50 ip-10-0-64-11 mdr: 2016-02-01 11:20:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:50 ip-10-0-0-10 mdr: 2016-02-01 11:20:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609861817] [to:+13609727785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593587700] [to:+16467389396] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393008828] [to:+14242797959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-20 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627972] [to:+447432251896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-10 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17868537532] [to:+13053406988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-11 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475016650] [to:+19176634388] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-11 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:51 ip-10-0-64-10 mdr: 2016-02-01 11:20:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791701] [to:17162085961] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:51 ip-10-0-0-20 mdr: 2016-02-01 11:20:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BB0A07] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691367] [to:12602732686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876083] [to:19098000427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-20 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-21 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096922] [to:13362805082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-21 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BB0A06] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046462] [to:19028173641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-11 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618076] [to:13477537945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479846] [to:19376701357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141242] [to:16317802443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:52 ip-10-0-0-10 mdr: 2016-02-01 11:20:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:52 ip-10-0-64-11 mdr: 2016-02-01 11:20:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403096979] [to:+13478684571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13096608266] [to:+12342314592] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134550853] [to:+16477995727] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-20 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BB0A08] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142186063] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-20 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BB0A09] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:53 ip-10-0-0-10 mdr: 2016-02-01 11:20:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134849612] [to:+18133205615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:53 ip-10-0-64-11 mdr: 2016-02-01 11:20:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188276463] [to:+14844893031] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003D60301] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377035100] [to:+12138026518] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014513447] [to:+19738789677] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479903] [to:19186256895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-10 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-11 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:54 ip-10-0-64-10 mdr: 2016-02-01 11:20:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:54 ip-10-0-0-20 mdr: 2016-02-01 11:20:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BB0A0A] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-20 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-20 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944757810] [to:+447451241587] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234916623] [to:+17604745398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-20 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742262942] [to:+19717328992] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057675069] [to:+13052038748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105071348] [to:+12343867680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089864000] [to:+19083824945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17099865021] [to:+17097019517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625987627] [to:+12693325667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500037E0603] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238395128] [to:+18572645643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658042209] [to:+13477865107] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029074204] [to:+12027179567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392873669] [to:+17864802997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632881935] [to:+18638557880] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194127472] [to:+15817009047] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204046] [to:18133614539] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645381] [to:15027776983] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19499880046] [to:+16269882849] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-21 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447874749593] [to:+447520609415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-21 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-11 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563786262] [to:+18563126128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-11 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146611559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:55 ip-10-0-0-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:12252808794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:55 ip-10-0-64-10 mdr: 2016-02-01 11:20:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:13025199395] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861821] [to:16783611013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786530138] [to:16048081863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203444] [to:15144245278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-10 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15745751123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D60302] -Feb 1 11:20:56 ip-10-0-64-10 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:56 ip-10-0-0-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777108] [to:18127012443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:56 ip-10-0-64-11 mdr: 2016-02-01 11:20:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061116] [to:22508009213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654326860] [to:+17659869131] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197746444] [to:+12267984235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-21 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-21 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19319814589] [to:+16158100491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-10 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-10 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133207239] [to:18122398171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:57 ip-10-0-64-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069552] [to:13093519094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434616932] [to:+12138619382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:57 ip-10-0-0-11 mdr: 2016-02-01 11:20:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036317] [to:15063812730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654692462] [to:+17324433140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265556] [to:14062539752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12292997523] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299773] [to:14103362609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:15105983141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:13196519581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-11 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086229] [to:17043400440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:58 ip-10-0-64-10 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488271] [to:15867388463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-11 mdr: 2016-02-01 11:20:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:18039179726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:58 ip-10-0-0-21 mdr: 2016-02-01 11:20:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142424991] [to:+19715123138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152197176] [to:+13477735109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D60303] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437400936] [to:+14434530428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016569] [to:13867486101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-20 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047160707] [to:+13478086321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18178963927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354620] [to:18287763443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158916832] [to:18432139166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354593] [to:14129746663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:20:59 ip-10-0-0-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:20:59 ip-10-0-64-11 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:20:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068454] [to:13136246677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149665303] [to:+16149964644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15869441447] [to:+13478021557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-21 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087104] [to:17805176125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488271] [to:15867388463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463493965] [to:16466411997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003790201] -Feb 1 11:21:00 ip-10-0-64-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866161419] [to:+13053405890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195911631] [to:+19142066995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-64-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424761] [to:14077476605] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17753384634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-10 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:00 ip-10-0-0-11 mdr: 2016-02-01 11:21:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-20 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-10 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-11 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-64-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394387] [to:12166449506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-10 mdr: 2016-02-01 11:21:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194021542] [to:+12262410703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-11 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360886] [to:16233416095] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:01 ip-10-0-0-20 mdr: 2016-02-01 11:21:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396452397] [to:+16513337606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568809] [to:16476887631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143588455] [to:+14387953842] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-20 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986913] [to:14043974998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18176009694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468174] [to:18037270218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356136] [to:13024011662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046715303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-11 mdr: 2016-02-01 11:21:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:02 ip-10-0-64-11 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201409] [to:14433665528] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:02 ip-10-0-0-10 mdr: 2016-02-01 11:21:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624162263] [to:13103887687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093014] [to:16132614338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093014] [to:16132614338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:13127782153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309173005] [to:+15304513898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-20 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766532630] [to:+447418334493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:03 ip-10-0-64-10 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868719099] [to:+13866012652] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-21 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-11 mdr: 2016-02-01 11:21:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:03 ip-10-0-0-10 mdr: 2016-02-01 11:21:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802887017] [to:+14582023574] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053149355] [to:+18053942254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-10 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671562] [to:+16474952108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-10 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:04 ip-10-0-0-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302590] [to:14124598386] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:04 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808327124] [to:+16474916705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354420] [to:18284001153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015880662] [to:+14243364069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269326862] [to:+16477994547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068812825] [to:+13069929469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848024729] [to:+13479379614] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706775669] [to:+13214067519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603560969] [to:+19717778105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198904062] [to:+16474941304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203934] [to:14102699162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-20 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:12079561269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-21 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-10 mdr: 2016-02-01 11:21:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174386591] [to:+15178615956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:05 ip-10-0-64-10 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474872] [to:15204832566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:05 ip-10-0-0-11 mdr: 2016-02-01 11:21:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656583095] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-10 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149193777] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-11 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143588455] [to:+14387953842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-0-20 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-10 mdr: 2016-02-01 11:21:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084250027] [to:+19082809147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:06 ip-10-0-64-11 mdr: 2016-02-01 11:21:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040826] [to:15023411605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010241] [to:19709809308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025331] [to:12404128542] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027440] [to:15136962797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916287] [to:16475492498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076049598] [to:+13479789709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099966667] [to:+14253338341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-10 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:07 ip-10-0-64-10 mdr: 2016-02-01 11:21:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:18148891766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:07 ip-10-0-0-11 mdr: 2016-02-01 11:21:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326820537] [to:+13123009529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069682] [to:14428004633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043511228] [to:+13475089635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:18324756768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122953105] [to:+14122302146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-20 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-20 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003350201] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646633004] [to:+18572329545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503002664] [to:16508715510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899775] [to:14344462744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788959488] [to:+17784026820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072564516] [to:+19172659786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:08 ip-10-0-0-10 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092015121] [to:+15612318390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:08 ip-10-0-64-11 mdr: 2016-02-01 11:21:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093858] [to:14842064909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154617876] [to:+14156491396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-21 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-21 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858936674] [to:+447520608608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003350202] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12544886986] [to:12545636876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905854] [to:+15817015041] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206367] [to:+13658002817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614463] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:09 ip-10-0-0-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622511499] [to:+19018427784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-10 mdr: 2016-02-01 11:21:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706085443] [to:+12134788780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:09 ip-10-0-64-11 mdr: 2016-02-01 11:21:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805082] [to:+14693096922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313794353] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774532] [to:17328297234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377411] [to:13027530194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109781846] [to:+14072680797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18643346681] [to:18287740554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025018] [to:18602680205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129837132] [to:+13479787116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045249537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373170] [to:14074924857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047160707] [to:+13478086321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132900575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364099669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19287076873] [to:19286518256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17753384634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143588455] [to:+14387953842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084250027] [to:+19082809147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:10 ip-10-0-64-11 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:10 ip-10-0-0-10 mdr: 2016-02-01 11:21:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174596428] [to:+13172104209] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-20 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-20 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184210262] [to:+12138733864] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404580001] [to:+12404084748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E60201] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-10 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-10 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122193057] [to:+16467381128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094997686] [to:+19792326170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:11 ip-10-0-64-11 mdr: 2016-02-01 11:21:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:11 ip-10-0-0-11 mdr: 2016-02-01 11:21:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14177309606] [to:+15617666836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147714545] [to:+17605895082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12094221934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17732943607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043088948] [to:+19802092115] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-21 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-20 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683806] [to:17867128450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054230182] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:16478924354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092407331] [to:+19712611279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-10 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-10 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203070320] [to:17204167602] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:12 ip-10-0-0-11 mdr: 2016-02-01 11:21:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857687791] [to:+12813066412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:12 ip-10-0-64-11 mdr: 2016-02-01 11:21:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476191415] [to:15185787976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204832566] [to:+15104474872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749118] [to:14196188562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040490] [to:+15108244495] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054230182] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282904856] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085679] [to:15147012581] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085679] [to:15147012581] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502203] [to:19407360278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064809976] [to:+13064000166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:13 ip-10-0-64-11 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:13187712503] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:13 ip-10-0-0-10 mdr: 2016-02-01 11:21:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-20 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147004181] [to:14388638503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153739678] [to:+13477866491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416066726] [to:+14582015344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266003112] [to:+12892756578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-21 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:12267819700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-10 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404580001] [to:+12404084748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E60202] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365667932] [to:+17348210880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993075] [to:19543760646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:14 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:14 ip-10-0-0-10 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13472624297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319936] [to:18038007930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17156974070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963761] [to:16149569177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573376925] [to:+19175995086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568809] [to:16476887631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-20 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360175] [to:15092022819] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-11 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040587] [to:+18193070311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-11 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324691452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688833] [to:17096992574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:15 ip-10-0-64-10 mdr: 2016-02-01 11:21:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-11 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165473909] [to:+12018985921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:15 ip-10-0-0-21 mdr: 2016-02-01 11:21:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447443419116] [to:+447451238072] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003940202] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688349] [to:18042989255] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373810524] [to:+13479196778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903062] [to:18598018161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404032804] [to:+12533361218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746124768] [to:+15745667560] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130030] [to:15055858366] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063330213] [to:+15068038864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-64-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334075] [to:19892801555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19549336200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094515] [to:13154547975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-11 mdr: 2016-02-01 11:21:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:16 ip-10-0-0-10 mdr: 2016-02-01 11:21:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032448209] [to:+12135760957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746124768] [to:+15745667560] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564581418] [to:+14153406670] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783611013] [to:+16785861821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-21 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447828999265] [to:+447418323585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145358231] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-21 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-21 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-10 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138595949] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512167842] [to:+13202897477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-0-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657261] [to:12543928010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-10 mdr: 2016-02-01 11:21:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:17 ip-10-0-64-11 mdr: 2016-02-01 11:21:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183064055] [to:+16233839292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044957558] [to:+19802092133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16147694630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605433446] [to:17604019573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096318761] [to:+12346507685] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-20 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231331] [to:18035569002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-20 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696898782] [to:+12602755221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218889] [to:+19199166322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:18 ip-10-0-64-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076625235] [to:+16466998648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-11 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:18 ip-10-0-0-10 mdr: 2016-02-01 11:21:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622340609] [to:+17328842463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12255713291] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093014] [to:16132614338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799972153] [to:+12155961003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064832353] [to:+14706730502] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028173641] [to:+19027046462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252777952] [to:+14692052817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988344] [to:19803491736] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-11 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:19 ip-10-0-0-10 mdr: 2016-02-01 11:21:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:19 ip-10-0-64-10 mdr: 2016-02-01 11:21:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477537945] [to:+17723618076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416066726] [to:+14582015344] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673772942] [to:+15672819676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066143624] [to:+13479805435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-11 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243870886] [to:12246340065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-11 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:20 ip-10-0-64-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108006608] [to:+14434530366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-10 mdr: 2016-02-01 11:21:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:20 ip-10-0-0-20 mdr: 2016-02-01 11:21:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209445] [to:+447929125077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-21 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105298570] [to:+12155961023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174380380] [to:+13072759034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254289392] [to:+17189627231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16147694630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634572] [to:13143054673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:21 ip-10-0-0-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327205135] [to:+17322582363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-10 mdr: 2016-02-01 11:21:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:21 ip-10-0-64-11 mdr: 2016-02-01 11:21:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15149193777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14127134862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-10 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262285050] [to:+12262411654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032151] [to:15152054635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402212336] [to:+17408796733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17732943607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176881128] [to:+13477146890] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182181220] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-20 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-10 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-20 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-21 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-0-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132569] [to:16173315949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164506340] [to:+19292009430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-11 mdr: 2016-02-01 11:21:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:22 ip-10-0-64-10 mdr: 2016-02-01 11:21:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403308041] [to:+15817009128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174380380] [to:+13072759034] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003870201] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870202] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099093] [to:18192382467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774532] [to:17328297234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014069] [to:14137689670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014069] [to:14137689670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176881128] [to:+13477146890] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:23 ip-10-0-64-10 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:23 ip-10-0-0-11 mdr: 2016-02-01 11:21:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938803] [to:19025530322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023008644] [to:+17027478851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:19733564512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596348] [to:15737198808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475752275] [to:+16136044959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687351] [to:19258225120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-21 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:24 ip-10-0-64-10 mdr: 2016-02-01 11:21:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:24 ip-10-0-0-11 mdr: 2016-02-01 11:21:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176881128] [to:+13477146890] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246815626] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993136] [to:17144005989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202626867] [to:+12138228537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167416137] [to:+14156499442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-20 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145358231] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14434185694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-10 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014527635] [to:+12406857149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:25 ip-10-0-0-11 mdr: 2016-02-01 11:21:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:25 ip-10-0-64-11 mdr: 2016-02-01 11:21:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187306491] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262285050] [to:+12262411654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056457] [to:19026798027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732500] [to:12678448451] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053963863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053963863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-10 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19719998165] [to:15038689819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035761] [to:17245258125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:26 ip-10-0-0-10 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328644645] [to:+17323624227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072880] [to:15142387390] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:26 ip-10-0-64-11 mdr: 2016-02-01 11:21:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072880] [to:15142387390] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:13196519581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:19544791804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996766] [to:+13475188752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105516136] [to:+17754993417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-11 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504256] [to:19196087712] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-11 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396452397] [to:+16513337606] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:27 ip-10-0-64-10 mdr: 2016-02-01 11:21:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:27 ip-10-0-0-10 mdr: 2016-02-01 11:21:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503219596] [to:+17185676843] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102406577] [to:+13475184732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126128] [to:18563786262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16147694630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149569177] [to:+16149963761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149675882] [to:+16475038643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193718] [to:16067038403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:28 ip-10-0-0-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-11 mdr: 2016-02-01 11:21:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203385110] [to:+19149088543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:28 ip-10-0-64-10 mdr: 2016-02-01 11:21:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573376925] [to:+19175995086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029678] [to:17056412177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273171287] [to:+17206232173] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066185967] [to:+14706731129] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654211264] [to:+14146006279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704367519] [to:+15703977610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146611559] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-21 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:29 ip-10-0-0-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-11 mdr: 2016-02-01 11:21:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:29 ip-10-0-64-10 mdr: 2016-02-01 11:21:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316889640] [to:50376333354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-20 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799301] [to:19072445056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194534898] [to:+17199990152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033088413] [to:+13477965977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15406212855] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038951122] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394955] [to:18599074530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14015001574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187306] [to:12022398934] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402222086] [to:19403663300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156673] [to:14172421280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136962797] [to:+12138027440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-10 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:30 ip-10-0-64-11 mdr: 2016-02-01 11:21:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:30 ip-10-0-0-11 mdr: 2016-02-01 11:21:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186256895] [to:+16465479903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-21 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283630371] [to:+14808427313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142139710] [to:+14388086100] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804785] [to:19072320289] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343128083] [to:+14703334836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044954029] [to:+17049700679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-10 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:31 ip-10-0-0-11 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156963] [to:19192737548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-11 mdr: 2016-02-01 11:21:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:31 ip-10-0-64-10 mdr: 2016-02-01 11:21:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-11 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679076508] [to:+12679525440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-10 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186780963] [to:+13477963996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126310621] [to:17085395874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798168] [to:15702358870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:32 ip-10-0-64-11 mdr: 2016-02-01 11:21:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15034626016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:32 ip-10-0-0-11 mdr: 2016-02-01 11:21:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-21 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13049723995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19122200032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:15739750545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:33 ip-10-0-0-11 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14015001574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:33 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869924] [to:14783052205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147065521] [to:+15146007715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194534898] [to:+17199990152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039665] [to:18195520614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348747] [to:18435933168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17732943607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086321] [to:19047160707] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438398787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15747251985] [to:15745758786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12083406829] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550073] [to:19519020593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147638160] [to:13148176446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859310] [to:14136685969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019398] [to:19029996287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476007688] [to:+16096144013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044535102] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-11 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:34 ip-10-0-64-10 mdr: 2016-02-01 11:21:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:34 ip-10-0-0-10 mdr: 2016-02-01 11:21:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802887016] [to:+19712611433] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12243744605] [to:+12243103188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468592] [to:18025785371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043417988] [to:17708961188] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085961] [to:+17162791701] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049064739] [to:+12264551265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-10 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-64-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-11 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-20 mdr: 2016-02-01 11:21:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:35 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-20 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447779731912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16085161590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-11 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016482308] [to:+16513338414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165539633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15195206869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097710611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734383] [to:14144294070] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-10 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:36 ip-10-0-0-10 mdr: 2016-02-01 11:21:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:36 ip-10-0-64-11 mdr: 2016-02-01 11:21:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619382] [to:18434616932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142900757] [to:+17142943632] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732733544] [to:+12136036528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056880751] [to:+18638555698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085300] [to:13193295309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-11 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732886] [to:15169831193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228743] [to:16699002108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:37 ip-10-0-64-10 mdr: 2016-02-01 11:21:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210043] [to:15593034298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:37 ip-10-0-0-11 mdr: 2016-02-01 11:21:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-21 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243611] [to:12524129358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092115] [to:17043088948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-10 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899457] [to:17063296832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-11 mdr: 2016-02-01 11:21:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:38 ip-10-0-0-10 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14154661224] [to:19102341940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:38 ip-10-0-64-10 mdr: 2016-02-01 11:21:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042587419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146381599] [to:+14388075132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403140897] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603560969] [to:+19717778105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178912349] [to:+19177374023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263489531] [to:+12262717670] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821096] [to:+12138619222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-21 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683806] [to:17867128450] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148000] [to:213676702796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:39 ip-10-0-64-10 mdr: 2016-02-01 11:21:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:39 ip-10-0-0-11 mdr: 2016-02-01 11:21:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-20 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783007] [to:16479801499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-10 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-11 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073015409] [to:+16125021426] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-10 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:40 ip-10-0-64-10 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-10 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502769934] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739319] [to:14793259217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12255713291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:40 ip-10-0-0-11 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E10201] -Feb 1 11:21:40 ip-10-0-0-10 mdr: 2016-02-01 11:21:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10202] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-21 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447453323685] [to:+447451246216] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:41 ip-10-0-64-10 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-10 mdr: 2016-02-01 11:21:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-21 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324569] [to:+447511403306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:41 ip-10-0-0-11 mdr: 2016-02-01 11:21:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748096] [to:15732604392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-21 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324569] [to:+447511403306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248638] [to:17743867272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268029864] [to:+12267794892] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218889] [to:+14049001026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039461761] [to:+17207291403] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062522] [to:19022666137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995525] [to:12177723163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786064541] [to:+19783619441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175007950] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153671884] [to:15866252648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-10 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-0-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-10 mdr: 2016-02-01 11:21:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034794052] [to:+16034138654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:42 ip-10-0-64-11 mdr: 2016-02-01 11:21:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:15873551150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064370] [to:16467042934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696087912] [to:18176750930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252411696] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-0-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212431660] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13049049173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-10 mdr: 2016-02-01 11:21:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:43 ip-10-0-64-11 mdr: 2016-02-01 11:21:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389298239] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192793415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293156331] [to:+17547774583] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022102294] [to:+15169269426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996766] [to:+13475188752] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134892265] [to:+18572400640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127723] [to:+19199164481] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788079] [to:12294152427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:13196519581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-10 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219352] [to:17044533691] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:44 ip-10-0-0-10 mdr: 2016-02-01 11:21:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:44 ip-10-0-64-11 mdr: 2016-02-01 11:21:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:18035968232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293156331] [to:+17547774583] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487736464] [to:+15869806693] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176046896] [to:+13176889935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034133758] [to:16038518943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492539] [to:14783348895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218958217] [to:+18133087176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-0-10 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145358231] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-11 mdr: 2016-02-01 11:21:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19129968510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:45 ip-10-0-64-10 mdr: 2016-02-01 11:21:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17022739688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022748965] [to:+18583604462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037B0202] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657195487] [to:+15103226954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500039A0201] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063891] [to:19013199499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022748965] [to:+18583604462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037B0201] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043974998] [to:+17279986913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-21 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195539256] [to:+17193538914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097600352] [to:+16466288605] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097600352] [to:+16466288605] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-11 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:46 ip-10-0-64-10 mdr: 2016-02-01 11:21:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:46 ip-10-0-0-10 mdr: 2016-02-01 11:21:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:0608047A350201] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449054] [to:19012100851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058189015] [to:+12264558962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305570606] [to:+13305779632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156561911] [to:+18054105350] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:18438621368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:16094810931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263448875] [to:+19027031444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462455013] [to:+13052037362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127284729] [to:+14125354585] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:0608047A350202] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038643] [to:15149675882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077548] [to:12486335477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375369493] [to:+15102542596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-0-11 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-11 mdr: 2016-02-01 11:21:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477723336] [to:+13658001708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:47 ip-10-0-64-10 mdr: 2016-02-01 11:21:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624738518] [to:15626445232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868324] [to:16786634702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024723477] [to:+17027182720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-64-10 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-11 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:48 ip-10-0-0-10 mdr: 2016-02-01 11:21:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657195487] [to:+15103226954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039A0202] -Feb 1 11:21:48 ip-10-0-64-11 mdr: 2016-02-01 11:21:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087528] [to:15873356060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452823793] [to:+13479976140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17753030615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14182085399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033159981] [to:+19542719881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12084107603] [to:+12086204561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+14242218427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763817] [to:+12678444714] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625009805] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149798242] [to:19174457890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:49 ip-10-0-64-11 mdr: 2016-02-01 11:21:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:49 ip-10-0-0-10 mdr: 2016-02-01 11:21:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274886315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525626] [to:12672419786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046072539] [to:+19172660433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667691] [to:15748706231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:13023676045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16084459922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039867791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17272907582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-21 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447855143748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:50 ip-10-0-0-11 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:50 ip-10-0-64-10 mdr: 2016-02-01 11:21:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084793708] [to:+18453632622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-11 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064370] [to:16467042934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103337] [to:19094520515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514028987] [to:+19047587115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-10 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:51 ip-10-0-64-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402633024] [to:+15406286293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:51 ip-10-0-0-11 mdr: 2016-02-01 11:21:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15195623234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-10 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025422683] [to:+19175809420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:52 ip-10-0-0-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-10 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015910408] [to:+18572195492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:52 ip-10-0-64-11 mdr: 2016-02-01 11:21:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767799300] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:17038951122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172936955] [to:+19149220855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019126] [to:17094868599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-20 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372472] [to:14075087798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16138610727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085991] [to:+17162790890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003A10201] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17322582363] [to:17327205135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-11 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:53 ip-10-0-0-10 mdr: 2016-02-01 11:21:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:53 ip-10-0-64-10 mdr: 2016-02-01 11:21:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049353703] [to:+17027182784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156963] [to:19199229741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598645305] [to:+19199161385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109201365] [to:+18328043895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274886315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003A10202] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172164] [to:12045146642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-10 mdr: 2016-02-01 11:21:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:54 ip-10-0-64-11 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:54 ip-10-0-0-10 mdr: 2016-02-01 11:21:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072014041] [to:+12139213496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003790202] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522727] [to:+13477988998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079005245] [to:+15085562554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169538102] [to:+18192011194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358401240] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852192670] [to:+19133709536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064789961] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438269639] [to:+14706730686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017101298] [to:+13478992448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013137161] [to:+12137978027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13259394692] [to:+19165836808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+16193449402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184860409] [to:+15184174118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403096979] [to:+13478684571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18189614463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803703] [to:14344294044] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803703] [to:14344294044] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:55 ip-10-0-64-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-10 mdr: 2016-02-01 11:21:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:55 ip-10-0-0-11 mdr: 2016-02-01 11:21:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419752] [to:12693488083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325109289] [to:+17348210439] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-11 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154874175] [to:+15596639411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-10 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604090] [to:18038992946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:56 ip-10-0-0-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-11 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:56 ip-10-0-64-10 mdr: 2016-02-01 11:21:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018542] [to:19023152518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202625653] [to:+17278601635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504816260] [to:+19172319642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037C0201] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138536235] [to:+16139092453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148740359] [to:19145848248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:12065661319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17248826070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-11 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-64-11 mdr: 2016-02-01 11:21:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066425] [to:17867472292] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:57 ip-10-0-0-10 mdr: 2016-02-01 11:21:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384917427] [to:+14387942367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504816260] [to:+19172319642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037C0202] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202625653] [to:+17278601635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752762175] [to:+17027182733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612875861] [to:15615030106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019126] [to:17094868599] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:16138595949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014513447] [to:+19738789677] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065442157] [to:+12135878648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665400] [to:13362139658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957780] [to:13022722418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:58 ip-10-0-64-10 mdr: 2016-02-01 11:21:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-11 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:58 ip-10-0-0-10 mdr: 2016-02-01 11:21:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449054] [to:19012100851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103939853] [to:+14056213286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246340065] [to:+12243870886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740360] [to:+17729797174] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314153529] [to:+16314907254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274886315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364375] [to:+17727746943] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-10 mdr: 2016-02-01 11:21:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993075] [to:19543760646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:21:59 ip-10-0-64-10 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277682317] [to:+17274938481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:21:59 ip-10-0-0-11 mdr: 2016-02-01 11:21:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479525] [to:18625916359] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549546] [to:12525145689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019398] [to:19029996287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-10 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:00 ip-10-0-0-20 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:00 ip-10-0-64-11 mdr: 2016-02-01 11:22:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613618869] [to:+16617480357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068171577] [to:+12138025755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895082] [to:18147714545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502327788] [to:14508486070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13146148356] [to:+16367306206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468592] [to:18025785371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-10 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232484945] [to:+15167349650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314440342] [to:+14402528328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764128] [to:14356096656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501379] [to:17062979058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:01 ip-10-0-64-11 mdr: 2016-02-01 11:22:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:01 ip-10-0-0-11 mdr: 2016-02-01 11:22:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846202359] [to:+14136859416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292789560] [to:+16466289358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:02 ip-10-0-64-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-10 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:02 ip-10-0-0-11 mdr: 2016-02-01 11:22:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364113] [to:+18133201327] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286292] [to:12523606717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036277439] [to:+13214068833] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760506] [to:15802771552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032A0202] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072558] [to:19192109594] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654211264] [to:+14146006279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-21 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609415] [to:+447874749593] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-64-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015344] [to:15416066726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-11 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:03 ip-10-0-0-10 mdr: 2016-02-01 11:22:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506316340] [to:+18506314398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337606] [to:12396452397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17022015982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017257] [to:18105139615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13372518328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136673760] [to:+14242839629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138654] [to:16034794052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-20 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447854509557] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17802191905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-11 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:04 ip-10-0-0-10 mdr: 2016-02-01 11:22:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618266984] [to:16626083214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:04 ip-10-0-64-10 mdr: 2016-02-01 11:22:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626956426] [to:+17162792429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264558994] [to:12044470006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563108585] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739750545] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144002437] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032A0201] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813534294] [to:+19789697903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342947320] [to:+17073419188] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436857076] [to:+19108888252] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053252177] [to:+12262411710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038238019] [to:+14242797855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19517563691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15037419967] [to:+19034595160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-10 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046577337] [to:+19046946811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:05 ip-10-0-0-11 mdr: 2016-02-01 11:22:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317802443] [to:+16316141242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:05 ip-10-0-64-11 mdr: 2016-02-01 11:22:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175047309] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19802102351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338871] [to:19285306482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659140] [to:18563925460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592966] [to:16782154695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542596] [to:19375369493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-21 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447840058239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792452178] [to:+18724008386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699535432] [to:+12313318293] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702059736] [to:+13479218957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:06 ip-10-0-0-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855199890] [to:+19122005562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:06 ip-10-0-64-10 mdr: 2016-02-01 11:22:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624733791] [to:19092655401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667595] [to:+18506313647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436026] [to:12079305618] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+15873232960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-10 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:07 ip-10-0-64-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:07 ip-10-0-0-11 mdr: 2016-02-01 11:22:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282731] [to:+13479139204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867128450] [to:+13478683806] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-10 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830178] [to:13024019532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993809] [to:13049068698] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:12525718346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027172133] [to:+19027026779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-10 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:08 ip-10-0-0-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313794353] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:08 ip-10-0-64-11 mdr: 2016-02-01 11:22:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669615] [to:16017543027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-20 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572555884] [to:+447451249343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:12162428955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044715390] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988344] [to:19197572046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477402265] [to:+16136047591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086070358] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177723163] [to:+18729995525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800202] [to:15194025180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:09 ip-10-0-0-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-11 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034661684] [to:+18176687081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:09 ip-10-0-64-10 mdr: 2016-02-01 11:22:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800202] [to:15194025180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364117] [to:+17277568186] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246811342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12068613508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124647287] [to:+12406858933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19286518256] [to:+19287076873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734958935] [to:+17736668141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178912349] [to:+19177374023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:10 ip-10-0-64-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-11 mdr: 2016-02-01 11:22:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:10 ip-10-0-0-10 mdr: 2016-02-01 11:22:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643001198] [to:+18646496014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:13018047888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797592] [to:15403886652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199535441] [to:+14198430956] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044885510] [to:+14049001307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048559] [to:17654255384] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196350684] [to:+17187510374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416762971] [to:+19417256451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:11 ip-10-0-0-11 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036748012] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-10 mdr: 2016-02-01 11:22:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156786821] [to:+14157879033] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869059] [to:15705990263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:11 ip-10-0-64-11 mdr: 2016-02-01 11:22:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369886999] [to:+13134688647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-21 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055307626] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055307626] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449954] [to:19016145613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447900] [to:19713311010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18108451230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-10 mdr: 2016-02-01 11:22:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:12 ip-10-0-0-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:12 ip-10-0-64-11 mdr: 2016-02-01 11:22:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568901] [to:15854783367] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:12626238695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941403] [to:14045877486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053065302] [to:+14144007677] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757403796] [to:+12138028221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-20 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18132600367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543928010] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783052205] [to:+13477869924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075811] [to:15732768314] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055594327] [to:+17059103231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540021] [to:15104723895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-11 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:13 ip-10-0-64-10 mdr: 2016-02-01 11:22:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:13 ip-10-0-0-21 mdr: 2016-02-01 11:22:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125195252] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076807372] [to:+13867422045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165836808] [to:13259394692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625162060] [to:+19543142972] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012412235] [to:+17077507795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069552] [to:13094539267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:14 ip-10-0-64-10 mdr: 2016-02-01 11:22:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:14 ip-10-0-0-20 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028770426] [to:+19027021931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845476246] [to:+15703974378] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538914] [to:17203987918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18053149355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235065145] [to:+18638552881] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:15 ip-10-0-0-11 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17579989646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:15 ip-10-0-64-10 mdr: 2016-02-01 11:22:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696439931] [to:+14242839588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:12172138657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976945] [to:13476338799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-11 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543760646] [to:+19542993075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122379374] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784051086] [to:18032256822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:16 ip-10-0-64-10 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866491] [to:13153739678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:16 ip-10-0-0-11 mdr: 2016-02-01 11:22:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12545952555] [to:+19402222054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763817] [to:+12678444714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048133329] [to:16133556265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132906242] [to:+16139093312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478396282] [to:+16477996713] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284475914] [to:+19173834994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-11 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:15017256891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-10 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-11 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-20 mdr: 2016-02-01 11:22:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:17 ip-10-0-0-10 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:17 ip-10-0-64-10 mdr: 2016-02-01 11:22:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453910] [to:12024608006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225426] [to:12252104201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065509262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931090] [to:14388876880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991980] [to:14068657692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526502230] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373128] [to:18565066253] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373128] [to:18565066253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373128] [to:18565066253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172164] [to:12048810774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:13364489485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-11 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:18 ip-10-0-0-11 mdr: 2016-02-01 11:22:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:17706543179] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:18 ip-10-0-64-10 mdr: 2016-02-01 11:22:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-21 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-21 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-10 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-10 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-10 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-20 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-10 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-10 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:19 ip-10-0-0-11 mdr: 2016-02-01 11:22:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654257176] [to:+12132958996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:19 ip-10-0-64-11 mdr: 2016-02-01 11:22:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794892] [to:12268029864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158475538] [to:+16519275894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836557] [to:19126147462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269426] [to:12022102294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178214042] [to:+18729995785] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054379583] [to:+18053017802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-11 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146227912] [to:+14146006528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146227912] [to:+14146006528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015311] [to:12024235349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-0-20 mdr: 2016-02-01 11:22:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-10 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:20 ip-10-0-64-11 mdr: 2016-02-01 11:22:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16192286727] [to:+17027183470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-10 mdr: 2016-02-01 11:22:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888252] [to:18436857076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802000412] [to:+16418437982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136894133] [to:+15865748823] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:21 ip-10-0-0-10 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:21 ip-10-0-64-11 mdr: 2016-02-01 11:22:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-21 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097094479] [to:+18638556684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064853] [to:13046043344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:19168254341] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748892] [to:15863816008] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477779955] [to:+14242846560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-10 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653846403] [to:+16164200064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-11 mdr: 2016-02-01 11:22:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067511298] [to:+14703334844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400384] [to:13053086923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:22 ip-10-0-0-10 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:22 ip-10-0-64-11 mdr: 2016-02-01 11:22:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838799] [to:19125486693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024018512] [to:+15874097462] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628221663] [to:+12136309511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328886] [to:19192647009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672682] [to:12035439684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-20 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138242018] [to:+14695323273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158881442] [to:+17816548829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:23 ip-10-0-0-11 mdr: 2016-02-01 11:22:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:23 ip-10-0-64-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+14242218427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-10 mdr: 2016-02-01 11:22:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-10 mdr: 2016-02-01 11:22:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-21 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031618] [to:19027177133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404342063] [to:+12405587902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439765] [to:12198053477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:24 ip-10-0-0-11 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:24 ip-10-0-64-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592425714] [to:+13479806692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474204] [to:15104802646] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734583334] [to:+17736669804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144005989] [to:+13478993136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872415] [to:17016303063] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703749498] [to:+13145488536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-11 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-64-10 mdr: 2016-02-01 11:22:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:18152012397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-11 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-10 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:25 ip-10-0-0-21 mdr: 2016-02-01 11:22:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025018] [to:18609860673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678771721] [to:13066644310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696901] [to:15706372560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742895333] [to:+17749921547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068590] [to:16017304422] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301253] [to:18503587644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14788327463] [to:+19292201155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297737] [to:15047088260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-10 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802422990] [to:+12138739552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691642] [to:12604130653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:26 ip-10-0-64-11 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691642] [to:12604130653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:26 ip-10-0-0-10 mdr: 2016-02-01 11:22:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027454] [to:19142634244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18083332313] [to:+17727740615] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14424446851] [to:19852108127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-21 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447719782529] [to:+447451218022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670202] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802997] [to:12392873669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-21 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447719782529] [to:+447451218022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670201] -Feb 1 11:22:27 ip-10-0-0-21 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-10 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:27 ip-10-0-0-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:27 ip-10-0-64-11 mdr: 2016-02-01 11:22:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-20 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16785086029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-11 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-10 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-10 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201239] [to:+13202817882] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323770526] [to:17326484986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:28 ip-10-0-0-11 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-10 mdr: 2016-02-01 11:22:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:28 ip-10-0-64-10 mdr: 2016-02-01 11:22:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084139] [to:17275437259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029199149] [to:+14025002617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062979058] [to:+17063501379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-21 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024820195] [to:+17027476167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654629936] [to:+17605897883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-21 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198765] [to:19207135057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472836] [to:16145313365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059851976] [to:+15754483792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-10 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-11 mdr: 2016-02-01 11:22:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388702211] [to:+14503286219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:29 ip-10-0-0-11 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638894] [to:12037258644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:29 ip-10-0-64-10 mdr: 2016-02-01 11:22:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830178] [to:13024019532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14389298239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551043] [to:18622184111] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011434] [to:18193833661] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-10 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:30 ip-10-0-0-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-11 mdr: 2016-02-01 11:22:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:30 ip-10-0-64-10 mdr: 2016-02-01 11:22:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016527] [to:12393843283] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-10 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129232173] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447864540950] [to:+447418320259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:15134199788] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872415] [to:17016303063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375915] [to:18472223365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869924] [to:14783052205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543802897] [to:+19543543462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007568] [to:16479805845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-11 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-20 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447855143746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-21 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196090156] [to:+18193073637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-11 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:31 ip-10-0-64-10 mdr: 2016-02-01 11:22:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994521] [to:14039289151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:31 ip-10-0-0-11 mdr: 2016-02-01 11:22:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19046094019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198561126] [to:+18194141474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172628754] [to:+12138068069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922986] [to:15148046171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452269] [to:12079749402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134849612] [to:+18133205615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-21 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017124] [to:18055014319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022630] [to:+18572408043] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-21 mdr: 2016-02-01 11:22:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:32 ip-10-0-64-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-10 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184174118] [to:15184860409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:32 ip-10-0-0-11 mdr: 2016-02-01 11:22:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430956] [to:14199535441] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614463] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749430] [to:12815090792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134716] [to:+16475569448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347282887] [to:+17348211077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19197176373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12069006587] [to:+12062588048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062748] [to:16628299752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569769] [to:16367512385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188458396] [to:+19715125934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450604] [to:13364512434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:33 ip-10-0-0-10 mdr: 2016-02-01 11:22:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:33 ip-10-0-64-11 mdr: 2016-02-01 11:22:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364541] [to:+13214067686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185308821] [to:+13478083047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048856780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13212431660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848858597] [to:+16106999413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059219935] [to:+18053017198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797514] [to:16149725020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436857076] [to:+19108888252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-10 mdr: 2016-02-01 11:22:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784088548] [to:+16784348580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:34 ip-10-0-64-10 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:34 ip-10-0-0-11 mdr: 2016-02-01 11:22:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-20 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-20 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907745] [to:12253337739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13134235752] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148142982] [to:+16136042254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-64-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041934] [to:+15082711014] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-11 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479946383] [to:+16136047870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:35 ip-10-0-0-10 mdr: 2016-02-01 11:22:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198168050] [to:+18194140924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-21 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848858597] [to:+16106999413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-20 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323585] [to:+447828999265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285364434] [to:+17073008920] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19705762290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15188922907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-10 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152681408] [to:+12135596072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:36 ip-10-0-64-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:36 ip-10-0-0-10 mdr: 2016-02-01 11:22:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654255384] [to:+18583048559] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187728895] [to:+15187340192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015311] [to:12025691096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309744465] [to:+18724005901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:17405050577] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478862063] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14157878439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866185] [to:13475136335] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522553410] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-10 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:37 ip-10-0-0-21 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:37 ip-10-0-64-11 mdr: 2016-02-01 11:22:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262534298] [to:+12132950236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141242] [to:16317802443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184174118] [to:15184860409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175047309] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-20 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015311] [to:12025691096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13124979357] [to:+13203073491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347282887] [to:+17348211077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244199806] [to:+18477568622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267819700] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-64-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-11 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655927604] [to:+16466691706] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:19024123413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201511] [to:14438069228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:38 ip-10-0-0-10 mdr: 2016-02-01 11:22:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655927604] [to:+16466691706] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-20 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240706] [to:+447444269905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272660137] [to:+18459997524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702735] [to:17403615190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050545] [to:17785864277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412951] [to:19545152062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:39 ip-10-0-64-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-21 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-11 mdr: 2016-02-01 11:22:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:39 ip-10-0-0-10 mdr: 2016-02-01 11:22:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897098] [to:17174142753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-11 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-11 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+19177739392] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602245254] [to:+12604077490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-11 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782993370] [to:+12132951382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-11 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-11 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015526598] [to:+19018427181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:40 ip-10-0-0-10 mdr: 2016-02-01 11:22:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163527308] [to:+12167776639] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-10 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:40 ip-10-0-64-11 mdr: 2016-02-01 11:22:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056476] [to:14695202748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403925647] [to:+17034199337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-20 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17724940975] [to:14074522743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863076177] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028076470] [to:+17026747598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:41 ip-10-0-0-10 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-10 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007547] [to:14149402193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:41 ip-10-0-64-11 mdr: 2016-02-01 11:22:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152054635] [to:+15152032151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095333873] [to:+12672732834] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417963] [to:15192910110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-20 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-0-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+19177739392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706775669] [to:+13214067519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-10 mdr: 2016-02-01 11:22:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149958668] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047545] [to:18196793100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:42 ip-10-0-64-11 mdr: 2016-02-01 11:22:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062748] [to:16628299752] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:43 ip-10-0-0-11 mdr: 2016-02-01 11:22:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:18124806963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507197] [to:18033892780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-11 mdr: 2016-02-01 11:22:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387130] [to:16612017520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:43 ip-10-0-64-10 mdr: 2016-02-01 11:22:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434535408] [to:+12132955003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672959093] [to:+14199649092] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023188808] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503002664] [to:14154245629] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211077] [to:14347282887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869059] [to:15705990263] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737521648] [to:+13126142291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17639134213] [to:+16124448067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708824527] [to:+19174094422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:44 ip-10-0-0-11 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023128882] [to:+14158907294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:44 ip-10-0-64-10 mdr: 2016-02-01 11:22:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960578] [to:18133894419] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324517] [to:14437867100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603663163] [to:+12604071502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288737] [to:18312889457] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126147462] [to:+14242836557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182181220] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-0-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913530] [to:18195780622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-11 mdr: 2016-02-01 11:22:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:45 ip-10-0-64-10 mdr: 2016-02-01 11:22:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022710] [to:17095973667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142972] [to:16625162060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817015093] [to:15813194370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015760] [to:14042633606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500030F0201] -Feb 1 11:22:46 ip-10-0-64-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167529070] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175007950] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-21 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022922833] [to:+19027056335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183064055] [to:+16233839292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0202] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:46 ip-10-0-64-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524129358] [to:+18133243611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-11 mdr: 2016-02-01 11:22:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:46 ip-10-0-0-10 mdr: 2016-02-01 11:22:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234578647] [to:+13475807008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703997080] [to:+16784348711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272660137] [to:+18459997524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404771143] [to:+14403594028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038951122] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138477925] [to:+18133081918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366076] [to:16053703824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141474] [to:18198561126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835787] [to:18083640942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-10 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434786476] [to:+16466691385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993075] [to:19543760646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-0-11 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168823138] [to:+15304882693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-10 mdr: 2016-02-01 11:22:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:16785485957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:47 ip-10-0-64-11 mdr: 2016-02-01 11:22:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162923304] [to:+19174094376] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-21 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:18189614463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-20 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-20 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488785] [to:13144790948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-10 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:48 ip-10-0-64-10 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:48 ip-10-0-0-11 mdr: 2016-02-01 11:22:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022102294] [to:+15169269426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709163632] [to:+14842842490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053086923] [to:+13053400384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:16478862063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775078] [to:17152166411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-20 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:49 ip-10-0-64-10 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706050548] [to:+19725977208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-21 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-11 mdr: 2016-02-01 11:22:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403199466] [to:+14437203744] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:49 ip-10-0-0-10 mdr: 2016-02-01 11:22:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474872] [to:15205604693] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584191] [to:13523184152] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154087] [to:+16466289654] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763817] [to:+12678444714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526555] [to:18102883503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-10 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-11 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:50 ip-10-0-64-11 mdr: 2016-02-01 11:22:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835066] [to:18433374014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:50 ip-10-0-0-10 mdr: 2016-02-01 11:22:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:14797996551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:18566938930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312591972] [to:+19018426151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305244790] [to:+14582025806] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:51 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-10 mdr: 2016-02-01 11:22:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:51 ip-10-0-64-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842490] [to:15709163632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:15136587192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218957] [to:15702059736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794385] [to:17738779058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-20 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988321] [to:19142572130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046767696] [to:+17274938802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-11 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852108127] [to:+14424446851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:52 ip-10-0-0-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-11 mdr: 2016-02-01 11:22:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357813] [to:12028477811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:52 ip-10-0-64-10 mdr: 2016-02-01 11:22:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604282455] [to:+18609710162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068590] [to:12252666007] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346647453] [to:+13476764348] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-10 mdr: 2016-02-01 11:22:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12194337971] [to:+12135760721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846915] [to:18439927185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323646] [to:14034718833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:53 ip-10-0-0-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927016] [to:19134816830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:53 ip-10-0-64-11 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158262] [to:18036532916] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-20 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039773989] [to:+15873232631] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083604] [to:18433682994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049366691] [to:+12133550836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-10 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135315898] [to:+19789697891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-21 mdr: 2016-02-01 11:22:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-64-10 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:54 ip-10-0-0-11 mdr: 2016-02-01 11:22:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037817] [to:14172088939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:14128186366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732712] [to:13017527310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158828259] [to:+12404077446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607756338] [to:+12536423739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038238019] [to:+14242797855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072445056] [to:+13473799301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412862745] [to:+19172659293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434535408] [to:+12132955003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655412167] [to:+12604070963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026327408] [to:+13024002648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043088948] [to:+19802092115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192382467] [to:+16139099093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904741] [to:+19122008026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147794972] [to:+14388078689] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017423] [to:17574695529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063664463] [to:+14706733387] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232386064] [to:+16025527219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016908889] [to:+12815957398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572462802] [to:+17185041049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235718591] [to:+16784338996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:55 ip-10-0-0-10 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044012691] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:55 ip-10-0-64-11 mdr: 2016-02-01 11:22:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338458] [to:12257180290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-21 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144401703] [to:+16149965651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-10 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-11 mdr: 2016-02-01 11:22:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-20 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:56 ip-10-0-0-10 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179656773] [to:+18127816139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:56 ip-10-0-64-11 mdr: 2016-02-01 11:22:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212431660] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158475538] [to:+16519275894] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086789] [to:16088510175] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12104887858] [to:+17133896440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508486070] [to:+14502327788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-10 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-10 mdr: 2016-02-01 11:22:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:57 ip-10-0-64-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:57 ip-10-0-0-11 mdr: 2016-02-01 11:22:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097437519] [to:+15817009537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893903397] [to:+19894550913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-21 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447999815339] [to:+447451249745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-21 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-21 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041878] [to:12529330858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735562457] [to:+14695527921] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654656898] [to:+17016454239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852206211] [to:+12139359789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:58 ip-10-0-64-11 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:58 ip-10-0-0-10 mdr: 2016-02-01 11:22:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672968619] [to:+17277568399] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147794972] [to:+14388078689] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066501452] [to:+14064043494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043719] [to:19072037485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444714] [to:12677763817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016303063] [to:+17015872415] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203490804] [to:+14155620927] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225599] [to:12396001315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-20 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478376] [to:12522033109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-10 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:22:59 ip-10-0-64-11 mdr: 2016-02-01 11:22:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362014822] [to:+19365878311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:22:59 ip-10-0-0-11 mdr: 2016-02-01 11:22:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184174118] [to:15184860409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12044065368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-21 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509007443] [to:12502080477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-11 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626959651] [to:+12602777235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854920077] [to:+12134547190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660335] [to:15742974623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370999] [to:18673357831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-11 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903062] [to:18598018161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:00 ip-10-0-64-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:00 ip-10-0-0-10 mdr: 2016-02-01 11:23:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697515743] [to:16197842612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504451217] [to:+14086183927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219352] [to:17042888813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032496966] [to:+17036466155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201155] [to:14788327463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122215172] [to:+14242866714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501379] [to:17062979058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627231] [to:12254289392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:12286716461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:17142665583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-64-10 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186171902] [to:+14693019420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-10 mdr: 2016-02-01 11:23:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:01 ip-10-0-0-11 mdr: 2016-02-01 11:23:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-10 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179192220] [to:+13478082069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-10 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308036240] [to:+16304892242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417963] [to:12266220285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309511] [to:16628221663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-10 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868286] [to:19712258236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:02 ip-10-0-0-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18032889009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-0-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:02 ip-10-0-0-11 mdr: 2016-02-01 11:23:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:02 ip-10-0-64-11 mdr: 2016-02-01 11:23:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389298239] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-11 mdr: 2016-02-01 11:23:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-11 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-21 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:03 ip-10-0-0-21 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-10 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:03 ip-10-0-64-11 mdr: 2016-02-01 11:23:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-11 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-10 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-11 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085156338] [to:+14243361611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003210201] -Feb 1 11:23:04 ip-10-0-0-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-10 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523826] [to:15124967749] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:04 ip-10-0-0-10 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-11 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163527308] [to:+12167776639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:04 ip-10-0-64-10 mdr: 2016-02-01 11:23:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605065890] [to:+13069938256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12138416469] [to:+17074032457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024723477] [to:+17027182720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079491613] [to:+14072163514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104802646] [to:+15104474204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625827940] [to:+19292201346] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-21 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16694009950] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693638008] [to:+19783644848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022710] [to:17092771470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282003733] [to:+17063810650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:17142665583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149379] [to:18069309311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085156338] [to:+14243361611] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003210202] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704689615] [to:+18285486347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819983047] [to:+15817022248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942367] [to:14384917427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:05 ip-10-0-0-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695695718] [to:+12692207289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-10 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:05 ip-10-0-64-11 mdr: 2016-02-01 11:23:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012888] [to:18626681884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178833599] [to:+18722258246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183064055] [to:+16233839292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783052205] [to:+13477869924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053086923] [to:+13053400384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-10 mdr: 2016-02-01 11:23:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:06 ip-10-0-64-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:06 ip-10-0-0-11 mdr: 2016-02-01 11:23:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133614539] [to:+18133204046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320121] [to:12079999485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139523939] [to:+18133083091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372556990] [to:+15047027440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-10 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753384634] [to:+17754993544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-64-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045661168] [to:+16784333171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439911174] [to:+15104474520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:07 ip-10-0-0-11 mdr: 2016-02-01 11:23:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314003432] [to:+13479191031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632343] [to:18572440018] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023873163] [to:+13025958714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695202748] [to:+14692056476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192793415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-10 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-21 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707091754] [to:+12137978118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059064882] [to:+12898042204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-10 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:08 ip-10-0-0-11 mdr: 2016-02-01 11:23:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12134067099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:08 ip-10-0-64-11 mdr: 2016-02-01 11:23:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479805845] [to:+15146007568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-20 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627143] [to:+447747104276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-21 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-21 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218022] [to:+447719782529] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373010829] [to:+17747730806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293716] [to:18503043209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086866] [to:18132848791] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:17038951122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069790] [to:13093978450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:09 ip-10-0-0-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-10 mdr: 2016-02-01 11:23:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:09 ip-10-0-64-11 mdr: 2016-02-01 11:23:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:13132122692] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-20 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:17189245542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243611] [to:12524129358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-10 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138500338] [to:+16137024772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:10 ip-10-0-64-11 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088425073] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:10 ip-10-0-0-21 mdr: 2016-02-01 11:23:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520626713] [to:+447925922759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138500338] [to:+16137024772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:16302046146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479383099] [to:+17547774099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-20 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138500338] [to:+16137024772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193152] [to:18149529924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079749402] [to:+13366452269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-10 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16129305567] [to:16122557571] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:11 ip-10-0-64-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695695718] [to:+12692207289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:11 ip-10-0-0-11 mdr: 2016-02-01 11:23:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872415] [to:17016303063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134102205] [to:+18134302964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146637076] [to:+15146136639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307748528] [to:+15128987218] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056266855] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:14417031095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19417866376] [to:+12312663055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-10 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767799300] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824601] [to:15852106795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:12 ip-10-0-64-11 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-20 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-20 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:12 ip-10-0-0-10 mdr: 2016-02-01 11:23:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043130914] [to:+14843504877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-10 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903477] [to:14383456681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-10 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985921] [to:15165473909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-10 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-10 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-10 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232631] [to:14039773989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364512434] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:13 ip-10-0-0-11 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:13 ip-10-0-64-11 mdr: 2016-02-01 11:23:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903477] [to:14383456681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-21 mdr: 2016-02-01 11:23:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451242024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025806] [to:13305244790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437712804] [to:+14433801834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:17138352743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-11 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335477] [to:18032204055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:14 ip-10-0-0-10 mdr: 2016-02-01 11:23:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:14 ip-10-0-64-11 mdr: 2016-02-01 11:23:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335477] [to:18032204055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158066150] [to:+17167480951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293640830] [to:+15084168581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482859256] [to:+19142286017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-20 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163443158] [to:+14242769833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657261] [to:12543928010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548549426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063664463] [to:+14706733387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307748528] [to:+15128987218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:13023676045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504055550] [to:+13053400809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449402] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162103660] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:15 ip-10-0-64-10 mdr: 2016-02-01 11:23:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:15 ip-10-0-0-11 mdr: 2016-02-01 11:23:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228075] [to:16614743136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19545982654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915182] [to:16474442635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-10 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:16 ip-10-0-0-11 mdr: 2016-02-01 11:23:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:16 ip-10-0-64-11 mdr: 2016-02-01 11:23:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003220202] -Feb 1 11:23:17 ip-10-0-64-10 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309218670] [to:+15308631781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003220201] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816321] [to:16187078351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:17 ip-10-0-64-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345911] [to:14235610608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-11 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205152] [to:+15308631730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:17 ip-10-0-0-10 mdr: 2016-02-01 11:23:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125582632] [to:+17249938983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250317] [to:19123398715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-11 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523615837] [to:+14072161130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:18 ip-10-0-64-10 mdr: 2016-02-01 11:23:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:18 ip-10-0-0-10 mdr: 2016-02-01 11:23:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029719586] [to:+17026747214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198561126] [to:+18194141474] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:17044497875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16233416095] [to:+14243360886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473361] [to:18656615351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:12143037349] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877730994] [to:+16477999351] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796866] [to:17406446840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845756178] [to:+14158537082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014095387] [to:+19015042375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:19 ip-10-0-0-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:18083729310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-11 mdr: 2016-02-01 11:23:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697623] [to:14193419387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:19 ip-10-0-64-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173310077] [to:+18572190969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096329933] [to:+16475568820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012976181] [to:+17206231704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938803] [to:19025530322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-11 mdr: 2016-02-01 11:23:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-11 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205797] [to:13197994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:20 ip-10-0-0-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304361] [to:17542643208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:20 ip-10-0-64-10 mdr: 2016-02-01 11:23:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502438489] [to:+15102548412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747359] [to:13044155343] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357813] [to:12028477811] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195750760] [to:+14197316238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254487516] [to:+12135874835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-20 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-20 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296253] [to:12255884923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-11 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:21 ip-10-0-64-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033613538] [to:+14696725939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:21 ip-10-0-0-10 mdr: 2016-02-01 11:23:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415905648] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176750930] [to:+14696087912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025331] [to:12402165875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668384] [to:17144995353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882977] [to:14155326930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:18003043107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435405800] [to:+18134301670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-21 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297192] [to:18182218192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634572] [to:18178218868] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:22 ip-10-0-64-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438133708] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-11 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144790948] [to:+13145488785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:22 ip-10-0-0-10 mdr: 2016-02-01 11:23:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342968032] [to:+14158253526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315758469] [to:+19312577724] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-10 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367512385] [to:+15085569769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474204] [to:15104802646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-21 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-10 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358877] [to:18282003014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:23 ip-10-0-64-11 mdr: 2016-02-01 11:23:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122298713] [to:+14582015428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:23 ip-10-0-0-11 mdr: 2016-02-01 11:23:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183849215] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502649236] [to:+18503293319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437095785] [to:+16785868280] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12068613508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-10 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-10 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:24 ip-10-0-64-11 mdr: 2016-02-01 11:23:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960849] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:24 ip-10-0-0-11 mdr: 2016-02-01 11:23:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787033943] [to:+13123009845] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142777] [to:50246901215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624736943] [to:14257500379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142777] [to:50246901215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:19282251397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:14045873298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040521] [to:15067214345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085992911] [to:+12087574730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075598] [to:19374758801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644046665] [to:+18649995457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250317] [to:19123398715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977340] [to:15707626902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12813066518] [to:12402106471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963055] [to:18594891731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203967514] [to:+17204775882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125486693] [to:+14242838799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168700] [to:17742733010] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168700] [to:17742733010] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168700] [to:17742733010] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-10 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16842585482] [to:+13219993852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-21 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447084323] [to:+447418330634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:25 ip-10-0-64-11 mdr: 2016-02-01 11:23:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18315889664] [to:+19725346665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-10 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607909543] [to:13237125472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:25 ip-10-0-0-11 mdr: 2016-02-01 11:23:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302964] [to:18134102205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024062763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-10 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13095307036] [to:+17278607605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15133490825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-11 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406340517] [to:+18046243520] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-11 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132122692] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-20 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332648] [to:+447748531336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-10 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:26 ip-10-0-0-10 mdr: 2016-02-01 11:23:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:26 ip-10-0-64-11 mdr: 2016-02-01 11:23:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:18597602036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179704275] [to:+16172132273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-20 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16287776660] [to:+14153407617] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798806] [to:19047785159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-20 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174905120] [to:+13479069281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-21 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Lowell] [to:+447418335712] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062979058] [to:+17063501379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153004327] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-11 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734251] [to:17703162755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:27 ip-10-0-0-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:27 ip-10-0-64-10 mdr: 2016-02-01 11:23:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285364434] [to:+17073008920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173530671] [to:+13476675850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146611559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897798019] [to:16476863917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:13023676045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-0-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-11 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-10 mdr: 2016-02-01 11:23:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:28 ip-10-0-64-11 mdr: 2016-02-01 11:23:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041844] [to:12048807903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466155] [to:17032496966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12179182298] [to:+17077556347] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047156940] [to:+16042652276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-21 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477779955] [to:+14242846560] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076232] [to:14782519599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:16614925244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158536084] [to:+12627774900] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927016] [to:17572359854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-10 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:29 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:15053998375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:29 ip-10-0-0-10 mdr: 2016-02-01 11:23:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185962173] [to:+13867423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+14388042745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-20 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447720145514] [to:+447418324969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532301058] [to:+17813129425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063664463] [to:+14706733387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17404579907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-0-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-10 mdr: 2016-02-01 11:23:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:30 ip-10-0-64-11 mdr: 2016-02-01 11:23:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483792] [to:15059851976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147962954] [to:+14388077253] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788305860] [to:+16784345881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147109099] [to:+14388040878] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702059736] [to:+13479218957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474442635] [to:+16474915182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797996551] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550884] [to:14434163265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:31 ip-10-0-64-11 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17756363269] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-10 mdr: 2016-02-01 11:23:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:31 ip-10-0-0-11 mdr: 2016-02-01 11:23:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:13473619183] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062838922] [to:+12132956167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-10 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14424446851] [to:19852108127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014816373] [to:+12405732003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-10 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:32 ip-10-0-64-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404072380] [to:+17408797442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:32 ip-10-0-0-11 mdr: 2016-02-01 11:23:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045001979] [to:+15103137169] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527916] [to:15175541328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047260227] [to:+13017786559] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777235] [to:16626959651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19193499658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425404] [to:12704042589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12526716084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-20 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447720853614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16477629595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-20 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210646] [to:+447720853614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312889457] [to:+18314288737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437712804] [to:+14433801834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-0-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275437259] [to:+18133084139] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-10 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359307] [to:15057163539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:33 ip-10-0-64-11 mdr: 2016-02-01 11:23:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358877] [to:18282003014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13208184030] [to:+15308631885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069552] [to:13093716438] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530366] [to:14108006608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193074795] [to:+14197459616] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167063045] [to:+16162755371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753041835] [to:+17027475713] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-11 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17753041835] [to:+17027475713] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:34 ip-10-0-64-10 mdr: 2016-02-01 11:23:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:34 ip-10-0-0-10 mdr: 2016-02-01 11:23:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915182] [to:16474442635] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336167] [to:16789139369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203345] [to:18134546713] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065509262] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849869182] [to:16104053563] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639414] [to:13053437429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189614463] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910002] [to:14168549807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014803342] [to:+19785663233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322745] [to:17808032171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358877] [to:18282003014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-64-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403055049] [to:+12408924609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167853296] [to:+19142796014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-11 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-21 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447828999265] [to:+447418323585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:35 ip-10-0-0-10 mdr: 2016-02-01 11:23:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055307626] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213158] [to:12516439103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818665] [to:17705302750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503002664] [to:18317896508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343796594] [to:+19177374077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653666666] [to:+19725254541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383893] [to:18043475802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:36 ip-10-0-64-10 mdr: 2016-02-01 11:23:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:36 ip-10-0-0-11 mdr: 2016-02-01 11:23:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313634] [to:18505426382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577233] [to:19312614143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042288952] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615864353] [to:+16615334066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497725] [to:15639208038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:06080400570301] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479060494] [to:+18724003482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479060494] [to:+18724003482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:37 ip-10-0-0-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-10 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:37 ip-10-0-64-11 mdr: 2016-02-01 11:23:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373225803] [to:+13373479327] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080400570302] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466155] [to:17032496966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404700544] [to:+13479568411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-10 mdr: 2016-02-01 11:23:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014519] [to:12522660884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601540] [to:14035895280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005901] [to:13309744465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:38 ip-10-0-64-10 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-11 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17049126179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:38 ip-10-0-0-21 mdr: 2016-02-01 11:23:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:39 ip-10-0-0-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215933] [to:17604988489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667907] [to:12193314012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667907] [to:12193314012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-0-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-0-10 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080400570303] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-11 mdr: 2016-02-01 11:23:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:39 ip-10-0-64-10 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708550913] [to:+12139212236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080477B80301] -Feb 1 11:23:39 ip-10-0-0-11 mdr: 2016-02-01 11:23:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-11 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238874728] [to:+14242846032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652592108] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009335] [to:19028402398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-20 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-10 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708550913] [to:+12139212236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080477B80302] -Feb 1 11:23:40 ip-10-0-64-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16477629595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487869] [to:13372551806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326843] [to:18174495406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:40 ip-10-0-64-11 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:16159813496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835032] [to:12405478485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708550913] [to:+12139212236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080477B80303] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387130] [to:16612017520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146991347] [to:+14132736989] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094087] [to:19106356864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:15196949787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218495] [to:18626007506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455935] [to:19169559010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963836] [to:16472283356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18143892205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093690348] [to:+17726177899] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:41 ip-10-0-64-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+15874003560] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069281] [to:13174905120] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-11 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-10 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:41 ip-10-0-0-20 mdr: 2016-02-01 11:23:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451242024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122225615] [to:+17736667487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:13058962194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480570] [to:13175085372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077333792] [to:+13219990185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142943632] [to:17142900757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065304362] [to:+15068036043] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-11 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073693] [to:13202235439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:42 ip-10-0-64-10 mdr: 2016-02-01 11:23:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:42 ip-10-0-0-10 mdr: 2016-02-01 11:23:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165473909] [to:+12018985921] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:15616021084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:14782991220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063095870] [to:+15168285533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-21 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333002] [to:+447933101077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335113] [to:16194368549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361907] [to:13046503944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273889396] [to:+13203073271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-11 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361907] [to:13046503944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143469031] [to:+13475187690] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:43 ip-10-0-0-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021182] [to:14233335725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-11 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:43 ip-10-0-64-10 mdr: 2016-02-01 11:23:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163238226] [to:+13477973007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103407227] [to:18705147031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807631] [to:17048845646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968672] [to:19313970174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15187051275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12243109094] [to:+19027031618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14194965595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14806664432] [to:16603650929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18475218629] [to:+17203586378] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877730994] [to:+16477999351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-10 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063700775] [to:+15204337461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-64-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134102205] [to:+18134302964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-11 mdr: 2016-02-01 11:23:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:44 ip-10-0-0-10 mdr: 2016-02-01 11:23:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877730994] [to:+16477999351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039867791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742646475] [to:+17027184416] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041844] [to:12048807903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042247774] [to:+16475569466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437095785] [to:+16785868280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18143892205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021781] [to:19022215874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916193] [to:16476970077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18608567986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-11 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-11 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238395128] [to:+18572645643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473623926] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:45 ip-10-0-64-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:45 ip-10-0-0-10 mdr: 2016-02-01 11:23:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16477629595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334560] [to:18184297257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448992] [to:18702537405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448992] [to:18702537405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807996368] [to:+16025528762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640906] [to:13142778295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16088510175] [to:+18133086789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787564] [to:18049826038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377526] [to:12513593890] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:46 ip-10-0-64-10 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16034796330] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:46 ip-10-0-0-11 mdr: 2016-02-01 11:23:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062991298] [to:+19802095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178277094] [to:+12017012782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183474] [to:17025187438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602467558] [to:+12604070838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008920] [to:18285364434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251099] [to:14434001180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047785159] [to:+19142798806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-64-10 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-20 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066098864] [to:+15068041540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-10 mdr: 2016-02-01 11:23:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:47 ip-10-0-0-11 mdr: 2016-02-01 11:23:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797996551] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025410220] [to:+19027056079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096992574] [to:+16465688833] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678440672] [to:+12676076596] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656033457] [to:+12604076993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786559] [to:17047260227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048229078] [to:+16785868047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-10 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+15146007434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:48 ip-10-0-64-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-10 mdr: 2016-02-01 11:23:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:48 ip-10-0-0-11 mdr: 2016-02-01 11:23:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787692039] [to:+17605896678] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-10 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736399] [to:14135196803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-10 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196108784] [to:+14197316072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-0-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968672] [to:19313970174] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-10 mdr: 2016-02-01 11:23:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:49 ip-10-0-64-11 mdr: 2016-02-01 11:23:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14018590198] [to:+13108814082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505663084] [to:+13478084645] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172088939] [to:+16465037817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477930283] [to:+16474947515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195206869] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335113] [to:16194368549] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-21 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751055] [to:18595829218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526820] [to:18326689829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:50 ip-10-0-0-11 mdr: 2016-02-01 11:23:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-11 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:4915735989559] [to:17815216835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:50 ip-10-0-64-10 mdr: 2016-02-01 11:23:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:12196082233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804359] [to:15404627872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505663084] [to:+13478084645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804359] [to:15404627872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-11 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-11 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534395] [to:15627818388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-11 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968176] [to:19316383671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094087] [to:19106356864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:51 ip-10-0-0-11 mdr: 2016-02-01 11:23:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845543761] [to:+16467691826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:51 ip-10-0-64-10 mdr: 2016-02-01 11:23:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505663084] [to:+13478084645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547782535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289229] [to:12538448613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074408] [to:19174172178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158533811] [to:19375411521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057793728] [to:+15103278225] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:52 ip-10-0-64-11 mdr: 2016-02-01 11:23:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808636152] [to:+16474993169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-11 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:52 ip-10-0-0-10 mdr: 2016-02-01 11:23:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439954250] [to:+15152032744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147564134] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285364434] [to:+17073008920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376596] [to:13369958565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106248439] [to:+13477360649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124125084] [to:+15129523368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14147929988] [to:+12344017143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409209976] [to:+14434530671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12696354186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019286259] [to:+13219269288] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045071495] [to:+13476675694] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:53 ip-10-0-64-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148314569] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405179468] [to:+17408798082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-10 mdr: 2016-02-01 11:23:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266002786] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:53 ip-10-0-0-11 mdr: 2016-02-01 11:23:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-20 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609736] [to:+447796447079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966204] [to:12039186591] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030023] [to:15062336981] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720558] [to:19126753949] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17043084900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705990263] [to:+14849869059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682717] [to:18658011766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137235940] [to:13138292191] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135058494] [to:+18133244239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-21 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451242024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053252177] [to:+12262411710] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-64-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034062404] [to:+18038519240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-11 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:54 ip-10-0-0-10 mdr: 2016-02-01 11:23:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506392621] [to:14508075741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995109] [to:18592420748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037188316] [to:+13475186154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135312390] [to:+18133206253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247693252] [to:+18453647883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E20201] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E20202] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808032171] [to:+15873322745] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999485] [to:+19177320121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138999664] [to:+16474951853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029510018] [to:+19027056285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606475303] [to:+19402222095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303926859] [to:+13478967679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202203025] [to:+15865747722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14254357380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502424] [to:13364011278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958854] [to:15017728177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-10 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465466226] [to:+19174094138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:55 ip-10-0-0-11 mdr: 2016-02-01 11:23:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604338991] [to:+15034868286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:55 ip-10-0-64-11 mdr: 2016-02-01 11:23:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413523] [to:17577383725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146633] [to:17876854611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805366] [to:18102471927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472496796] [to:+14153408008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476383936] [to:+16474951499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18687390767] [to:+13475186675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320379] [to:13154180129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-10 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032496966] [to:+17036466155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:56 ip-10-0-0-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616021084] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:56 ip-10-0-64-11 mdr: 2016-02-01 11:23:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003010201] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272907582] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010202] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265040978] [to:+12262412001] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147365] [to:15757406453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-11 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532245910] [to:+12533137976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-10 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:57 ip-10-0-64-11 mdr: 2016-02-01 11:23:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:57 ip-10-0-0-10 mdr: 2016-02-01 11:23:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134712] [to:+16475569464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076085331] [to:+13479191924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024911040] [to:+19142812754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138443] [to:19199395753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302819] [to:14127134862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-10 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-10 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192037977] [to:+17279986024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568411] [to:15404700544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:58 ip-10-0-64-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:23:58 ip-10-0-0-11 mdr: 2016-02-01 11:23:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144752349] [to:+15146006997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477930283] [to:+16474947515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182014557] [to:+13475808460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-11 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-10 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168823138] [to:+15304882693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-10 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855077528] [to:+15304882930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-11 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:23:59 ip-10-0-0-10 mdr: 2016-02-01 11:23:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778404] [to:16155937846] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:23:59 ip-10-0-64-11 mdr: 2016-02-01 11:23:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-11 mdr: 2016-02-01 11:24:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798806] [to:19047785159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864681] [to:14702732368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092115] [to:17043088948] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:00 ip-10-0-64-11 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051916] [to:13138542447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:00 ip-10-0-0-10 mdr: 2016-02-01 11:24:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774900] [to:19204109777] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18687390767] [to:+13475186675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375536] [to:12483438907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15147095426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074408] [to:19174172178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405259726] [to:+14242863387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868670] [to:17049644417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-64-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041844] [to:12102545138] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-10 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:16472338566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:01 ip-10-0-0-11 mdr: 2016-02-01 11:24:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501379] [to:17062979058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199388] [to:17405050577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203737882] [to:19102828326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254541] [to:17653666666] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-10 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:02 ip-10-0-0-11 mdr: 2016-02-01 11:24:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:02 ip-10-0-64-11 mdr: 2016-02-01 11:24:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-10 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065705339] [to:+13479805404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312614143] [to:+19312577233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-21 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-11 mdr: 2016-02-01 11:24:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003FA0301] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669450] [to:15854696598] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:03 ip-10-0-0-10 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:12628758011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:03 ip-10-0-64-11 mdr: 2016-02-01 11:24:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348177227132] [to:+15107799372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D30201] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062277738] [to:+15068027084] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618116] [to:19105542832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-21 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242565] [to:18043385565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-11 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-11 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-21 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18564349610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:04 ip-10-0-0-20 mdr: 2016-02-01 11:24:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0201] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:04 ip-10-0-64-10 mdr: 2016-02-01 11:24:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12048696571] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890302] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473137662] [to:+18583605309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807996368] [to:+16025528762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403402] [to:18604360560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621728] [to:19102748949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285510261] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424406] [to:+18107727531] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260819] [to:16784125863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132192790] [to:+14132715766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:05 ip-10-0-64-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-11 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149220] [to:12108965311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:05 ip-10-0-0-10 mdr: 2016-02-01 11:24:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021620] [to:19025371991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292768873] [to:+13474863818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764348] [to:14346647453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-20 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0202] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088425073] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129232173] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817867] [to:18144311857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052180670] [to:+13479190111] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136585782] [to:+12138613539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003FA0302] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-11 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:06 ip-10-0-64-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875163586] [to:+14146005726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:06 ip-10-0-0-10 mdr: 2016-02-01 11:24:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17197663181] [to:+17206232348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922452] [to:14383999202] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433292693] [to:+16466691385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502327788] [to:14508486070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139523939] [to:+18133083091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:14797996551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003620202] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003890303] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003620201] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17638529142] [to:17634126567] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073637] [to:18196090156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825522610] [to:+14692055520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-64-11 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-11 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023019] [to:19073288438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:07 ip-10-0-0-10 mdr: 2016-02-01 11:24:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324237085] [to:+16109105929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202172392] [to:+12626482027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149725020] [to:+19179797514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-10 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-10 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-21 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-10 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272907582] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-10 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122557571] [to:+16129305567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122557571] [to:+16129305567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-10 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:08 ip-10-0-64-10 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:08 ip-10-0-0-11 mdr: 2016-02-01 11:24:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196370716] [to:+19199163371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193419387] [to:+13477697623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-10 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12195150962] [to:+14074424112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:09 ip-10-0-64-11 mdr: 2016-02-01 11:24:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313585263] [to:+19802094700] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:09 ip-10-0-0-11 mdr: 2016-02-01 11:24:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086961] [to:16066573598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014058044] [to:+17817864421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837257] [to:15742535351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916182] [to:15196397146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618353] [to:17155811526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597875] [to:17808845956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-10 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:10 ip-10-0-64-11 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743556] [to:13173611016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:10 ip-10-0-0-10 mdr: 2016-02-01 11:24:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258246] [to:12178833599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019378] [to:14192069828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-10 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324237085] [to:+16109105929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-11 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472367463] [to:+16477999375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-10 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:11 ip-10-0-0-11 mdr: 2016-02-01 11:24:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309638] [to:15736295837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:11 ip-10-0-64-10 mdr: 2016-02-01 11:24:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144589062] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134821810] [to:+18108528825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227405] [to:18033871134] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-20 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447717782862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-11 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062072350] [to:+18597777060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-11 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049444188] [to:+14049004290] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:12 ip-10-0-0-10 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:12 ip-10-0-64-11 mdr: 2016-02-01 11:24:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12532485837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237424754] [to:+13108792193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149337292] [to:+16466998945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733387] [to:17063664463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618353] [to:17155811526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232606] [to:15593050030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577233] [to:19312614143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072808441] [to:+14072681387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:13 ip-10-0-64-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-11 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048441763] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:13 ip-10-0-0-10 mdr: 2016-02-01 11:24:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205888] [to:+19166374155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147934] [to:18143926470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086789] [to:16088510175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064789961] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309744465] [to:+18724005901] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024820195] [to:+17027476167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-21 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673971] [to:+447771525046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:14 ip-10-0-64-10 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592420748] [to:+14157995109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:14 ip-10-0-0-11 mdr: 2016-02-01 11:24:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375153701] [to:+17279165707] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141474] [to:18198561126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043906] [to:15146125780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-20 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447747104276] [to:+447520627143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502321151] [to:16479827960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030023] [to:15062336981] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314609319] [to:+14158530629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-10 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13185102205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:15 ip-10-0-0-11 mdr: 2016-02-01 11:24:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022248] [to:15819983047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:15 ip-10-0-64-11 mdr: 2016-02-01 11:24:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629851] [to:17062380868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-10 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314609319] [to:+14158530629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032155434] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18035052387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:13232385710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-21 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447923242361] [to:+447451218466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-20 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158257] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774900] [to:17158536084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:16 ip-10-0-64-11 mdr: 2016-02-01 11:24:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103618197] [to:+15103137377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:16 ip-10-0-0-10 mdr: 2016-02-01 11:24:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19316383671] [to:+19318968176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-11 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153989359] [to:+13475807101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265040409] [to:+12267901978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048977631] [to:18049267028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595829218] [to:+19172751055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17725014177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162027440] [to:+13302370644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:17 ip-10-0-0-10 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255732] [to:18564349610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:17 ip-10-0-64-11 mdr: 2016-02-01 11:24:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792969] [to:17164891979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075087798] [to:+14073372472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407408] [to:17038816787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-11 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059396] [to:+16465037212] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-10 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:18 ip-10-0-64-10 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:18 ip-10-0-0-10 mdr: 2016-02-01 11:24:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588335] [to:14407895778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024231161] [to:+13024000176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-20 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217199] [to:+447701324703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571976] [to:15052056012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735761] [to:17608859123] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054271160] [to:+17053021633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-21 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447908171723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320379] [to:13154019452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692680065] [to:+18176317381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273183057] [to:+18133081938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:19 ip-10-0-0-11 mdr: 2016-02-01 11:24:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337215] [to:13182908946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-11 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:19 ip-10-0-64-10 mdr: 2016-02-01 11:24:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102804803] [to:+19199162830] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063972251] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15628503060] [to:+14153269353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017660] [to:+12262409981] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176009694] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:17038951122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205888] [to:+19166374155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147421305] [to:+16475569541] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389983448] [to:+14388079726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:20 ip-10-0-64-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-10 mdr: 2016-02-01 11:24:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:20 ip-10-0-0-11 mdr: 2016-02-01 11:24:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347079066] [to:+17605433526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12048696571] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038182692] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569108] [to:15089584440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:21 ip-10-0-0-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-11 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:21 ip-10-0-64-10 mdr: 2016-02-01 11:24:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556650] [to:12513870053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-20 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054927286] [to:+18506313027] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:15147564134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-11 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729996120] [to:16185400450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:22 ip-10-0-0-10 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318828903] [to:+12138024390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-10 mdr: 2016-02-01 11:24:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035229] [to:18197122328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:22 ip-10-0-64-11 mdr: 2016-02-01 11:24:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:17655433515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624736982] [to:15623825774] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005820] [to:12143107750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-11 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479471092] [to:13474445610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277837] [to:14036125557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:23 ip-10-0-0-10 mdr: 2016-02-01 11:24:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588335] [to:14407895778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:23 ip-10-0-64-10 mdr: 2016-02-01 11:24:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696898782] [to:+12602755221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988998] [to:18042522727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916193] [to:16476970077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548290467] [to:+17542220130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064789961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403398861] [to:+13478961632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294294679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-11 mdr: 2016-02-01 11:24:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-11 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:24 ip-10-0-0-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:24 ip-10-0-64-10 mdr: 2016-02-01 11:24:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474888228] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995957] [to:18648280377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219075] [to:12292371128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022215874] [to:+19027021781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19374697114] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:12628948179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:16033726453] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179534556] [to:+15103226601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982255] [to:12263483172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405904887] [to:+19715126587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-10 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:16033726453] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-10 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:25 ip-10-0-0-11 mdr: 2016-02-01 11:24:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747437] [to:16013572876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342356260] [to:+13479806251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793169144] [to:+15103227863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026820] [to:17783875776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097284240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691647] [to:19392421991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-20 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Lowell] [to:+447418335712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675037] [to:16085165132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13123950097] [to:+13202975207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-11 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786965] [to:16462461671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:26 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:26 ip-10-0-0-11 mdr: 2016-02-01 11:24:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644046665] [to:+18649995457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793259217] [to:+19177739319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19252340624] [to:+19259574208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592420748] [to:+14157995109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-11 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304205888] [to:+19166374155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-0-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016686131] [to:+12017658724] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146120280] [to:+16139098399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-10 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557738] [to:19522887251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:27 ip-10-0-64-11 mdr: 2016-02-01 11:24:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059670818] [to:+12392190098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218286] [to:19562702826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138542447] [to:+15617051916] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BB0201] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:28 ip-10-0-64-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-11 mdr: 2016-02-01 11:24:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598051607] [to:+17073007641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:28 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-10 mdr: 2016-02-01 11:24:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:17248826557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-11 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BB0202] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746755] [to:13137287672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297260313] [to:+13217309641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320121] [to:12079999485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:29 ip-10-0-0-10 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147476] [to:19895900144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:29 ip-10-0-64-11 mdr: 2016-02-01 11:24:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408160461] [to:+13479194770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024894898] [to:+12404077275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12507318176] [to:+17786549440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703162755] [to:+14706734251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369940] [to:12533026790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248555] [to:14029220020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14257800668] [to:+17037479571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-64-11 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839037] [to:17146976555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-11 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602261302] [to:+12604076568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:30 ip-10-0-0-20 mdr: 2016-02-01 11:24:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355189] [to:17656172316] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435933168] [to:+12136348747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178802674] [to:+19142815611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D40201] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408136795] [to:+14402528360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17176881128] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201409] [to:14437357957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D90301] -Feb 1 11:24:31 ip-10-0-0-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:31 ip-10-0-0-11 mdr: 2016-02-01 11:24:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023061] [to:12065999739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-11 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:31 ip-10-0-64-10 mdr: 2016-02-01 11:24:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168325103] [to:+15146007849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12183707933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17176881128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12094221934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-20 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-20 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447794092992] [to:+447451242884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19027196084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17176881128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207995] [to:15704727670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12066419746] [to:+12538787378] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092523363] [to:+12138225277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067812198] [to:+14693847154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D90302] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587436] [to:19042546204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-11 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:32 ip-10-0-0-11 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:32 ip-10-0-64-10 mdr: 2016-02-01 11:24:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17175047309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-20 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214340] [to:+447564143380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D90303] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158594819] [to:12525324089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312614143] [to:+19312577233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167057745] [to:+19163477063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435933168] [to:+12136348747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523606717] [to:+15406286292] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19204613635] [to:+17018006836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-64-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-10 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:33 ip-10-0-0-11 mdr: 2016-02-01 11:24:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808210088] [to:+15873158148] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-21 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520671851] [to:+447455205160] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-11 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:34 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:34 ip-10-0-0-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299773] [to:14437423284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415905648] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155462265] [to:+14693737910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086511046] [to:+12086252927] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204427887] [to:+14157878342] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025175135] [to:+19543142202] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503019610] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314082805] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182085399] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15133841582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-64-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242746955] [to:+16474914917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-10 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-11 mdr: 2016-02-01 11:24:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485837] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:35 ip-10-0-0-20 mdr: 2016-02-01 11:24:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102244370] [to:+16466320784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-11 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:36 ip-10-0-64-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405259726] [to:+14242863387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-10 mdr: 2016-02-01 11:24:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842064969] [to:+17866079571] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:36 ip-10-0-0-11 mdr: 2016-02-01 11:24:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501697] [to:15122298492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19894171030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:37 ip-10-0-0-21 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731927] [to:17064216187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-10 mdr: 2016-02-01 11:24:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:37 ip-10-0-64-11 mdr: 2016-02-01 11:24:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018679] [to:15068981284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024882] [to:16133160245] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000155] [to:13479877458] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:15129232173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13174965420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733218190] [to:+14043900661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731285] [to:12074005748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032012460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035895280] [to:+12894601540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032900049] [to:+18038143465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315330] [to:15862654613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393053] [to:14406675674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824775] [to:19082026499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:38 ip-10-0-64-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049147843] [to:+16503008301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-11 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129992159] [to:+19792326159] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:38 ip-10-0-0-10 mdr: 2016-02-01 11:24:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165632414] [to:+17162882015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105542832] [to:+17723618116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063330213] [to:+15068038864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172959] [to:12815084614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383965804] [to:+14387923040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875088270] [to:+13476504429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-11 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165632414] [to:+17162882015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:39 ip-10-0-64-10 mdr: 2016-02-01 11:24:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:39 ip-10-0-0-10 mdr: 2016-02-01 11:24:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-21 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197760062] [to:15673765408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319727716] [to:+16316141355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15857430874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032012460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-11 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166560639] [to:+13478967043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:40 ip-10-0-64-10 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:40 ip-10-0-0-11 mdr: 2016-02-01 11:24:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177492941] [to:+13219265459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15188440760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-20 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447825036643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703177088] [to:+15028041581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308633] [to:+13065004481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164581616] [to:+12262411727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038F0202] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038F0201] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12063972251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:17022088545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13863165180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-21 mdr: 2016-02-01 11:24:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675493] [to:13189555722] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:41 ip-10-0-64-10 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032285] [to:17249314792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:41 ip-10-0-0-11 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13306222513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792969] [to:17163979324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047744681] [to:+15103225987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784209489] [to:+16172139941] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109993524] [to:+13866018191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232046844] [to:+16236664906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-20 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681387] [to:14072808441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-20 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447913467969] [to:+447451211261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865881077] [to:+15865748892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314082805] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-11 mdr: 2016-02-01 11:24:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143348690] [to:+19142062698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:42 ip-10-0-0-11 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:42 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:17852801276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107592] [to:13189470961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:18603367875] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12199027329] [to:+19172720325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143348690] [to:+19142062698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159917807] [to:+13479138929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076596] [to:12678440672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927353] [to:14383966305] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-11 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523368] [to:15124125084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-11 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:43 ip-10-0-64-10 mdr: 2016-02-01 11:24:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15737243667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:43 ip-10-0-0-10 mdr: 2016-02-01 11:24:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955523] [to:19855138923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415198703] [to:+19715127797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192910110] [to:+12262417963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-11 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142816572] [to:12023784672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556347] [to:12179182298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-10 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607605] [to:13095307036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:44 ip-10-0-64-11 mdr: 2016-02-01 11:24:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095876] [to:14384044133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:44 ip-10-0-0-11 mdr: 2016-02-01 11:24:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145121095] [to:+17185043734] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155124308] [to:+14023873492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695083467] [to:+14693008671] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178277094] [to:+12017012782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452741] [to:13368379658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895900144] [to:+19893147476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:15195887871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14355139348] [to:+14842842572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416615583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428165] [to:19044709077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023844810] [to:+13476675702] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314082805] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403836164] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194965595] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-11 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-11 mdr: 2016-02-01 11:24:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:45 ip-10-0-0-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:45 ip-10-0-64-10 mdr: 2016-02-01 11:24:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695083467] [to:+14693008671] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067812198] [to:+14693847154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665916] [to:14048896314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210698] [to:18035052387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502327788] [to:14508486070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197222345] [to:+14197316144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-10 mdr: 2016-02-01 11:24:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:46 ip-10-0-0-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163371] [to:19196370716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:46 ip-10-0-64-11 mdr: 2016-02-01 11:24:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231348] [to:13174388978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067660461] [to:+14706731039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14238874728] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805531] [to:18108588125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805531] [to:18108588125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175427632] [to:+19703158788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232348] [to:17197663181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-64-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-11 mdr: 2016-02-01 11:24:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-21 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447854509557] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:47 ip-10-0-0-10 mdr: 2016-02-01 11:24:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175427632] [to:+19703158788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383999202] [to:+14387922452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034407255] [to:+13477982592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364089] [to:15136578352] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021582] [to:18653562915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136585782] [to:+12138613539] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263782986] [to:+12264570433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024395314] [to:13026025806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501895] [to:18327989706] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:48 ip-10-0-0-11 mdr: 2016-02-01 11:24:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:48 ip-10-0-64-10 mdr: 2016-02-01 11:24:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472337547] [to:+14049004231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176696968] [to:+17348214645] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852106795] [to:+15852824601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238395128] [to:+18572645643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18609519186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163065044] [to:+17185044580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545152062] [to:+19546412951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:49 ip-10-0-0-10 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:49 ip-10-0-64-11 mdr: 2016-02-01 11:24:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968485] [to:16478284076] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-10 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691647] [to:19392421991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-10 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-11 mdr: 2016-02-01 11:24:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:50 ip-10-0-0-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:50 ip-10-0-64-11 mdr: 2016-02-01 11:24:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19186443080] [to:+14242796691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015012] [to:12407043047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154733075] [to:+19018430619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029072] [to:15066097812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083472216] [to:+18622278714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702221731] [to:+12134787824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:51 ip-10-0-0-10 mdr: 2016-02-01 11:24:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035079033] [to:+12138611440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672682] [to:12035439684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:51 ip-10-0-64-11 mdr: 2016-02-01 11:24:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398104117] [to:+13477982137] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294294679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479715175] [to:+16476911297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074914855] [to:+17739433766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B80401] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372056332] [to:+14242838343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095039841] [to:+13214067166] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398104117] [to:+13477982137] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364174060] [to:18324018218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049644417] [to:+14242868670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087834] [to:12076590814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075087798] [to:+14073372472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347017] [to:16074239960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-0-11 mdr: 2016-02-01 11:24:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-11 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:52 ip-10-0-64-10 mdr: 2016-02-01 11:24:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987859] [to:12254397348] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:12493582804] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16088510175] [to:+18133086789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-11 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874543491] [to:+19148608636] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-11 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064501706] [to:+15873321634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:53 ip-10-0-0-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794847020] [to:+19798885078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:53 ip-10-0-64-10 mdr: 2016-02-01 11:24:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703569033] [to:+13473797049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17029719586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557139] [to:19894924244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066573598] [to:+13475086961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147468961] [to:+15146007518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593607938] [to:+14157995262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006350] [to:17053807889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262032637] [to:+12262403373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555952] [to:15192164518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:54 ip-10-0-64-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B80402] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-11 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046983856] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:54 ip-10-0-0-10 mdr: 2016-02-01 11:24:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129409] [to:16109087591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136673760] [to:+14242839629] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834772] [to:18582847763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18168007290] [to:18162164010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143465] [to:18032900049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003890301] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283270012] [to:+18046244573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084698512] [to:+18572191163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003FA0303] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774799] [to:+12138026165] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373225803] [to:+13373479327] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D40202] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058758308] [to:+16139092324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266626121] [to:+13478999292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405050577] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405259726] [to:+14242863387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139523939] [to:+18133083091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364040] [to:+19786140690] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175007950] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624167558] [to:+19292689561] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198198612] [to:+12262410194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147263] [to:12406047772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176941751] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-11 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:55 ip-10-0-64-10 mdr: 2016-02-01 11:24:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:55 ip-10-0-0-11 mdr: 2016-02-01 11:24:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:17577682833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788076336] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122298492] [to:+18326501697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149553] [to:15046489759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13107505384] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147529815] [to:+19492453106] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095973667] [to:+17097022710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:19542582486] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147639648] [to:13142828948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342346] [to:17066016505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147529815] [to:+19492453106] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:12767799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-10 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:56 ip-10-0-0-20 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447971417048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:56 ip-10-0-64-11 mdr: 2016-02-01 11:24:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049986694] [to:+12048173386] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-10 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027196084] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B80403] -Feb 1 11:24:57 ip-10-0-0-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528708] [to:14406108409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-10 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:57 ip-10-0-64-11 mdr: 2016-02-01 11:24:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:57 ip-10-0-0-11 mdr: 2016-02-01 11:24:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045288068] [to:+18046242498] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:18705623958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16309150363] [to:+17089468612] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548646477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-10 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12532485837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027192539] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:58 ip-10-0-64-11 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:58 ip-10-0-0-10 mdr: 2016-02-01 11:24:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015737453] [to:+12405732118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17407518865] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17407518865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17407518865] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016970468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16179592307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034604531] [to:+17184169018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400770] [to:12152549986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587404] [to:19042632893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-21 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146381599] [to:+14388075132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734723] [to:18644142824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-11 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:24:59 ip-10-0-64-10 mdr: 2016-02-01 11:24:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646089217] [to:+18649999061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:24:59 ip-10-0-0-11 mdr: 2016-02-01 11:24:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629135] [to:15084939294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-10 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-21 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447946329649] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-10 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-21 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-10 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634640105] [to:+18639492171] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-21 mdr: 2016-02-01 11:25:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447447084323] [to:+447418330634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:00 ip-10-0-0-10 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232608] [to:16198184348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:00 ip-10-0-64-11 mdr: 2016-02-01 11:25:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023188808] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076618560] [to:+17162791384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742535351] [to:+14242837257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-20 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598018161] [to:+13476903062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-11 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-10 mdr: 2016-02-01 11:25:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-64-11 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309241] [to:15404356832] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:01 ip-10-0-0-10 mdr: 2016-02-01 11:25:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086749441] [to:+18572191984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283695529] [to:+15174920750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982255] [to:12263483172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063197] [to:16463234213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705287751] [to:+16467389703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712800906] [to:+15036478006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134752864] [to:+18133087256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:02 ip-10-0-0-11 mdr: 2016-02-01 11:25:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-11 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069626144] [to:+15068038877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:02 ip-10-0-64-10 mdr: 2016-02-01 11:25:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127134862] [to:+14122302819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15852014807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783279288] [to:+17278196578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276123417] [to:+17278578943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073288438] [to:+12138023019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964121] [to:16146006429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784125863] [to:+15169260819] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389939577] [to:+14388095817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954780] [to:17319248294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387225] [to:12292696963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671738] [to:12196082233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095534] [to:17328653279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329741] [to:13479685696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453617] [to:14438446989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434688447] [to:+18435345226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815084614] [to:+12048172959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084860] [to:17405505225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991541] [to:15712499715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:03 ip-10-0-64-10 mdr: 2016-02-01 11:25:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-11 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:03 ip-10-0-0-10 mdr: 2016-02-01 11:25:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877070628] [to:+15873322304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-10 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062336981] [to:+15068030023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072231] [to:14439442135] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13376521388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034749] [to:16782351836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824175] [to:15852842648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248555] [to:14029220020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570433] [to:15199024536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006350] [to:17053807889] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876088] [to:15138070031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077490] [to:12602245254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-64-10 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922452] [to:14383999202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391284] [to:16028003767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:04 ip-10-0-0-11 mdr: 2016-02-01 11:25:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631978] [to:+14693537786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408600] [to:15615840086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B80404] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594155443] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596477305] [to:+14158403768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155548078] [to:+17746138474] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263483172] [to:+12267982255] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074584268] [to:+15036478810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617206398] [to:+16614024336] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178038801] [to:+15172527673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17409742014] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594891269] [to:+14158535859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651693] [to:17788739564] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19099158665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-11 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-64-11 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-21 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944352121] [to:+447451202904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-20 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-21 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789951389] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202499789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:05 ip-10-0-0-10 mdr: 2016-02-01 11:25:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202499789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102587933] [to:+12136324906] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19737562449] [to:12488084930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606390716] [to:+13477973751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001505] [to:17095719794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001505] [to:17095719794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028075] [to:19188125718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093803057] [to:+13475088589] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403204416] [to:+13015699852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003110201] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421459] [to:13098573560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-0-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478700301] [to:+16095434838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309641] [to:12297260313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083388] [to:13183318703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162103660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028705082] [to:+14503286526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:06 ip-10-0-64-11 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:12369935860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421459] [to:13098573560] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110202] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232608] [to:16198184348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102939103] [to:+18108528415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296993] [to:12523404634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543910472] [to:+19545103885] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886866] [to:+15103228043] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104955232] [to:+13025958635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139594] [to:17818318368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042632893] [to:+19047587404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-10 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842793] [to:15709820862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:07 ip-10-0-0-11 mdr: 2016-02-01 11:25:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:07 ip-10-0-64-11 mdr: 2016-02-01 11:25:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072083786] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124125084] [to:+15129523368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493475] [to:16788008365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097811481] [to:+18563182054] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-20 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447936996807] [to:+447451221289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796691] [to:19186443080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:08 ip-10-0-0-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436333468] [to:+12135878944] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-10 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:08 ip-10-0-64-11 mdr: 2016-02-01 11:25:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025187438] [to:+17027183474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986024] [to:14192037977] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746521] [to:17146055577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-21 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447933101077] [to:+447418333002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669615] [to:16017543027] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:15034969702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477415305] [to:+16474956154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839629] [to:15136673760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389334498] [to:+15068029115] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523368] [to:15124125084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-11 mdr: 2016-02-01 11:25:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-11 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:09 ip-10-0-64-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874059957] [to:15872984913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:09 ip-10-0-0-10 mdr: 2016-02-01 11:25:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169018] [to:18034604531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:18503456073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504429] [to:17875088270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737178419] [to:+18326538191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783993389] [to:+19785334213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783340354] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736012] [to:12673449362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019191189] [to:+19084858905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392295077] [to:+12392190410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-10 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307768302] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:10 ip-10-0-0-11 mdr: 2016-02-01 11:25:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:10 ip-10-0-64-10 mdr: 2016-02-01 11:25:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667260] [to:17736584683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326930] [to:+15304882977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706661977] [to:+13479801746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846877549] [to:+19082809014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749039878] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16013012869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491107] [to:15303918118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085319] [to:19043836122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15183323655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394775] [to:14803262128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:11 ip-10-0-0-11 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:11 ip-10-0-64-10 mdr: 2016-02-01 11:25:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-10 mdr: 2016-02-01 11:25:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528708] [to:14406108409] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748595] [to:16038565090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-11 mdr: 2016-02-01 11:25:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035175] [to:18329968224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:12 ip-10-0-0-11 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:12 ip-10-0-64-10 mdr: 2016-02-01 11:25:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075132] [to:15146381599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173343740] [to:+19786919095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616925291] [to:+15612576343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227526] [to:18282447622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193295071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569812] [to:16477219410] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175299] [to:17062663140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-11 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:13 ip-10-0-64-10 mdr: 2016-02-01 11:25:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:13 ip-10-0-0-11 mdr: 2016-02-01 11:25:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061800] [to:14024528513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570433] [to:12263782986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202962] [to:17272710067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163536686] [to:+16466998274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-10 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:14 ip-10-0-0-11 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-11 mdr: 2016-02-01 11:25:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:14 ip-10-0-64-10 mdr: 2016-02-01 11:25:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964121] [to:16146006429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179552459] [to:+13867428072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927091] [to:15149198162] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598277496] [to:+15592232334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15122886373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046396] [to:19022330148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142035723] [to:+13479378822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-10 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-11 mdr: 2016-02-01 11:25:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:15 ip-10-0-64-11 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:15 ip-10-0-0-10 mdr: 2016-02-01 11:25:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159884089] [to:+13219269862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097842] [to:15877311777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087834] [to:18647043927] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122289078] [to:+18127777119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668074] [to:19375974182] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162306] [to:13214441613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-10 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004481] [to:13069308633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:14078609982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605753288] [to:+19172836964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-10 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:14124037591] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:16 ip-10-0-64-11 mdr: 2016-02-01 11:25:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035714] [to:14128416419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:16 ip-10-0-0-11 mdr: 2016-02-01 11:25:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143301849] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842064941] [to:+15103137543] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188440760] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103943477] [to:+12105718477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655053197] [to:+14158909547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15738182357] [to:15736938544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13348641109] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607756338] [to:+12536423739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193538494] [to:13076798165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-11 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:17 ip-10-0-0-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707350210] [to:+19172594039] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:17 ip-10-0-64-10 mdr: 2016-02-01 11:25:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038882718] [to:+15873270709] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-10 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062345670] [to:+17073007351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19032155434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043958] [to:14133167768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326159] [to:15129992159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12098096585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:12175973286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-10 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361835] [to:18014137872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-20 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:18 ip-10-0-64-11 mdr: 2016-02-01 11:25:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:18 ip-10-0-0-11 mdr: 2016-02-01 11:25:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138505] [to:16034408931] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576343] [to:15616925291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419024] [to:14238382417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321634] [to:13064501706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278809] [to:16068752395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18132172768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077490] [to:12602245254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790942] [to:15709168576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425810] [to:13869837924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-64-11 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:19 ip-10-0-0-10 mdr: 2016-02-01 11:25:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128740435] [to:+13479190549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175137664] [to:+13176889733] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329339746] [to:+12816034897] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048988507] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169976719] [to:+17279986794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360175] [to:15092022819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577233] [to:19312614143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-10 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-0-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403096979] [to:+13478684571] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:20 ip-10-0-64-11 mdr: 2016-02-01 11:25:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374590110] [to:+12132950998] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602467558] [to:+12604070838] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389703] [to:12705287751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043896227] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136962797] [to:+12138027440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16176344399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-10 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703408939] [to:+14387940793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313371219] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:21 ip-10-0-64-11 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:21 ip-10-0-0-10 mdr: 2016-02-01 11:25:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974329] [to:18178995249] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959414] [to:14057639030] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041664] [to:14066508971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096874195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045146642] [to:+12048172164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852227423] [to:14794450584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182733] [to:17752762175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312551] [to:15402870911] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-10 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:22 ip-10-0-64-11 mdr: 2016-02-01 11:25:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:22 ip-10-0-0-11 mdr: 2016-02-01 11:25:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552881] [to:14235065145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150361292674] [to:+13477147264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124125084] [to:+15129523368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016900248] [to:+18018500538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733597017] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668074] [to:19375974182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173611016] [to:+17604743556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:23 ip-10-0-0-11 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035243242] [to:+19108888193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:23 ip-10-0-64-10 mdr: 2016-02-01 11:25:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16476686434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12042288952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201607] [to:19372188827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044155343] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464923338] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-21 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323585] [to:+447828999265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508462532] [to:+12264550435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327668102] [to:+12262404836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-11 mdr: 2016-02-01 11:25:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:12404606889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:24 ip-10-0-0-11 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803183777] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:24 ip-10-0-64-10 mdr: 2016-02-01 11:25:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:7:06080403110302] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239364] [to:16166101611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034749] [to:18122170787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342364] [to:14044682403] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892146] [to:17734196636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488388] [to:18658051830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080403110303] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153024707] [to:+13126145548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:25 ip-10-0-64-10 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:25 ip-10-0-0-11 mdr: 2016-02-01 11:25:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:18568993174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594458] [to:14403961243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202698] [to:12082494777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072466] [to:19842098930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072842] [to:19842323703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17272907582] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-10 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-11 mdr: 2016-02-01 11:25:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476167] [to:17024820195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:26 ip-10-0-0-10 mdr: 2016-02-01 11:25:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:26 ip-10-0-64-10 mdr: 2016-02-01 11:25:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808381] [to:17749913004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18604021072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146214807] [to:+14387943006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:18503456084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178719020] [to:+19492453534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210043] [to:15593034298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133274642] [to:+16136047641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:27 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:27 ip-10-0-0-11 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023203978] [to:+13478968813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086789] [to:16088510175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467520758] [to:+13126145228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:14389291216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:18329921282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053437429] [to:+19543639414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073513821] [to:+16574008363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-64-10 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158536084] [to:+12627774900] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-10 mdr: 2016-02-01 11:25:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:28 ip-10-0-0-11 mdr: 2016-02-01 11:25:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138929] [to:15159917807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128902732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-10 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14025919677] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-10 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:14424001922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15594155443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-10 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-21 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447577995319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001173] [to:19192734118] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-11 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-10 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:29 ip-10-0-64-10 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:29 ip-10-0-0-11 mdr: 2016-02-01 11:25:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066097812] [to:+15068029072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980605] [to:14168577397] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653562915] [to:+13478021582] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227405] [to:18034908147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327668102] [to:+12262404836] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755441] [to:12695891798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034969947] [to:+15034868481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122227] [to:18483912005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-11 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-10 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:30 ip-10-0-64-10 mdr: 2016-02-01 11:25:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487029000] [to:+15744850589] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:30 ip-10-0-0-11 mdr: 2016-02-01 11:25:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408139] [to:13522089707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136714173] [to:+14357764699] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19795878128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195590473] [to:+17142612392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731285] [to:12074005748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274922412] [to:+17279165348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-11 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:31 ip-10-0-0-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014270920] [to:+18018903371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:31 ip-10-0-64-10 mdr: 2016-02-01 11:25:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-20 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098684822] [to:+18724003525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797514] [to:16149725020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010401] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-11 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526196095] [to:+17636849353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-10 mdr: 2016-02-01 11:25:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:32 ip-10-0-64-10 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609325362] [to:+12135295573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:32 ip-10-0-0-11 mdr: 2016-02-01 11:25:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16019427561] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043088948] [to:+19802092115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515394] [to:14438041322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247963] [to:13133923613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505310159] [to:+15817005248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:14505892521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15086237079] [to:18573345575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064958790] [to:+17199990189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:33 ip-10-0-0-10 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:33 ip-10-0-64-11 mdr: 2016-02-01 11:25:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813464] [to:14439794936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014270920] [to:+18018903371] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159623444] [to:+16158431574] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726768996] [to:+14108342931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403913422] [to:+14403594879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003010402] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617206398] [to:+16614024336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327740] [to:19152135955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374676489] [to:+13477149369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985901] [to:+12048135508] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-64-10 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026982] [to:14245313843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:34 ip-10-0-0-10 mdr: 2016-02-01 11:25:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128449932] [to:+19122084463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334560] [to:16614663590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058747273] [to:+18053017010] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797991] [to:13305568361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649394] [to:14195778005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058747273] [to:+18053017010] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:15623201193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:16139033382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-11 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192398175] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:35 ip-10-0-0-10 mdr: 2016-02-01 11:25:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307702182] [to:+14406588579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:35 ip-10-0-64-11 mdr: 2016-02-01 11:25:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730570] [to:14026714248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282003014] [to:+15103358877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14232239519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-10 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-10 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415764717] [to:+13479372787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-10 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023625751] [to:+13025957881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004617] [to:13346722839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-11 mdr: 2016-02-01 11:25:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383965804] [to:+14387923040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:36 ip-10-0-0-11 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:36 ip-10-0-64-10 mdr: 2016-02-01 11:25:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19064502615] [to:+17604746094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661254] [to:+12065195896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277837] [to:14036125557] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010403] -Feb 1 11:25:37 ip-10-0-0-20 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415190327] [to:+447451230763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086557805] [to:+16025527907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026165] [to:17405774799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181501] [to:17023730882] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566519896] [to:+17605897279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-10 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005481] [to:16785442523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14247576988] [to:19183126890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479685696] [to:+19177329741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:37 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:37 ip-10-0-0-11 mdr: 2016-02-01 11:25:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146478361] [to:+14387925702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345781] [to:14044655729] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133896440] [to:12104887858] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788008365] [to:+19365493475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019309336] [to:+14064043785] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821741] [to:15857752325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821741] [to:15857752325] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802358824] [to:+18678880184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479943627] [to:+16474989552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-11 mdr: 2016-02-01 11:25:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:38 ip-10-0-64-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:38 ip-10-0-0-10 mdr: 2016-02-01 11:25:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014137872] [to:+13477361835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190549] [to:14128740435] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392680] [to:14052010770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327668102] [to:+12262404836] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-11 mdr: 2016-02-01 11:25:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743281971] [to:+15085562479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003010404] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-11 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:39 ip-10-0-64-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147778614] [to:+15146006812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:39 ip-10-0-0-10 mdr: 2016-02-01 11:25:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308633] [to:+13065004481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058902876] [to:+17053026964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148046171] [to:+14387922986] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277837] [to:14036125557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852816] [to:13023844780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086292] [to:16159434426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639414] [to:13053437429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-20 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447771525046] [to:+447520673971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:14424001922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400770] [to:12677668333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187767342] [to:+19177730322] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878599] [to:15174498430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391284] [to:16027269316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434660] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:40 ip-10-0-0-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:40 ip-10-0-64-11 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051916] [to:13138542447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045531326] [to:+14704446227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726768996] [to:+14108342931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203762] [to:14108425644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364683] [to:+18583146403] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144131] [to:16097844979] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023581148] [to:+17029016517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505892521] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-11 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045247205] [to:+18572327015] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608293] [to:17605836239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637752] [to:16823070221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:41 ip-10-0-64-10 mdr: 2016-02-01 11:25:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:41 ip-10-0-0-11 mdr: 2016-02-01 11:25:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-10 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730570] [to:14026714248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-10 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154733075] [to:+19018430619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474956154] [to:16477415305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-10 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:42 ip-10-0-0-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-11 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:42 ip-10-0-64-10 mdr: 2016-02-01 11:25:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196513119] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528708] [to:14405221506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608293] [to:17605836239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808495227] [to:+19172750149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967043] [to:18166560639] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149369] [to:19374676489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-64-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-11 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927757] [to:19375947901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:43 ip-10-0-0-10 mdr: 2016-02-01 11:25:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361389] [to:18438581684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096443038] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-10 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227347] [to:17737087823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-20 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330519] [to:+447522285397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17022499152] [to:+13474916697] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-21 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862654613] [to:+15863315330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896961598] [to:+12262418558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:44 ip-10-0-0-11 mdr: 2016-02-01 11:25:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-10 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265959] [to:+14706734306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:44 ip-10-0-64-11 mdr: 2016-02-01 11:25:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-21 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159813496] [to:+16158431585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-20 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198719980] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184106072] [to:+12182032105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152619045] [to:+13477981957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:45 ip-10-0-64-10 mdr: 2016-02-01 11:25:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-10 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:45 ip-10-0-0-11 mdr: 2016-02-01 11:25:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022181514] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:15086390020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136266] [to:12296696108] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886939] [to:+18572327529] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056880751] [to:+18638555698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034796330] [to:+16034134311] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070838] [to:12602467558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777119] [to:18122289078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-10 mdr: 2016-02-01 11:25:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:46 ip-10-0-64-11 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243870886] [to:12246340065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:46 ip-10-0-0-10 mdr: 2016-02-01 11:25:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682734] [to:12702852192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163979324] [to:+17162792969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545152062] [to:+19546412951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348781] [to:16782548582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747041] [to:18166738476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-10 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377683] [to:18122398795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13217455781] [to:+18324103005] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433766] [to:15074914855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-10 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:47 ip-10-0-0-11 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:47 ip-10-0-64-10 mdr: 2016-02-01 11:25:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309624125] [to:+13305779603] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295573] [to:13609325362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703408939] [to:+14387940793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476970077] [to:+16474916193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623201193] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E30201] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035175] [to:18329968224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958635] [to:19104955232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128824] [to:15415768320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050052] [to:14034774166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199132] [to:17049136120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158190902] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156557] [to:14805861931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302016656] [to:+12134785501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-11 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582847763] [to:+19173834772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:48 ip-10-0-64-10 mdr: 2016-02-01 11:25:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:48 ip-10-0-0-10 mdr: 2016-02-01 11:25:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-20 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488388] [to:18658051830] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15052408752] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-21 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447701324703] [to:+447451217199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042878210] [to:+19298413715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-21 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-11 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273206087] [to:+18133207563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:49 ip-10-0-0-10 mdr: 2016-02-01 11:25:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802358824] [to:+18678880184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:49 ip-10-0-64-11 mdr: 2016-02-01 11:25:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600995] [to:18432530550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139174187] [to:+19142815872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-11 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098270] [to:13472510592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-11 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915324] [to:15063437991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-20 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209445] [to:+447929125077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918976] [to:16048189815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:50 ip-10-0-0-10 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345426410] [to:+17036628823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:50 ip-10-0-64-10 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-11 mdr: 2016-02-01 11:25:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128822789] [to:+17037750896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163191708] [to:+16475567571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:17165609780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139125927] [to:16132813486] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049817859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177572] [to:17729401041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625451] [to:12105699887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894230948] [to:+12894601290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-11 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060712] [to:14703839517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262801520] [to:+12267794308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16627926378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476670361] [to:14406226173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743556] [to:13173611016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439794303] [to:+16673083425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:51 ip-10-0-64-10 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19056174393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:51 ip-10-0-0-11 mdr: 2016-02-01 11:25:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079456] [to:13369531159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067078] [to:19147032221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898701] [to:17314337191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975489] [to:14806969258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199969222] [to:+19199162972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985901] [to:+12048135508] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730784] [to:17065183131] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022148041] [to:+14156308745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062072350] [to:+18597777060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-10 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574208] [to:19252340624] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:52 ip-10-0-0-10 mdr: 2016-02-01 11:25:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:52 ip-10-0-64-11 mdr: 2016-02-01 11:25:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405883691] [to:+17408798705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18313197848] [to:+15592239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473045379] [to:+18582401961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096874195] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095408286] [to:+15092622398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022108020] [to:+19027046378] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152135955] [to:+14695327740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076558602] [to:+14072160947] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15873368555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:53 ip-10-0-64-11 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E30202] -Feb 1 11:25:53 ip-10-0-64-10 mdr: 2016-02-01 11:25:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177418522] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479631] [to:13477298765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:53 ip-10-0-0-10 mdr: 2016-02-01 11:25:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024390] [to:17318828903] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375974182] [to:+19172668074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063624303] [to:+16474983458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329921282] [to:+14156492369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402786] [to:17046198047] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477219410] [to:+16475569812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892801555] [to:+19895334075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625916359] [to:+19735479525] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:12403906094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196108784] [to:+14197316072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659355855] [to:+12312663155] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-10 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020884] [to:14169065422] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:54 ip-10-0-0-21 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447754384468] [to:+447451205243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:54 ip-10-0-64-11 mdr: 2016-02-01 11:25:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232426] [to:12673447183] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749983] [to:14342035363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18646496047] [to:18647642137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888010] [to:19102294711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045803672] [to:+14703335667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248826557] [to:+17723618329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128740435] [to:+13479190549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080403110301] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352256] [to:+15714412083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572104001] [to:+15085569103] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456618200] [to:+18453632542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292371128] [to:+12139219075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023803428] [to:+19282855374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036148689] [to:+15873285583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034488235] [to:+16822139303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187287556] [to:+15817003345] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475498377] [to:+16465641184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-10 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:55 ip-10-0-0-11 mdr: 2016-02-01 11:25:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364939] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:55 ip-10-0-64-11 mdr: 2016-02-01 11:25:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685787] [to:14234261389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206463] [to:+12262411243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491107] [to:15303918118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030939] [to:17403819169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026982] [to:14805215334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232960] [to:14034631006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188440760] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374676489] [to:+13477149369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-10 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:56 ip-10-0-64-11 mdr: 2016-02-01 11:25:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626123406] [to:18595831855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:56 ip-10-0-0-11 mdr: 2016-02-01 11:25:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003360201] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192164518] [to:+12264555952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614925244] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372447989] [to:+16465136509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19056301788] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150495356788] [to:+16413165262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202698] [to:12082494777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-10 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492171] [to:18634640105] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715897111] [to:+15714454127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:14424001922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-10 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:57 ip-10-0-64-11 mdr: 2016-02-01 11:25:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:57 ip-10-0-0-11 mdr: 2016-02-01 11:25:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792280666] [to:+12134017374] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067263935] [to:+14703335132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-10 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-21 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044379987] [to:+14242866870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-10 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809173] [to:18607709594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:58 ip-10-0-0-21 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:58 ip-10-0-64-11 mdr: 2016-02-01 11:25:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139354647] [to:14438100839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-10 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252220] [to:2348023527828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862147741] [to:+17097000621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003360202] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573728589] [to:+13479379375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-10 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106279574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008028] [to:14165772935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:25:59 ip-10-0-0-11 mdr: 2016-02-01 11:25:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842572] [to:14355139348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:25:59 ip-10-0-64-10 mdr: 2016-02-01 11:25:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095434] [to:17346731820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023730882] [to:+17027181501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788678200] [to:19788822189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142902043] [to:+16158433104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:14043968656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-10 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:00 ip-10-0-64-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:00 ip-10-0-0-10 mdr: 2016-02-01 11:26:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-11 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:14154817584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-21 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629776] [to:+447583011968] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-11 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-11 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-11 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045946178] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-11 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131354] [to:14129327924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-11 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146890] [to:17178873473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220855] [to:19172936955] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12183707933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:01 ip-10-0-0-10 mdr: 2016-02-01 11:26:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308088085] [to:13186769014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:01 ip-10-0-64-10 mdr: 2016-02-01 11:26:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409610132] [to:+15614915598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542538846] [to:+19543236887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362101996] [to:+13369382752] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062511668] [to:+14706734291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192380921] [to:+18572645656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044497875] [to:+12138733770] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-0-11 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975207] [to:13123950097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-11 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:19024123413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:02 ip-10-0-64-10 mdr: 2016-02-01 11:26:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-10 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133896440] [to:19158010900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:12055698936] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966751] [to:17703303381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:03 ip-10-0-64-10 mdr: 2016-02-01 11:26:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:03 ip-10-0-0-11 mdr: 2016-02-01 11:26:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-10 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381448] [to:18765079663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-10 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128740435] [to:+13479190549] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381706] [to:17315188702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-10 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254289392] [to:+17189627231] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-10 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093431028] [to:19512038667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:04 ip-10-0-64-11 mdr: 2016-02-01 11:26:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:04 ip-10-0-0-21 mdr: 2016-02-01 11:26:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062182747] [to:+14692175268] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146478361] [to:+14387925702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163191708] [to:+16475567571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473533547] [to:+13475185492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186001663] [to:+16125024161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184468793] [to:+12139213101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AA0201] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147109099] [to:+14388040878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:05 ip-10-0-64-11 mdr: 2016-02-01 11:26:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-11 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:05 ip-10-0-0-10 mdr: 2016-02-01 11:26:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-11 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-21 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331220] [to:+447851843577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-11 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123958] [to:1919846247366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-20 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:15852850590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:17169367983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:12897074820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-11 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-0-21 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451207710] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805376] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348781] [to:16782548582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13168544978] [to:16202003637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244676] [to:18047291917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991128] [to:13029324018] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:06 ip-10-0-64-10 mdr: 2016-02-01 11:26:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009212] [to:19545624104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334844] [to:17067511298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017881388] [to:+14158538485] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127397] [to:18143898575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863165180] [to:+13866013668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063433606] [to:+15068036463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-20 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:07 ip-10-0-0-11 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:07 ip-10-0-64-10 mdr: 2016-02-01 11:26:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18642140450] [to:18645402681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19052206285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658051830] [to:+15862488388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-20 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217199] [to:+447701324703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393453] [to:18108931974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797959] [to:12393008828] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-10 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:08 ip-10-0-64-11 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:08 ip-10-0-0-10 mdr: 2016-02-01 11:26:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818318368] [to:+16172139594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097349474] [to:+19093615674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672499426] [to:+18572329062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016970468] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122810395] [to:+14242836557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439747072] [to:+12139218741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743867272] [to:+19177248638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-11 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869423] [to:19084150575] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004486] [to:14167214482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-10 mdr: 2016-02-01 11:26:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:09 ip-10-0-0-11 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083614153] [to:+16198245546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:09 ip-10-0-64-10 mdr: 2016-02-01 11:26:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062698] [to:19143348690] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139352647] [to:18597795816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946301] [to:19048661915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14068689661] [to:+13476067010] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353329] [to:18438557015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AA0202] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450941] [to:13369187519] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-11 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731927] [to:17064216187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18134120589] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-11 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103243882] [to:+12109986452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:10 ip-10-0-64-10 mdr: 2016-02-01 11:26:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13309078602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:10 ip-10-0-0-10 mdr: 2016-02-01 11:26:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027193340] [to:+14153260948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12032434660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303736375] [to:+17733032887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-64-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-11 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042418944] [to:+13126310741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422859017] [to:+16174836072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812885] [to:15516893239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:11 ip-10-0-0-10 mdr: 2016-02-01 11:26:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525670288] [to:+14242797608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278088524] [to:+13052038590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-20 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786997] [to:12409387381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19736684073] [to:14124254237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:13055875611] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-11 mdr: 2016-02-01 11:26:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387773794] [to:+15146137083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:12 ip-10-0-64-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:12 ip-10-0-0-10 mdr: 2016-02-01 11:26:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165348] [to:17274922412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:18643634915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127558969] [to:+13478682003] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195778005] [to:+14199649394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619441] [to:19786064541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179704275] [to:+16172132273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015967905] [to:+15207278072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375771] [to:14172143047] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375771] [to:14172143047] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375771] [to:14172143047] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-21 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-21 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022555] [to:+15612408911] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050302] [to:19362404636] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:13 ip-10-0-64-10 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:13 ip-10-0-0-11 mdr: 2016-02-01 11:26:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289036] [to:12535909501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792969] [to:17163979324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543933194] [to:+19543142739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:14 ip-10-0-64-11 mdr: 2016-02-01 11:26:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:14 ip-10-0-0-10 mdr: 2016-02-01 11:26:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278448] [to:15625075912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13373479327] [to:13373225803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398348328] [to:+17864801703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:17248826557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197885742] [to:+12262403379] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029674] [to:15064616836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923040] [to:14383965804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-10 mdr: 2016-02-01 11:26:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024820195] [to:+17027476167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:15 ip-10-0-64-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-10 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:15 ip-10-0-0-11 mdr: 2016-02-01 11:26:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641184] [to:13475498377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650357] [to:14126390620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391284] [to:16023692359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-10 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055312682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-10 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316942426] [to:+12709849031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-20 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418334489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154397] [to:+17187479649] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449954] [to:19016145613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614663590] [to:+16615334560] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039867791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:16 ip-10-0-0-11 mdr: 2016-02-01 11:26:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:16 ip-10-0-64-11 mdr: 2016-02-01 11:26:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411710] [to:19053252177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862636] [to:+19783649547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252417] [to:13392361302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329741] [to:13479685696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-11 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253697875] [to:12062355408] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-11 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:17 ip-10-0-0-10 mdr: 2016-02-01 11:26:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:17 ip-10-0-64-10 mdr: 2016-02-01 11:26:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:13475123611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096874195] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173895833] [to:+14243363147] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:17705984984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409387381] [to:+13017786997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012391] [to:14186852886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488388] [to:18658051830] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-21 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-11 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:18 ip-10-0-0-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-11 mdr: 2016-02-01 11:26:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093412] [to:17047925389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:18 ip-10-0-64-10 mdr: 2016-02-01 11:26:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-10 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626007506] [to:+18102218495] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132102] [to:16033188478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084150575] [to:+17329869423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088610] [to:18132206950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-10 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:19 ip-10-0-64-11 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-10 mdr: 2016-02-01 11:26:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:19 ip-10-0-0-10 mdr: 2016-02-01 11:26:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863387] [to:17405259726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13213394715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369862240] [to:+13366450732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12896805376] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:19726842913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025270001] [to:+17029565719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850521] [to:13172080859] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203193291] [to:+12627776824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082494777] [to:+12086202698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850521] [to:13172080859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524545096] [to:+16513337048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042597875] [to:17808845956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819169] [to:+17248030939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-11 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672419786] [to:+12679525626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029072] [to:15066097812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:20 ip-10-0-64-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13863165180] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-10 mdr: 2016-02-01 11:26:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022185097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:20 ip-10-0-0-11 mdr: 2016-02-01 11:26:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645643] [to:14238395128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298006007] [to:16307507849] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613316872] [to:+14158403190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155303741] [to:+12672732627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272652283] [to:+14072161951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648280377] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364997] [to:+19142795307] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025270001] [to:+17029565719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-11 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-11 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786592] [to:12408764439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:21 ip-10-0-64-10 mdr: 2016-02-01 11:26:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133841582] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:21 ip-10-0-0-20 mdr: 2016-02-01 11:26:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609895457] [to:+12139352847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144589062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035175] [to:18329968224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542780841] [to:+19543543442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-10 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-10 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:22 ip-10-0-0-11 mdr: 2016-02-01 11:26:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:22 ip-10-0-64-11 mdr: 2016-02-01 11:26:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:13046767696] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-20 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682797] [to:14045287313] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388864423] [to:+14502325301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-20 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748531336] [to:+447418332648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BA0201] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-20 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447496680424] [to:+447418327091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-11 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126318663] [to:+12138739728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478376] [to:12526733390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286351] [to:12266003108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203521266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:23 ip-10-0-0-10 mdr: 2016-02-01 11:26:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046198047] [to:+18572402786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039890019] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236151111] [to:+19014449884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175316059] [to:+14242768374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712796950] [to:+13479788150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478820] [to:16122059939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012350] [to:16134017985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064911018] [to:+13065004503] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142682236] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17203521266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096874195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990189] [to:17064958790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15798888927] [to:+16477991209] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:24 ip-10-0-64-10 mdr: 2016-02-01 11:26:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409209976] [to:+14434530671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:24 ip-10-0-0-11 mdr: 2016-02-01 11:26:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-20 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028456] [to:17173815227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010201] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146102218] [to:+17736666378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:25 ip-10-0-0-10 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:25 ip-10-0-64-11 mdr: 2016-02-01 11:26:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039890019] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183318703] [to:+18133083388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040433] [to:+12536422940] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062355408] [to:+14253697875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853205220] [to:+17604743685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526172140] [to:+18724449271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500039A0301] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581286] [to:19048604414] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676897480] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526172140] [to:+18724449271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039A0302] -Feb 1 11:26:26 ip-10-0-0-11 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-11 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263483172] [to:+12267982255] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:26 ip-10-0-64-10 mdr: 2016-02-01 11:26:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:26 ip-10-0-0-10 mdr: 2016-02-01 11:26:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18024423436] [to:+13479804094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873299751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432530550] [to:+12894600995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403576753] [to:+18597777189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108425644] [to:+14437203762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526172140] [to:+18724449271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500039A0303] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739193033] [to:+19783619759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812885] [to:15516893239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004486] [to:14167214482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122581835] [to:+19122005903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:13233315778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379375] [to:17573728589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17315188702] [to:+16467381706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19842098930] [to:+19193072466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315848] [to:18503813311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12153004327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:27 ip-10-0-0-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-10 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204605952] [to:+19282975949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:27 ip-10-0-64-11 mdr: 2016-02-01 11:26:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130762] [to:19394881000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176696968] [to:+17348214645] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447900] [to:19713311010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127561] [to:14698777808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479685696] [to:+19177329741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278225] [to:14057793728] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278225] [to:14057793728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503488148] [to:+18503293155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568817] [to:13477278844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-21 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645402681] [to:+18642140450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:28 ip-10-0-64-11 mdr: 2016-02-01 11:26:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16309472394] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:28 ip-10-0-0-10 mdr: 2016-02-01 11:26:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19472827022] [to:17815216835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043207865] [to:+13204137203] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156892260] [to:+16157777126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692629376] [to:+12698838008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026199136] [to:+19027018438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022132420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108296397] [to:+13025852137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-10 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542022255] [to:+18327491368] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:29 ip-10-0-64-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:29 ip-10-0-0-11 mdr: 2016-02-01 11:26:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059343930] [to:+13054175905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-20 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297169] [to:+18325216348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193245503] [to:+16163190566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17158190902] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14195590544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704073829] [to:+18597777147] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326420509] [to:+18488634889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-10 mdr: 2016-02-01 11:26:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:30 ip-10-0-64-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19025770626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:30 ip-10-0-0-11 mdr: 2016-02-01 11:26:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475746696] [to:+16476913144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003340202] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003340201] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-11 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:31 ip-10-0-64-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042547696] [to:+19177374916] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574472406] [to:+17724940630] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-10 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027502] [to:14073106199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:31 ip-10-0-0-11 mdr: 2016-02-01 11:26:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030941] [to:17785336260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085955] [to:15149157671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515624] [to:17869914898] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:13475123611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324018218] [to:+19364174060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-10 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:32 ip-10-0-64-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-10 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:32 ip-10-0-0-11 mdr: 2016-02-01 11:26:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236707740] [to:+16265085139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444168] [to:12159062626] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162103660] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-20 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451207710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452914] [to:13365679474] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156495951] [to:12097647420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676897480] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-11 mdr: 2016-02-01 11:26:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318556346] [to:+12312663316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:33 ip-10-0-0-11 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:33 ip-10-0-64-10 mdr: 2016-02-01 11:26:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035718611] [to:+18572401512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14066501452] [to:+14064043494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19029400036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-0-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477298765] [to:+19735479631] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188267] [to:19545586508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:17183129707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334213] [to:19783993389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632542] [to:18456618200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865326] [to:12703631549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177954059] [to:18646718613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-11 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:34 ip-10-0-64-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611440] [to:18035079033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066916101] [to:+18572329230] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185679] [to:19174262447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563523008] [to:12675603725] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186002738] [to:+13859851732] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18049194391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372221292] [to:+18326503073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568827] [to:19373099108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008363] [to:19073513821] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029719586] [to:+17026747214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-10 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:35 ip-10-0-64-10 mdr: 2016-02-01 11:26:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:35 ip-10-0-0-11 mdr: 2016-02-01 11:26:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452914] [to:13365679474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:14797996551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062748] [to:16623802790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152443636] [to:+15122657511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027234238] [to:+13025957230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238758306] [to:+13126310746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-10 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:36 ip-10-0-64-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706144694] [to:+15703974557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:36 ip-10-0-0-11 mdr: 2016-02-01 11:26:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175047309] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789148197] [to:+13054175755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614730994] [to:+14156696764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498347] [to:18143122684] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269862] [to:15159884089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:12158590417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-21 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447522285397] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:12162242940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202217075] [to:19203443458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975052] [to:16316174037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264552219] [to:12269267661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588579] [to:13307702182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055411502] [to:+17278600552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:37 ip-10-0-64-10 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264552219] [to:12269267661] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-10 mdr: 2016-02-01 11:26:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602037658] [to:+12602777426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:37 ip-10-0-0-11 mdr: 2016-02-01 11:26:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346693] [to:19095369319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342292493] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273206087] [to:+18133207563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408183067] [to:+17409101972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15145766343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393783] [to:12104879042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393783] [to:12104879042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584577] [to:19046747206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:38 ip-10-0-64-11 mdr: 2016-02-01 11:26:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104494890] [to:+18102168070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-10 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:38 ip-10-0-0-11 mdr: 2016-02-01 11:26:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551748] [to:18624961554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-11 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196168034] [to:+13312087331] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026906] [to:19023201247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-11 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:39 ip-10-0-0-10 mdr: 2016-02-01 11:26:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043896227] [to:+12139359609] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-10 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:39 ip-10-0-64-11 mdr: 2016-02-01 11:26:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16122200837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862629810] [to:+17865457756] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899441219] [to:+19894550451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367570783] [to:+18729995172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638923] [to:19738613427] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396926889] [to:+12392190402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297129216] [to:+15104555234] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173815227] [to:+13478028456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541773] [to:16046442385] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19314345818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-21 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447570612175] [to:+447418336482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505310159] [to:+15817005248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15188440760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:40 ip-10-0-64-10 mdr: 2016-02-01 11:26:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-11 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090290] [to:+14156538151] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:40 ip-10-0-0-10 mdr: 2016-02-01 11:26:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:12158590417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702909432] [to:+15703973094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613489090] [to:+14158531042] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090290] [to:+14156538151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070031] [to:+12135876088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681622] [to:17057160234] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028786] [to:13472412972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12522190776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173066298] [to:+18572404170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-11 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:41 ip-10-0-64-10 mdr: 2016-02-01 11:26:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:41 ip-10-0-0-11 mdr: 2016-02-01 11:26:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322712554] [to:+18724005812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:17183129707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196513119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299420475] [to:+14422207925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266626195] [to:+13478999292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157305352] [to:+12678676380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206468421] [to:+17205996609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-10 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:13216890547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-0-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:42 ip-10-0-64-11 mdr: 2016-02-01 11:26:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888572] [to:18036148987] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656172316] [to:+12606355189] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606905610] [to:+19298413259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329169] [to:18123635386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034213445] [to:+19712611242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373225803] [to:+13373479327] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196513119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474931140] [to:16479641801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-11 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:43 ip-10-0-64-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-11 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016970468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:43 ip-10-0-0-10 mdr: 2016-02-01 11:26:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369777086] [to:+13369440728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086202698] [to:12082494777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993136] [to:17144005989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-10 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323437696] [to:+18323047984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:44 ip-10-0-0-11 mdr: 2016-02-01 11:26:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:44 ip-10-0-64-10 mdr: 2016-02-01 11:26:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190549] [to:14128740435] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:19103388475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400840] [to:19196338902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165200854] [to:19167572638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127561] [to:14698777808] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767715] [to:14195536470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:18152132158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:18152132158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239461152] [to:+13478685922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108931974] [to:+18103393453] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707861154] [to:+13479196258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634889] [to:17326420509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503077600] [to:+19709997013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-10 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:45 ip-10-0-64-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-11 mdr: 2016-02-01 11:26:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400809] [to:18504055550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-21 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447570612175] [to:+447418336482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:45 ip-10-0-0-10 mdr: 2016-02-01 11:26:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048381336] [to:+16784333348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175790] [to:12024255063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838008] [to:12692629376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216348] [to:12109297169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676897480] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:46 ip-10-0-64-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-11 mdr: 2016-02-01 11:26:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784483] [to:18038423347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:46 ip-10-0-0-10 mdr: 2016-02-01 11:26:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404356832] [to:+12136309241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17728008416] [to:+13217308747] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690991] [to:12197818741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308087405] [to:19032789030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163221144] [to:+14259845442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-10 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329741] [to:13479685696] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560566] [to:12544587930] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-11 mdr: 2016-02-01 11:26:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:47 ip-10-0-64-10 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:47 ip-10-0-0-11 mdr: 2016-02-01 11:26:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-11 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474781356] [to:+16466878757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-11 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852842648] [to:+15852824175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-11 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-11 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049267028] [to:+17048977631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065704281] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18604021072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:48 ip-10-0-0-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:13103072638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:48 ip-10-0-64-10 mdr: 2016-02-01 11:26:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095403898] [to:+14097771073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821741] [to:15857752325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663155] [to:18659355855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004966] [to:14145176250] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756282] [to:13106899802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304008749] [to:+17074033536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076424] [to:12604505593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:14163191708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334213] [to:19783993389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16128067695] [to:+16058887156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818101926] [to:+12819422425] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:49 ip-10-0-64-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393747] [to:19375092672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092024219] [to:+16096144305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-10 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:7:06080400430201] -Feb 1 11:26:49 ip-10-0-64-11 mdr: 2016-02-01 11:26:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989540] [to:18507608677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:49 ip-10-0-0-11 mdr: 2016-02-01 11:26:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029674] [to:15064616836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545935066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013508420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037177] [to:19283086389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357848] [to:17029180770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464923338] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564057056] [to:+16096144810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-10 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348580] [to:16786705624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-0-11 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-11 mdr: 2016-02-01 11:26:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:50 ip-10-0-64-10 mdr: 2016-02-01 11:26:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-21 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363147] [to:14173895833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044459094] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194920459] [to:+19199164629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422491] [to:14233779529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-11 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19032155434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695892716] [to:+13479192795] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:51 ip-10-0-0-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:51 ip-10-0-64-10 mdr: 2016-02-01 11:26:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135673] [to:19164166250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405505225] [to:+18133084860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14439293834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202731] [to:18045914043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092478299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049304933] [to:+18046242553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:19725893781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:52 ip-10-0-64-10 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152176788] [to:+14695323429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:52 ip-10-0-0-11 mdr: 2016-02-01 11:26:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329940684] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248826557] [to:+17723618329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488084930] [to:+19737562449] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231058] [to:16038520956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237424754] [to:+13108792193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601540] [to:14035895280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242498] [to:18045288068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-11 mdr: 2016-02-01 11:26:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065028969] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-11 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15194974453] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:53 ip-10-0-64-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-20 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:53 ip-10-0-0-10 mdr: 2016-02-01 11:26:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451227699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464928379] [to:+15097397656] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-20 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418323742] [to:+447894040800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853318205] [to:+15852824194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:14436682114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187680] [to:13472785485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-11 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737087823] [to:+12342227347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:54 ip-10-0-64-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-10 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:54 ip-10-0-0-11 mdr: 2016-02-01 11:26:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522089707] [to:+15612408139] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18193719630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053437429] [to:+19543639414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033571994] [to:+19035277174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104433536] [to:+14108745648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198023388] [to:+16825007463] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288686] [to:15206687386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424010] [to:14072885135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025782552] [to:+19027040180] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099721415] [to:+12134785757] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432504552] [to:+17813129294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010202] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389291216] [to:+14387922513] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080400430202] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193337763] [to:+12262410303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-20 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373099108] [to:+18582568827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022185097] [to:+19027030637] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040267] [to:19177245022] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:55 ip-10-0-64-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-10 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:55 ip-10-0-0-11 mdr: 2016-02-01 11:26:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163979324] [to:+17162792969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059717496] [to:+12262415964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479685696] [to:+19177329741] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18142186063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873217271] [to:+19172660125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922986] [to:15148046171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233055936] [to:+17864801610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19394881000] [to:+13479130762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-20 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-0-10 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:56 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333225] [to:13214607819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896288] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987453] [to:12315909322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575936354] [to:+18046244602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142320320] [to:+16612285517] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19023048632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013833976] [to:+19015621407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697360] [to:19892549622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375366478] [to:+18583604584] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538151] [to:15137090290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945660] [to:15147260115] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282609836] [to:+16465130255] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-20 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-21 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451227699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:57 ip-10-0-0-10 mdr: 2016-02-01 11:26:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049194391] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:57 ip-10-0-64-11 mdr: 2016-02-01 11:26:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17029719586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053240208] [to:+12264559310] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375366478] [to:+18583604584] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545624104] [to:+17542009212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009070] [to:17097691999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059013923] [to:12678158583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-0-10 mdr: 2016-02-01 11:26:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:58 ip-10-0-64-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613863274] [to:+13478967734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-11 mdr: 2016-02-01 11:26:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054643380] [to:+19142286615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482748] [to:16085186970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398280] [to:+12139218269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370644] [to:12162027440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-11 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-11 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545624104] [to:+17542009212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-11 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-0-11 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:26:59 ip-10-0-64-10 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094654] [to:19803282873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:26:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423739] [to:13607756338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149812] [to:19312005754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503193] [to:12017384541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-10 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179940490] [to:+13477970522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-0-10 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554129] [to:15022215348] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554129] [to:15022215348] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-10 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:00 ip-10-0-64-11 mdr: 2016-02-01 11:27:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537536683] [to:+12132371818] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185679] [to:19174262447] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-11 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877311777] [to:+15874097842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037177] [to:14808486827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805531] [to:13139104375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601540] [to:14035895280] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966443] [to:15742795600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663155] [to:18659355855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13172794985] [to:13179027151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:01 ip-10-0-64-10 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-10 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182617837] [to:+14242865513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:01 ip-10-0-0-11 mdr: 2016-02-01 11:27:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174271] [to:18046050029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364029] [to:+19298410249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613191640] [to:+18328025146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709019532] [to:+17702005032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16027544582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163161] [to:19198088680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163840] [to:17406846111] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335700] [to:15043440387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133274642] [to:+16136047641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-10 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-10 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:02 ip-10-0-0-21 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:02 ip-10-0-64-11 mdr: 2016-02-01 11:27:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181024] [to:12043803536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608032677] [to:+13473899540] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615737] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-20 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246418] [to:+447802893383] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076315473] [to:+13475186738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:14163191708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369531159] [to:+17866079456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-20 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246418] [to:+447802893383] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:03 ip-10-0-64-10 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026714248] [to:+19177730570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:03 ip-10-0-0-11 mdr: 2016-02-01 11:27:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196513119] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206253] [to:18135312390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295981] [to:14783962752] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049848687] [to:+14049001352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-20 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451246418] [to:+447802893383] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014816373] [to:+12405732003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108451230] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884572] [to:18502612759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027950872] [to:+12406857821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668074] [to:19375974182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160947] [to:14076558602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-10 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899855] [to:12525587305] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:04 ip-10-0-0-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:04 ip-10-0-64-11 mdr: 2016-02-01 11:27:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147206] [to:12489337191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093867] [to:18032107852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436714248] [to:+14072163773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737037] [to:15408204816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132086518] [to:+19292200153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405027314] [to:+13108792584] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153703181] [to:+19148609794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512473084] [to:+16513184520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122163402] [to:+19719998220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016970468] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478820] [to:15182217177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674377430] [to:12673422419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175755] [to:16789148197] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12536528210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:13218727803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337261] [to:15749033683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302699] [to:14128973950] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-20 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447522285397] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796785] [to:16183836300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602236616] [to:+12606337353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:05 ip-10-0-0-11 mdr: 2016-02-01 11:27:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-10 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:05 ip-10-0-64-11 mdr: 2016-02-01 11:27:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213263] [to:16017479200] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415050038] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-11 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149157671] [to:+14388085955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193848] [to:19078876096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175790] [to:15615029123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18282432619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939213] [to:12153136417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-10 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018185] [to:19312873101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-10 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383175] [to:15307905533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:06 ip-10-0-64-11 mdr: 2016-02-01 11:27:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817243694] [to:+16465470099] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:06 ip-10-0-0-11 mdr: 2016-02-01 11:27:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035648] [to:14123154480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048661653] [to:+19046948204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220981] [to:19152179465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138292191] [to:+13137235940] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232187162] [to:+17633015532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:16788489900] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623515222] [to:+12135295372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536490] [to:18706237193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-11 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819862330] [to:+15068040592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:07 ip-10-0-0-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-10 mdr: 2016-02-01 11:27:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178109402] [to:+15703973305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:07 ip-10-0-64-11 mdr: 2016-02-01 11:27:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203762] [to:14108425644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886877] [to:+16109105700] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190384] [to:12398723347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-10 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088816] [to:19705605534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242553] [to:18049304933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609559400] [to:18603094716] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-64-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-11 mdr: 2016-02-01 11:27:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:08 ip-10-0-0-10 mdr: 2016-02-01 11:27:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649999061] [to:18646089217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593172] [to:18032207402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057793728] [to:+15103278225] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-11 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:13204073284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791532] [to:17162922610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138614904] [to:17047749764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:09 ip-10-0-0-10 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17708824527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:09 ip-10-0-64-11 mdr: 2016-02-01 11:27:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-21 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15064400959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788792] [to:12035360010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788792] [to:12035360010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989540] [to:18507608677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005099] [to:19189498529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14388037792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027900951] [to:+19028018740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:10 ip-10-0-0-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044655729] [to:+16784345781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-11 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157179169] [to:+16467018519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:10 ip-10-0-64-10 mdr: 2016-02-01 11:27:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087700495] [to:+17322582284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204427920] [to:+13123001097] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323373548] [to:+18484824096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:12402647966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029190023] [to:+18572409002] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396452397] [to:+16513337606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:18047546224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:18047546224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023803428] [to:+19282855374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-10 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303095774] [to:+18328044618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:11 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:13043152167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:11 ip-10-0-64-11 mdr: 2016-02-01 11:27:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504451217] [to:+14086183927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982608] [to:+17073007321] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146289] [to:12012891006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819862330] [to:+15068040592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:16789951389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038A0202] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048189815] [to:+16474918976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047818900] [to:+16049019893] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545262633] [to:+19545195852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530005] [to:17064313002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:12 ip-10-0-64-10 mdr: 2016-02-01 11:27:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:12 ip-10-0-0-11 mdr: 2016-02-01 11:27:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083403009] [to:+15103358464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245313843] [to:+12138026982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:16464923338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-10 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-11 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207995] [to:15703903613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105880073] [to:+16318127622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551748] [to:18625961554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:17862906410] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-10 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026468] [to:17052098119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:13 ip-10-0-64-11 mdr: 2016-02-01 11:27:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723618329] [to:17248826557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:13 ip-10-0-0-11 mdr: 2016-02-01 11:27:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896236392] [to:+15103226865] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005591] [to:14173310493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-20 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14029139473] [to:+17865458642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] http://s.groupme.com/2avOqR] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263467593] [to:+12262437099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142069143] [to:19149436190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884448] [to:13144983948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551133] [to:16122200837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:13304959152] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-11 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:14 ip-10-0-0-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:14 ip-10-0-64-10 mdr: 2016-02-01 11:27:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047088260] [to:+12135297737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-21 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003F20201] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750166] [to:17174254404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876578] [to:16262973775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299778691] [to:+13866015224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734291] [to:17062511668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198290900] [to:+18193035374] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:15 ip-10-0-64-10 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-20 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003F20202] -Feb 1 11:27:15 ip-10-0-64-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314308339] [to:+18316122875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:15 ip-10-0-0-11 mdr: 2016-02-01 11:27:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985901] [to:+14318003617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796279] [to:17406180315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545586508] [to:+13475188267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198290900] [to:+18193035374] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697360] [to:19892549622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739799975] [to:+18133204632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:16 ip-10-0-0-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893295714] [to:+19895334990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-10 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19514263318] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:16 ip-10-0-64-11 mdr: 2016-02-01 11:27:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720155] [to:18026732388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025231133] [to:+13479379669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404378] [to:19102733383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-11 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-0-10 mdr: 2016-02-01 11:27:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12537536683] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-10 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:17 ip-10-0-64-11 mdr: 2016-02-01 11:27:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476937118] [to:+17185042396] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475746696] [to:+16476913144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050301] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407617] [to:16287776660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000431] [to:13063146605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303542] [to:13476157328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-21 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447414885630] [to:+447418327665] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003050302] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214607819] [to:+14076333225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295981] [to:14783962752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:18 ip-10-0-64-10 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567571] [to:14163191708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-11 mdr: 2016-02-01 11:27:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:18 ip-10-0-0-10 mdr: 2016-02-01 11:27:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921547] [to:17742895333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524451658] [to:+18133209359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402447579] [to:+13866018078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316072] [to:14196108784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198686562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:13045332512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050303] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684571] [to:15403096979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-11 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:19 ip-10-0-0-10 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419089313] [to:+17027181765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:19 ip-10-0-64-11 mdr: 2016-02-01 11:27:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207995] [to:15703903613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346104119] [to:+13479192542] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048988507] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459702] [to:19374891405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244602] [to:17575936354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679669914] [to:12155268108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:15043203229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15073206110] [to:+19172834535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327543] [to:12604491941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162436] [to:19842323703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168175812] [to:+16475039126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:20 ip-10-0-0-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693579997] [to:+12692808141] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-11 mdr: 2016-02-01 11:27:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:20 ip-10-0-64-10 mdr: 2016-02-01 11:27:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286906] [to:14348257529] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192706021] [to:+12262416902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:13307768302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-20 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475065272] [to:+15169260331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-10 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787705714] [to:+16784007781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:21 ip-10-0-64-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-21 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447414885630] [to:+447418327665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337233] [to:12602297927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:21 ip-10-0-0-11 mdr: 2016-02-01 11:27:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408139] [to:13522089707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-21 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622560] [to:+447534278774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197363] [to:18479975151] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607710725] [to:+13479803713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167170609] [to:+12313318378] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042444631] [to:+18185401199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193623891] [to:+12267981022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-10 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269401] [to:16063693424] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16825007463] [to:19198023388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503019610] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:22 ip-10-0-0-11 mdr: 2016-02-01 11:27:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17014006948] [to:+17012892179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:22 ip-10-0-64-10 mdr: 2016-02-01 11:27:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767250] [to:16143183895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691012] [to:16197910735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269401] [to:16063693424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049304933] [to:+18046242553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074914855] [to:+17739433766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309241] [to:15404356832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-21 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451227699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593149] [to:18144934882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:23 ip-10-0-0-11 mdr: 2016-02-01 11:27:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-10 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:23 ip-10-0-64-11 mdr: 2016-02-01 11:27:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049289659] [to:+17047505772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-11 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406133449] [to:+18572407641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092478] [to:17044332001] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199825112] [to:+12267983384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-11 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:24 ip-10-0-64-10 mdr: 2016-02-01 11:27:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16302046146] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:24 ip-10-0-0-10 mdr: 2016-02-01 11:27:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15133841582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136509] [to:13372447989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041944] [to:15068780281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12536528210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124419] [to:16107632993] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168044239] [to:+17162791215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15616922470] [to:+15613284051] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060712] [to:14703839517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402647966] [to:+14435299721] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364981] [to:13366622111] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:25 ip-10-0-0-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-11 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:25 ip-10-0-64-10 mdr: 2016-02-01 11:27:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123530] [to:+13025957232] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146252242] [to:+17074069038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087173971] [to:+13212700617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572244320] [to:+16475569493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406133449] [to:+18572407641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133490825] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:26 ip-10-0-64-10 mdr: 2016-02-01 11:27:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:26 ip-10-0-0-11 mdr: 2016-02-01 11:27:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564042292] [to:+13478968408] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15147003695] [to:15142665733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-20 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248826557] [to:+17723618329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785442523] [to:+17702005481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505156359] [to:+15873321995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052975345] [to:+17053009971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133812038] [to:+18133205618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-10 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412205075] [to:+15419182046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:27 ip-10-0-64-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:27 ip-10-0-0-11 mdr: 2016-02-01 11:27:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447459560229] [to:+16304893939] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207973] [to:16104686627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-20 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447414885630] [to:+447418327665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707603] [to:16317073925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049289659] [to:+17047505772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-10 mdr: 2016-02-01 11:27:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437202] [to:12896847646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:28 ip-10-0-64-10 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042288952] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:28 ip-10-0-0-11 mdr: 2016-02-01 11:27:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045317039] [to:+15103135957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177397] [to:17727776680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155303741] [to:+12672732627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389887617] [to:+14387925763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532272] [to:15126564669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334283] [to:19894951135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796553] [to:16624400204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014406081] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753386] [to:18606045947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015621416] [to:19015024957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792049680] [to:+19798885202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-10 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162436] [to:19842323703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-10 mdr: 2016-02-01 11:27:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:29 ip-10-0-64-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:29 ip-10-0-0-11 mdr: 2016-02-01 11:27:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679669914] [to:12155268108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018740] [to:19027900951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-21 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444269905] [to:+447451240706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146120381] [to:+14156887391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19514263318] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-10 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252217205] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:30 ip-10-0-0-21 mdr: 2016-02-01 11:27:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:30 ip-10-0-64-11 mdr: 2016-02-01 11:27:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-10 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:18042057659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-10 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-10 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082154] [to:15166478459] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-10 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16617480465] [to:18054150971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489106] [to:18506022580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-20 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432251896] [to:+447520627972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-10 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623127470] [to:+13475184207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:31 ip-10-0-0-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:31 ip-10-0-64-11 mdr: 2016-02-01 11:27:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450146] [to:13368487266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579292] [to:17148186056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329294196] [to:+12816035175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163804812] [to:+17166661210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336812] [to:17062002985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023996] [to:16613792206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-10 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737211] [to:14106246101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158594660] [to:12819352016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:32 ip-10-0-64-10 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:32 ip-10-0-0-11 mdr: 2016-02-01 11:27:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022708662] [to:+13025830477] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12189020363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129294] [to:18432504552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389866] [to:18145530889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962248] [to:13174560472] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141355] [to:16319727716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038080622] [to:+12404077580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-21 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697712] [to:16032614827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974393] [to:15702242113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-11 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742481394] [to:+13478993834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:33 ip-10-0-64-10 mdr: 2016-02-01 11:27:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218269] [to:13044398280] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:33 ip-10-0-0-10 mdr: 2016-02-01 11:27:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038204674] [to:+16465473958] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658575] [to:13476353733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-21 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609502] [to:+447518762310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062246706] [to:+16788164362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353068] [to:17408610532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472246] [to:16625676664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437072426] [to:+12138068433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-10 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198023388] [to:+16825007463] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:34 ip-10-0-0-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:34 ip-10-0-64-11 mdr: 2016-02-01 11:27:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004966] [to:14145176250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294294679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046692439] [to:+19142671441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396001315] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179027151] [to:+13172794985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14357300730] [to:+14357764913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193848] [to:19078876096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17158190902] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16627621955] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19133963319] [to:+14198430804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:15043203229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-10 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:35 ip-10-0-64-11 mdr: 2016-02-01 11:27:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:35 ip-10-0-0-11 mdr: 2016-02-01 11:27:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364981] [to:13366622111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15186694320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368241] [to:16206524683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-64-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198035912] [to:+12264570153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-10 mdr: 2016-02-01 11:27:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:36 ip-10-0-0-11 mdr: 2016-02-01 11:27:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023996] [to:16613792206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478007] [to:5517997030210] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-10 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856946260] [to:+15852822096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149569177] [to:+16149963761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17024098639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:37 ip-10-0-64-11 mdr: 2016-02-01 11:27:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:37 ip-10-0-0-10 mdr: 2016-02-01 11:27:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157181871] [to:+12134784858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176009694] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145686604] [to:+17097001534] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122462349] [to:+13473436992] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103495475] [to:+16106999386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196513119] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12132896288] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:38 ip-10-0-0-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609161] [to:12022501569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-11 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734535433] [to:19083423917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:38 ip-10-0-64-10 mdr: 2016-02-01 11:27:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18108451230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421654] [to:13304959152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133304980] [to:+16139098258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022464931] [to:+15713262406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046692439] [to:+19142671441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658575] [to:13476353733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13373421457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101195] [to:14035988962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431606] [to:12268202577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045529836] [to:+14043900073] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109652176] [to:+18327439651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-10 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:39 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:39 ip-10-0-64-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098298308] [to:+15103405418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703177088] [to:+15028041581] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-21 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-10 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607105579] [to:+13478028479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-64-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-10 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:40 ip-10-0-0-11 mdr: 2016-02-01 11:27:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895512166] [to:+19895697447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:19024719124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134708] [to:+13658001180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-21 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447910753125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517563691] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549928] [to:15133040175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+15103227611] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-10 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625075912] [to:+13106278448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309319715] [to:+18133315970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-10 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:41 ip-10-0-0-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123612] [to:15415305968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:41 ip-10-0-64-11 mdr: 2016-02-01 11:27:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009047] [to:18194127472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-21 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944695155] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177955106] [to:+13475184719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-21 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447736456651] [to:+447451209187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003EA0201] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:16786978792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309577811] [to:+12678676959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862368662] [to:+15204336271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133106143] [to:+19047584628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-0-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-10 mdr: 2016-02-01 11:27:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:42 ip-10-0-64-11 mdr: 2016-02-01 11:27:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040806] [to:12506448894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579210174] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282287470] [to:+14692055414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992984] [to:16476871881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-20 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239815] [to:+447508020511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127978366] [to:+19142815273] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592801] [to:19033140038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-10 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:43 ip-10-0-0-10 mdr: 2016-02-01 11:27:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:43 ip-10-0-64-11 mdr: 2016-02-01 11:27:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576327827] [to:+18572402483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415392850] [to:16047046313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15415392850] [to:16047046313] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785757] [to:16099721415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809036871] [to:+15874058821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085960675] [to:+19172751345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476937103] [to:50256043351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472014233] [to:19403019653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-10 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005558] [to:18163137130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:44 ip-10-0-64-11 mdr: 2016-02-01 11:27:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:44 ip-10-0-0-10 mdr: 2016-02-01 11:27:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783962752] [to:+12135295981] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095570] [to:12522853959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042989255] [to:+19292688349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038080622] [to:+17189628285] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12533270339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129274638] [to:17247577155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15867443723] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-21 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447736456651] [to:+447451209187] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003EA0202] -Feb 1 11:27:45 ip-10-0-0-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475456858] [to:+13024395388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-10 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:45 ip-10-0-0-11 mdr: 2016-02-01 11:27:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:45 ip-10-0-64-11 mdr: 2016-02-01 11:27:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413024] [to:13154867342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123652] [to:16155078165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783655901] [to:+14703336978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108829965] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345214860] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515782] [to:12392255608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282287470] [to:+14692055414] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039536] [to:15068880444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633262894] [to:+19417256412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093407] [to:17049742042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093407] [to:17049742042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852053454] [to:+15852823811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-10 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017479200] [to:+14056213263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:46 ip-10-0-64-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:46 ip-10-0-0-11 mdr: 2016-02-01 11:27:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060712] [to:14703839517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329230] [to:17066916101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252217205] [to:+12136349460] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-20 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208534] [to:+447847425782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146252242] [to:+17074069038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18433600367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021280] [to:19024329143] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377683] [to:18122398795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-21 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12546406059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-10 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156845] [to:19195922135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:47 ip-10-0-0-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:16135716675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:47 ip-10-0-64-11 mdr: 2016-02-01 11:27:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564042292] [to:+13478968408] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178620520] [to:+13479191626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596813275] [to:+14158532144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614938464] [to:+15172527856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-11 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:48 ip-10-0-64-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165770689] [to:+19298411216] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-11 mdr: 2016-02-01 11:27:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:48 ip-10-0-0-10 mdr: 2016-02-01 11:27:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-21 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946329649] [to:+447520670858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024804190] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12025173304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149131] [to:12762263638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220130] [to:19548290467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147778] [to:18138925613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023803428] [to:+19282855374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049575679] [to:+13478084279] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-0-10 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153005744] [to:+14153405570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:49 ip-10-0-64-11 mdr: 2016-02-01 11:27:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-11 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672499426] [to:+18572329062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479846] [to:19376701357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:13866977558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-11 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:19096428563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409209976] [to:+14434530671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-11 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042762] [to:12893858207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015224] [to:12299778691] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-21 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368296232] [to:+13369382412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:50 ip-10-0-0-10 mdr: 2016-02-01 11:27:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-11 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361704] [to:19122125395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:50 ip-10-0-64-10 mdr: 2016-02-01 11:27:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803201] [to:17863198700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18043105365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042895] [to:19023060788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803189770] [to:+19802097637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14435091400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:18025829439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163620] [to:12182320702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179695] [to:+13866012002] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-20 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808845956] [to:+16042597875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14016489649] [to:14018627648] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168289822] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014141265] [to:+17547774583] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-11 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673930756] [to:+18729997517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:51 ip-10-0-0-10 mdr: 2016-02-01 11:27:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135298692] [to:15104846566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:51 ip-10-0-64-10 mdr: 2016-02-01 11:27:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388037792] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201779] [to:17174223864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-10 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035787787] [to:+13478682970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198023388] [to:+16825007463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364077] [to:+17278603533] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14258765510] [to:+14253338921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132952555] [to:+17206235415] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-10 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162103660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13172794985] [to:13179027151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288479] [to:13476912996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:13472320748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194441327] [to:+16413165599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043142168] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:52 ip-10-0-64-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:52 ip-10-0-0-11 mdr: 2016-02-01 11:27:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746094] [to:19064502615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047979631] [to:+19014746339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784948644] [to:+13214062890] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370999] [to:18673357831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107880809] [to:+12105560260] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176687036] [to:14155963634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156845] [to:19195922135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15408946590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572641440] [to:+19148609444] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:53 ip-10-0-0-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-11 mdr: 2016-02-01 11:27:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:53 ip-10-0-64-10 mdr: 2016-02-01 11:27:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788155221] [to:+13123008669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026982] [to:14245313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-11 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-11 mdr: 2016-02-01 11:27:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500038E0201] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005257] [to:14058852558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:54 ip-10-0-0-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:54 ip-10-0-64-10 mdr: 2016-02-01 11:27:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433491] [to:15136048217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038E0202] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059061288] [to:+16056366104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376569] [to:16025290278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102732925] [to:+18046650368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016977729] [to:+17185212474] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029645974] [to:+17028294769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702909432] [to:+15703973094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076682517] [to:+14072163285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014077817] [to:+13475089681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195536470] [to:+14197767715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500038A0201] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792049680] [to:+19798885202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12319200675] [to:+12312663413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546624895] [to:+13053406709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142139710] [to:+14388086100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063437991] [to:+16474915324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108847864] [to:+19142061137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054796789] [to:+18133207695] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493073226] [to:+17027478716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187915462] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142076404] [to:+13369383203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:17603492208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013508420] [to:+12136946214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-10 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19257592737] [to:+19252382941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-10 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:55 ip-10-0-0-21 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451223039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:55 ip-10-0-64-11 mdr: 2016-02-01 11:27:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D90201] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705605534] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D90202] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026845060] [to:+19027043906] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14067688555] [to:+14062041933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155892845] [to:+12674140913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-10 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064789961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-10 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149096] [to:12108826246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:56 ip-10-0-0-21 mdr: 2016-02-01 11:27:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339384] [to:+447543193689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:56 ip-10-0-64-11 mdr: 2016-02-01 11:27:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388037792] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048977631] [to:18049267028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002340] [to:14044385211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167490] [to:17132057036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082030892] [to:+13093069441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049923540] [to:+12138028697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047546224] [to:+15406286065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14783529172] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939200] [to:13043122155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-11 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:57 ip-10-0-64-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:57 ip-10-0-0-10 mdr: 2016-02-01 11:27:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-10 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-10 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:58 ip-10-0-0-11 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063812730] [to:+15068036317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:58 ip-10-0-0-10 mdr: 2016-02-01 11:27:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802132] [to:16062727225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-10 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:58 ip-10-0-64-11 mdr: 2016-02-01 11:27:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436279287] [to:14438669659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104955232] [to:+13025958635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022505762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19257592737] [to:+19252382941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13176506467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251296] [to:13066902049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011249911163751] [to:+17604745424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-11 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251296] [to:13066902049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:27:59 ip-10-0-64-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288479] [to:17184155238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:27:59 ip-10-0-0-10 mdr: 2016-02-01 11:27:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491329] [to:15044621599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107737] [to:15179693923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193842] [to:16097603762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138614904] [to:17047749764] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311351] [to:12403549159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326199817] [to:+14158537773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-20 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451216945] [to:+447734065770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082605] [to:14783312518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732627] [to:17155303741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:00 ip-10-0-0-10 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-10 mdr: 2016-02-01 11:28:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:00 ip-10-0-64-11 mdr: 2016-02-01 11:28:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609519186] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388037792] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447843] [to:15034626016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478384391] [to:+16474965392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313278255] [to:+12313318533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783589] [to:17044504153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:01 ip-10-0-0-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554160] [to:14435717361] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314142285] [to:18022749973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-10 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:01 ip-10-0-64-11 mdr: 2016-02-01 11:28:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742795600] [to:+13478966443] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102326] [to:17053312810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:18108829965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15054404779] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375557] [to:963949158624] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076130738] [to:+14072162414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690724] [to:19127851957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007890] [to:14144601703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193564475] [to:+19199161438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-10 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-10 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549928] [to:15133040175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:02 ip-10-0-64-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024395388] [to:13475456858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323765] [to:16316035375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-10 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130030] [to:15055858366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-10 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572641440] [to:+19148609444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309882644] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:03 ip-10-0-64-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:03 ip-10-0-0-11 mdr: 2016-02-01 11:28:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072505] [to:19196419731] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12543018858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214024139] [to:+17864802886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062347] [to:17097432710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046340208] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-11 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049575679] [to:+13478084279] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148740359] [to:19145848248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:04 ip-10-0-64-10 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041836] [to:17055615864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-11 mdr: 2016-02-01 11:28:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502325408] [to:12263788864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:04 ip-10-0-0-10 mdr: 2016-02-01 11:28:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137071387] [to:16136024585] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13157495494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049527135] [to:+12048177753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576049513] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129990546] [to:+12138739137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035895280] [to:+12894601540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824175] [to:15852842648] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354528] [to:14126527470] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-10 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134714] [to:+16475569506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:05 ip-10-0-64-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:05 ip-10-0-0-11 mdr: 2016-02-01 11:28:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081665] [to:12253055663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685787] [to:14234261389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129990546] [to:+12138739137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642831004] [to:+13369382478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143063894] [to:+14694148345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032107852] [to:+19802093867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258953] [to:13146774117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311097] [to:+13479976354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555366] [to:15193284670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023183179] [to:+19027030714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:06 ip-10-0-64-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127733947] [to:+13614450272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673038477] [to:+14197767796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-10 mdr: 2016-02-01 11:28:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154019452] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:06 ip-10-0-0-11 mdr: 2016-02-01 11:28:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186738] [to:12076315473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096746933] [to:+16095434847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555351] [to:14233207549] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476618] [to:17027559179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174058054] [to:+15703973903] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673771866] [to:+17726177451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:17602695411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435357645] [to:+15122657511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:07 ip-10-0-64-11 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:07 ip-10-0-0-10 mdr: 2016-02-01 11:28:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17472559330] [to:+18188772681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009587] [to:12197893280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054665820] [to:+12262404728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856286948] [to:+18326505629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735163] [to:14782070165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540441] [to:15109048396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852221487] [to:+19172593703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-64-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:17575098255] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12042923984] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578481] [to:16202529753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-10 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:08 ip-10-0-0-11 mdr: 2016-02-01 11:28:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412809] [to:16624932472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488303215] [to:+13233207054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305963215] [to:+13477146198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472412972] [to:+12138028786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702242113] [to:+15703974393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249314792] [to:+17248032285] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147032221] [to:+19142067078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-20 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627972] [to:+447432251896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-64-10 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-11 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:09 ip-10-0-0-10 mdr: 2016-02-01 11:28:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147613] [to:19377681689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147778] [to:18138925613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364950] [to:12762522495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026732388] [to:+19172720155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022247964] [to:+15028049491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171826] [to:16313364013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:17606098464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786798072] [to:+17784024596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-10 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027003742] [to:19028741128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405973353] [to:+15406286240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:10 ip-10-0-64-11 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:10 ip-10-0-0-10 mdr: 2016-02-01 11:28:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812051149] [to:+12138739088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515370522] [to:+19176635955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:11 ip-10-0-0-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834931] [to:15622467963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-0-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193623891] [to:+12267981022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:11 ip-10-0-0-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057958130] [to:+12262411969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163235373] [to:+16163266438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027502] [to:14073106199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-11 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792193] [to:13237424754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:11 ip-10-0-64-10 mdr: 2016-02-01 11:28:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808692] [to:13852073453] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808692] [to:13852073453] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-11 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497000836] [to:17056472556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705762290] [to:+17206233466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166478459] [to:+15169082154] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317268332] [to:+16167948290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547678] [to:17406441440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547678] [to:17406441440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-21 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808141] [to:12693579997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144005989] [to:+13478993136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948204] [to:19048661653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525145689] [to:+15102549546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328341] [to:14077609680] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144810] [to:18564057056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785866877] [to:18706621510] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083277] [to:15022949799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-11 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:12 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:12 ip-10-0-64-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981339] [to:18019806738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047194] [to:16473605839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15052647892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143063894] [to:+14694148345] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-10 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404356832] [to:+12136309241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045529836] [to:+14043900073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-11 mdr: 2016-02-01 11:28:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207385] [to:15746126753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:13 ip-10-0-64-11 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893858207] [to:+12898042762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:13 ip-10-0-0-10 mdr: 2016-02-01 11:28:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188440760] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125021239] [to:17729404983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186738] [to:12076315473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16824722988] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324924977] [to:+15415392866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740386] [to:+17636560744] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095039862] [to:+14242839292] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144460471] [to:+18126709135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196407295] [to:+18193034470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192806] [to:14108458642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-10 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:14 ip-10-0-64-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938803] [to:19025530322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:14 ip-10-0-0-11 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048833038] [to:+13234834396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790512] [to:18143318250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179693923] [to:+17864107737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035494635] [to:+19298411148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-11 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:15 ip-10-0-64-10 mdr: 2016-02-01 11:28:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:15 ip-10-0-0-10 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127297] [to:12149527660] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12186468555] [to:+12092516208] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296916] [to:18143976180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253338341] [to:19099966667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15619215256] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388074952] [to:15148089604] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077739] [to:15064712559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-11 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-10 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:16 ip-10-0-0-11 mdr: 2016-02-01 11:28:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069469061] [to:14259039010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:16 ip-10-0-64-10 mdr: 2016-02-01 11:28:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033529851] [to:+15873323848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942464] [to:+16465138227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049203371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329795] [to:14012828697] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19733422211] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16058091058] [to:+12816034601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-20 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005686] [to:14707988393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088411] [to:18133055241] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035799] [to:17243221101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-10 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130520] [to:+14043411787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-10 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12107149096] [to:12108826246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530083] [to:12098986817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:17 ip-10-0-64-11 mdr: 2016-02-01 11:28:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:17 ip-10-0-0-11 mdr: 2016-02-01 11:28:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314647718] [to:+13475184780] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081892] [to:18138027253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174759628] [to:+16198109911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193564475] [to:+19199161438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-21 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447704045859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168949] [to:17742804943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642015532] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681231] [to:19058189664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:18 ip-10-0-0-10 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:18 ip-10-0-64-11 mdr: 2016-02-01 11:28:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18104989467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12144932374] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058887156] [to:16128067695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869481] [to:15182292310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-11 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-11 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078876096] [to:+13479193848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:19 ip-10-0-64-10 mdr: 2016-02-01 11:28:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085201857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:19 ip-10-0-0-10 mdr: 2016-02-01 11:28:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174696627] [to:+15672057048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086026634] [to:+12087574177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144368] [to:19546622656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975160] [to:18435322617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625426733] [to:+13477989352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179806] [to:12024093025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981339] [to:18019806738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897398] [to:16138476490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247930] [to:12488949079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-20 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14064789961] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-64-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178416647] [to:+18173634801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368487266] [to:+13366450146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:20 ip-10-0-0-10 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176606304] [to:+19739638902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146588] [to:19037300135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854920077] [to:+12134547190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594026107] [to:+15108838487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329459] [to:19049030166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940817] [to:15146910806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072700] [to:15146475649] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-11 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291492] [to:17576049513] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076558602] [to:+14072160947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:21 ip-10-0-64-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058821] [to:17809036871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:21 ip-10-0-0-10 mdr: 2016-02-01 11:28:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175888] [to:19192227229] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145176250] [to:+14146004966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439442135] [to:+19193072231] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851732] [to:17186002738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364013] [to:+19703156055] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174963167] [to:+16367547438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-11 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715739] [to:14137994938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109048396] [to:+15102540441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:22 ip-10-0-0-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:22 ip-10-0-64-10 mdr: 2016-02-01 11:28:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048408719] [to:+13476672338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12144932374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993297] [to:14148377645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407481874] [to:+17036466469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:12022705792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-10 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:23 ip-10-0-0-20 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330519] [to:+447522285397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:23 ip-10-0-64-10 mdr: 2016-02-01 11:28:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456651037] [to:+18455797452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950112] [to:18058279965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405304] [to:15307365882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963836] [to:16472283356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364609131] [to:+13366452483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179610] [to:12027609216] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142548253] [to:+14123464751] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17257778741] [to:+17344365855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144601703] [to:+14144007890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:24 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:24 ip-10-0-0-10 mdr: 2016-02-01 11:28:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145149183] [to:+15172527299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017204070] [to:+12132950700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044621599] [to:+18639491329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094242] [to:14087171454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062598202] [to:+19027043651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-10 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-10 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179027151] [to:+13172794985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18574178948] [to:+18572192656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:25 ip-10-0-64-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:25 ip-10-0-0-11 mdr: 2016-02-01 11:28:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598277496] [to:+15592232334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040674] [to:15024578717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605400052] [to:+13476762356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-10 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503019610] [to:+17784033665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480570] [to:1233272185497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:26 ip-10-0-0-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19027192539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-10 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:26 ip-10-0-64-11 mdr: 2016-02-01 11:28:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605400052] [to:+13476762356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147636] [to:18562837756] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749524] [to:13212896120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978822] [to:5511983604621] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143842537] [to:+17185212524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821594] [to:13157480347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989267] [to:16784998300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025868417] [to:+14804391124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067503] [to:15185702686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-10 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013508420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-11 mdr: 2016-02-01 11:28:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:27 ip-10-0-64-10 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505306263] [to:+18506314686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:27 ip-10-0-0-11 mdr: 2016-02-01 11:28:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259799] [to:17138512279] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259799] [to:17138512279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259799] [to:17138512279] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382566] [to:17044023715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056103687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067750351] [to:+12532446082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040592] [to:15819862330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076315473] [to:+13475186738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538170] [to:17372472315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:28 ip-10-0-64-10 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16034796330] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-11 mdr: 2016-02-01 11:28:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404063593] [to:+18046244060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:28 ip-10-0-0-20 mdr: 2016-02-01 11:28:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208576] [to:+447740306371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169844029] [to:+17162791367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926767] [to:13527772107] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-21 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068142381] [to:+15106717363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314096230] [to:+13477865527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381424] [to:13366814534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540021] [to:15303540953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783823085] [to:+14043412757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767715] [to:14195536470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574695529] [to:+13055017423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154129891] [to:+17748557223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:29 ip-10-0-0-10 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777103] [to:16158532674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:29 ip-10-0-64-11 mdr: 2016-02-01 11:28:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104989467] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-11 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005829] [to:17806952723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12622034067] [to:+17812773973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379911] [to:16204401894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388074952] [to:15148089604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023163] [to:12294127667] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023163] [to:12294127667] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023163] [to:12294127667] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178995249] [to:+19282974329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-0-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476872985] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-11 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333225] [to:13214607819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:30 ip-10-0-64-10 mdr: 2016-02-01 11:28:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401390] [to:15086620626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732580] [to:12565576118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-10 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171228] [to:+13478684094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-10 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17855778436] [to:+13478968975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-10 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108693204] [to:+18108527502] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-10 mdr: 2016-02-01 11:28:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736570432] [to:+13123009789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:31 ip-10-0-0-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:31 ip-10-0-64-11 mdr: 2016-02-01 11:28:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432822] [to:16412028738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364672492] [to:+13367018085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732920740] [to:+14144006322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774019] [to:17187497870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783529172] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15062298368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056205] [to:19023002949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-10 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049136120] [to:+18585199132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-11 mdr: 2016-02-01 11:28:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097436515] [to:+17097010524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:32 ip-10-0-0-10 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981022] [to:15193623891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:32 ip-10-0-64-11 mdr: 2016-02-01 11:28:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809773356] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852852906] [to:+15852822426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427797] [to:15852870364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477703906] [to:+16474919131] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156300348] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126397378] [to:+17126427985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681231] [to:19059667469] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048179930] [to:12049558605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603220526] [to:+16316141113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042762] [to:12893858207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-11 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-11 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148887578] [to:17158190902] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-0-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:33 ip-10-0-64-10 mdr: 2016-02-01 11:28:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797827] [to:16068310090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138081659] [to:+18133244490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174457890] [to:+19149798242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384011616] [to:+14388086192] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-10 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313337083] [to:+19142815844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-20 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206757] [to:+447720605600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624971807] [to:+13214068919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:34 ip-10-0-64-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085992911] [to:+12087574730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-11 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:34 ip-10-0-0-10 mdr: 2016-02-01 11:28:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-10 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-11 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764748] [to:15012535258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-10 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-10 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-11 mdr: 2016-02-01 11:28:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-10 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:35 ip-10-0-0-20 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447470428051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:35 ip-10-0-64-11 mdr: 2016-02-01 11:28:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154231] [to:+12134017684] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893555213] [to:+12898047354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005558] [to:18163137130] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039151362] [to:+15874040848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084760] [to:14036909651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968344] [to:19317435646] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732920740] [to:+14144006322] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568555] [to:201020491245] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502994] [to:13107349795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569191042] [to:+16465139933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-11 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:36 ip-10-0-64-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:36 ip-10-0-0-10 mdr: 2016-02-01 11:28:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12604461219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174965420] [to:+16413165184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755485] [to:15702847104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725582] [to:18105774599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042526677] [to:+19047587592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003A20201] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435043988] [to:+14437202958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062511668] [to:+14706734291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023873492] [to:12155124308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903668] [to:13475530835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076333225] [to:13214607819] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042526677] [to:+19047587592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003A20202] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314686] [to:18505306263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:37 ip-10-0-0-10 mdr: 2016-02-01 11:28:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845380014] [to:+13473438874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-11 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:37 ip-10-0-64-10 mdr: 2016-02-01 11:28:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084570304] [to:+14153269665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17175047309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098899] [to:19172041998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064714174] [to:+14694148062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163478683] [to:+18327491580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032174414] [to:+12138619172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-20 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608608] [to:+447858936674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186852886] [to:+15817005184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:19123419378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:38 ip-10-0-64-10 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954152] [to:18566566553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:38 ip-10-0-0-11 mdr: 2016-02-01 11:28:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19737278708] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15128873786] [to:+13024000599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236818] [to:19259974900] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-64-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931070] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605539] [to:16235521837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-10 mdr: 2016-02-01 11:28:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:39 ip-10-0-0-11 mdr: 2016-02-01 11:28:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004423] [to:15053929391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178618592] [to:16035455646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136253174] [to:+17203867062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004277] [to:15056103687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004423] [to:15053929391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004423] [to:15053929391] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178022133] [to:+17604743609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:17174058054] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013316511] [to:+17604745791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178022133] [to:+17604743609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-20 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447956527123] [to:+447451235973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-20 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:40 ip-10-0-0-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-10 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:40 ip-10-0-64-11 mdr: 2016-02-01 11:28:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-21 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520670256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652789234] [to:+12135760810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-10 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325947119] [to:+14155212277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-10 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213263] [to:16017479200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:41 ip-10-0-0-11 mdr: 2016-02-01 11:28:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143803337] [to:+14146007646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:41 ip-10-0-64-11 mdr: 2016-02-01 11:28:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622473730] [to:+12139352131] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167490] [to:17132057036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054100129] [to:+18054202886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693579997] [to:+12692808141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:13342357656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336524] [to:17066339616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040410] [to:16094960816] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18604021072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033665] [to:12503019610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853517422] [to:+15852821843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313278255] [to:+12313318533] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126950609] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-21 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-11 mdr: 2016-02-01 11:28:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:42 ip-10-0-0-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:42 ip-10-0-64-10 mdr: 2016-02-01 11:28:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152516277] [to:+12678444044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362794982] [to:+13369440259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186738] [to:12076315473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677779] [to:14134261043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607043603] [to:+12602327577] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513870053] [to:+18638556650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162414] [to:14076130738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137706341] [to:+18133202057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:17069960278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134235752] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16026158922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617827] [to:12707760103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725847150] [to:+17727668489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035058035] [to:+16034138381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-0-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-10 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966443] [to:15742795600] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:14242880431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:43 ip-10-0-64-11 mdr: 2016-02-01 11:28:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227611] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160307] [to:14072426822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227476] [to:14847889760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430804] [to:19133963319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-21 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789518913] [to:+14049001064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142665733] [to:+15147003695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123612] [to:15415305968] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132444895] [to:+17193538227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812694] [to:14237180592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:13863363098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-10 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137850753] [to:+18133201485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-10 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:17542425445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:44 ip-10-0-0-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203738022] [to:16614745420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:44 ip-10-0-64-11 mdr: 2016-02-01 11:28:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012891006] [to:+19738146289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623928433] [to:+12313778516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12628086166] [to:+12627778062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183927] [to:16504451217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178176041] [to:+13474340108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033089910] [to:+18033050193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812694] [to:14237180592] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14102624024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892120] [to:13314250013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892120] [to:13314250013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099966667] [to:+14253338341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952699] [to:+13069932530] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387639] [to:13234457589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-11 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:45 ip-10-0-0-10 mdr: 2016-02-01 11:28:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095768089] [to:+19093431981] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:45 ip-10-0-64-10 mdr: 2016-02-01 11:28:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774919] [to:17326407070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-10 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-10 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874108064] [to:14038361099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160816] [to:14077155727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785371] [to:+19148468592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:46 ip-10-0-64-10 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:46 ip-10-0-0-11 mdr: 2016-02-01 11:28:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:14165298807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107475980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135590496] [to:+19729470917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739302] [to:14846618521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-11 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-11 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19493712364] [to:+14074424491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187280416] [to:+18133209932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663376] [to:16152080403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362281211] [to:+15103131083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077739] [to:15064712559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551748] [to:18625961554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:47 ip-10-0-0-11 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:47 ip-10-0-64-10 mdr: 2016-02-01 11:28:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12194337971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070984] [to:12602436794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-10 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730322] [to:15187767342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482172618] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092161533] [to:+15096395944] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498310] [to:17177138456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236707740] [to:+16265085139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-10 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157495494] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:48 ip-10-0-64-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:48 ip-10-0-0-11 mdr: 2016-02-01 11:28:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019991] [to:16716880559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977535] [to:15705165796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335249] [to:17063990900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199132] [to:17049136120] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819862330] [to:+15068040592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692026313] [to:18063007598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555366] [to:15193284670] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14797741695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127851957] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162414] [to:14076130738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304019873] [to:+12342315978] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:49 ip-10-0-64-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-11 mdr: 2016-02-01 11:28:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:49 ip-10-0-0-10 mdr: 2016-02-01 11:28:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-10 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714448152] [to:15412104895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023060788] [to:+19027042895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12074587759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557223] [to:13154129891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-10 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-11 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671927] [to:+13479862076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:50 ip-10-0-0-10 mdr: 2016-02-01 11:28:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:50 ip-10-0-64-11 mdr: 2016-02-01 11:28:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604021072] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075526] [to:16152891896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605388049] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476872985] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12135455770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020351] [to:19895338768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774777] [to:14157064748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405634] [to:17652257279] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799188] [to:15184889975] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098899] [to:19172041998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846032] [to:14235194164] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-64-11 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18139665170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053952020] [to:+12262410586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166460] [to:15853694791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:51 ip-10-0-0-10 mdr: 2016-02-01 11:28:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123202835] [to:+13122754316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17023430844] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099260] [to:16133634204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974379] [to:14804538207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-11 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:52 ip-10-0-0-11 mdr: 2016-02-01 11:28:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022771] [to:+17604749746] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003860201] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:52 ip-10-0-64-10 mdr: 2016-02-01 11:28:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-21 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997013] [to:18503077600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788018] [to:19102629707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:17787621895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-10 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269244234] [to:+16164200425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-64-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-20 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196513119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-11 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:53 ip-10-0-0-10 mdr: 2016-02-01 11:28:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693016779] [to:13187623898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:12503548957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:19047316314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015056] [to:19102794841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043494] [to:14066501452] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325944756] [to:+18322463994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064190959] [to:+14256789406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167490] [to:17132057036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-10 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:54 ip-10-0-0-11 mdr: 2016-02-01 11:28:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-11 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335194] [to:16093358592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:54 ip-10-0-64-10 mdr: 2016-02-01 11:28:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097284240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286667] [to:13109367219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16026158922] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333348] [to:14048381336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247577155] [to:+14129274638] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606045947] [to:+17864753386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406064202] [to:+13017786061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085255395] [to:+15085569826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16058091058] [to:+17016454136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436009715] [to:+14435835239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316174037] [to:+16313975052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133040175] [to:+15102549928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725238375] [to:+12315987289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899441219] [to:+19894550451] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653047780] [to:+18653473101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036148987] [to:+18438888572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049318274] [to:+13474863548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562969513] [to:+13479068892] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048944477] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372878807] [to:+13478967848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12287316472] [to:+15089166030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854693634] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048120439] [to:+17133735771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617970888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028680] [to:12896004396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038200] [to:+14158536166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:55 ip-10-0-64-11 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:55 ip-10-0-0-10 mdr: 2016-02-01 11:28:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023914181] [to:+12678676182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624736943] [to:15623613324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348421] [to:+14049002350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255941909] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488949079] [to:+13134247930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-21 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:GoSkippy] [to:+447451200314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479689] [to:13344259373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016974147] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823243] [to:15857430874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:12404470102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011103] [to:15144169718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-10 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177199788] [to:+19172669055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:56 ip-10-0-64-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:56 ip-10-0-0-11 mdr: 2016-02-01 11:28:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803189770] [to:+19802097637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511076] [to:+19027058406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005718] [to:14048255123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085201857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19045081108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14705355374] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174058054] [to:+15703973903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309078602] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-10 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:57 ip-10-0-64-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952699] [to:+13069932530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:57 ip-10-0-0-11 mdr: 2016-02-01 11:28:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026732388] [to:+19172720155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:19168800419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502334398] [to:18432092962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188210439] [to:+16465319679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19797392051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032285] [to:17249314792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:58 ip-10-0-64-11 mdr: 2016-02-01 11:28:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-11 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:58 ip-10-0-0-10 mdr: 2016-02-01 11:28:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247866] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131083] [to:19362281211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313337128] [to:+15412488753] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065242778] [to:+15068037716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004783] [to:19025746623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305345] [to:15187915462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17736092803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393008828] [to:+14242797959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-11 mdr: 2016-02-01 11:28:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:28:59 ip-10-0-0-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-11 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:28:59 ip-10-0-64-10 mdr: 2016-02-01 11:28:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029561277] [to:+19027043619] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546786783] [to:13232895562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020351] [to:19895338768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148392168] [to:+14146007318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149724721] [to:+14696433992] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108847864] [to:+19142061137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847163392] [to:+16109105933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742873039] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550338] [to:16039537365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286667] [to:13109367219] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171228] [to:+13478684094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:00 ip-10-0-0-10 mdr: 2016-02-01 11:29:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477561860] [to:13127351553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:00 ip-10-0-64-11 mdr: 2016-02-01 11:29:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118613301999196] [to:+14703336048] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337048] [to:19524545096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160307] [to:14072426822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:13865380082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366814534] [to:+13369381424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:13045332512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708595] [to:12163722319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-11 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896805069] [to:+17059999312] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789533] [to:15184194506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-11 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096329095] [to:+16474915957] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:01 ip-10-0-0-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-11 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:01 ip-10-0-64-10 mdr: 2016-02-01 11:29:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977535] [to:15705165796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-10 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392018604] [to:+12399000509] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064712559] [to:+14388077739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-10 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725253] [to:15174043498] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-10 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-10 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:02 ip-10-0-64-11 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-11 mdr: 2016-02-01 11:29:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:02 ip-10-0-0-10 mdr: 2016-02-01 11:29:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069960278] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393008828] [to:+14242797959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069653] [to:13474417670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576049513] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073945560] [to:+17205997588] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12073338532] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641290] [to:12098556947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:03 ip-10-0-0-10 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:03 ip-10-0-64-10 mdr: 2016-02-01 11:29:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622922] [to:18032809871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244967] [to:14127370126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672338] [to:13048408719] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998945] [to:18149337292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-11 mdr: 2016-02-01 11:29:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-10 mdr: 2016-02-01 11:29:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-0-11 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093182] [to:16133141720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089486] [to:19172506477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:04 ip-10-0-64-10 mdr: 2016-02-01 11:29:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338560] [to:+16475569546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174712152] [to:+15169082274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347218964] [to:+19492981228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472602765] [to:+19176634395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254289392] [to:+17189627231] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438630307] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470861] [to:13109715481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:13014078680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675874] [to:17069136310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145566092] [to:+16149180302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345226] [to:18436271913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:05 ip-10-0-0-11 mdr: 2016-02-01 11:29:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697071] [to:12398495013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:05 ip-10-0-64-10 mdr: 2016-02-01 11:29:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:14849196948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595725516] [to:+14153405895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135980577] [to:+15178615764] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436229] [to:18145944170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-21 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451226017] [to:+447470947713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16139170441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126053] [to:16133227032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193099753] [to:+13859851233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-11 mdr: 2016-02-01 11:29:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182037669] [to:+18185401965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:06 ip-10-0-64-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:06 ip-10-0-0-10 mdr: 2016-02-01 11:29:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:18025829439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599635567] [to:+13477866264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-10 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065934264] [to:+16178634607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182037669] [to:+18185401965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149098899] [to:19172041998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265641] [to:16016696727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-10 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:18458094954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:07 ip-10-0-64-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154019452] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:07 ip-10-0-0-11 mdr: 2016-02-01 11:29:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599635567] [to:+13477866264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001503] [to:+13479067535] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812846] [to:12408388023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708334820] [to:+13476678173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15798888927] [to:+16477991209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405634] [to:17656564556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127148273] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733931437] [to:+18622278818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800066] [to:15754418638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986913] [to:14043974998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043085429] [to:+18285486092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:16156557194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139177237] [to:+16136047988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:08 ip-10-0-0-10 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-10 mdr: 2016-02-01 11:29:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12566031480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:08 ip-10-0-64-11 mdr: 2016-02-01 11:29:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314859] [to:18503244080] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839629] [to:15136673760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796538] [to:14346609898] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148984809] [to:+14387940621] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064712559] [to:+14388077739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387633275] [to:+14387928127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892849557] [to:+19895334568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003090202] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-11 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093427411] [to:+12677938561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723241880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484495] [to:+12139353295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:09 ip-10-0-0-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777189] [to:17403576753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-11 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:13096608266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:09 ip-10-0-64-10 mdr: 2016-02-01 11:29:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-10 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346374407] [to:+15204333895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500034C0201] -Feb 1 11:29:10 ip-10-0-64-11 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016659] [to:13869162455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:12048944477] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587172] [to:14405376966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-10 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317964581] [to:+15167349578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:10 ip-10-0-0-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-11 mdr: 2016-02-01 11:29:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:10 ip-10-0-64-11 mdr: 2016-02-01 11:29:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:18458094954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199835222] [to:18154400534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346374407] [to:+15204333895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500034C0202] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171409] [to:+12136300847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003510202] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-20 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CF0201] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19126950609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325947119] [to:+14155212277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097252104] [to:+17097001597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003510201] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13109246184] [to:18189138140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786297] [to:50231177733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659786] [to:12072564516] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317964581] [to:+15167349578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836747] [to:14237155565] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894342012] [to:+12892755684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076060] [to:5533988572523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416619002] [to:+19412642431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:13364058520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491903] [to:18636189968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-64-10 mdr: 2016-02-01 11:29:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:17069960278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-11 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:11 ip-10-0-0-10 mdr: 2016-02-01 11:29:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853056510] [to:+14153161854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952699] [to:+13069932530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502334398] [to:18436076107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502304601] [to:+14388077244] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:15856427620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077293971] [to:+17864803208] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201101] [to:+18583603749] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334844] [to:17067511298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568405] [to:+12342314708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033050193] [to:18033089910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163536686] [to:+16466998274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126053] [to:16133227032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:12 ip-10-0-64-10 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-21 mdr: 2016-02-01 11:29:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CF0202] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086490] [to:13146448014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:12 ip-10-0-0-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178176041] [to:+13474340108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502304601] [to:+14388077244] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126527470] [to:+14125354528] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129834491] [to:+17812621969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077739] [to:15064712559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-10 mdr: 2016-02-01 11:29:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:13 ip-10-0-64-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:13 ip-10-0-0-11 mdr: 2016-02-01 11:29:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028241947] [to:+16474952845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347218964] [to:+19492981228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300885] [to:12023416472] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143333051] [to:+19492981264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865401496] [to:+19177085907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155610765] [to:+15852821713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993085] [to:17542448706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925733] [to:13065377394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502816981] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792452178] [to:+18724008386] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-11 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283187733] [to:+19286605940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:14 ip-10-0-0-11 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550542] [to:12608945319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:14 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893858207] [to:+12898042762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136332885] [to:+16042652707] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-21 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338185] [to:+447999421825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615685021] [to:+15612319612] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-20 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790385] [to:15854693634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132238624] [to:+17053028840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214607819] [to:+14076333225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714448152] [to:15417257686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106279214] [to:+12135297293] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17193878243] [to:+17196290048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047567941] [to:+14242839839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338895] [to:+17182558655] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705165796] [to:+15703977535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132238624] [to:+17053028840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:15 ip-10-0-0-10 mdr: 2016-02-01 11:29:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595835673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:15 ip-10-0-64-11 mdr: 2016-02-01 11:29:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12348172412] [to:+18133315970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958275] [to:18287295122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097709277] [to:+17097005119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475530835] [to:+13476903668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-11 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808141] [to:12693579997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:16 ip-10-0-64-10 mdr: 2016-02-01 11:29:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:16 ip-10-0-0-10 mdr: 2016-02-01 11:29:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-20 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447522285397] [to:+447418330519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731039] [to:17067660461] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050545] [to:17808823374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404138] [to:15109278293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14422374710] [to:+19196504184] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15864398719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975052] [to:16316174037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040547] [to:+14153260974] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896872201] [to:+12898047250] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538150] [to:12405204809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-10 mdr: 2016-02-01 11:29:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249314792] [to:+17248032285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136013928] [to:+16136047811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220677] [to:+19785663152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:17 ip-10-0-0-10 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:17 ip-10-0-64-11 mdr: 2016-02-01 11:29:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481238] [to:16098515901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703303381] [to:+14045966751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136041932] [to:15198071012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995740] [to:18649215692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358008] [to:13309574959] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-20 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193284670] [to:+12264555366] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298879] [to:12147333993] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427797] [to:15856941275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169485908] [to:+17162792064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:18 ip-10-0-0-11 mdr: 2016-02-01 11:29:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:18 ip-10-0-64-10 mdr: 2016-02-01 11:29:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:19096783982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946581] [to:12523676321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856087277] [to:+18133244097] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15128873821] [to:+16475569506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16785789623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493580336] [to:+16474915998] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:13348641109] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022185097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-64-10 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129515177] [to:+18038519647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:19 ip-10-0-0-11 mdr: 2016-02-01 11:29:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304361] [to:17542643208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652782832] [to:+14243360646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403576753] [to:+18597777189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573341715] [to:+17185048968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046340208] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789951389] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304361] [to:17542643208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868176] [to:17752920436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164320057] [to:+14122301176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133551933] [to:+18133202792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-11 mdr: 2016-02-01 11:29:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:20 ip-10-0-0-11 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:20 ip-10-0-64-10 mdr: 2016-02-01 11:29:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053258893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027541061] [to:+19027021784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912440] [to:15062297878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023041785] [to:+19028019314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047075385] [to:+19199162205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13024804190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-21 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447520670256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006733] [to:19702607392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227486] [to:19109188504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545624104] [to:+17542009212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069136310] [to:+17185675874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134311] [to:16033806579] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314946231] [to:+17027474331] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068919] [to:16624971807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+19148291851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088643319] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297260313] [to:+13217309641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085858325] [to:+12087630304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:21 ip-10-0-64-10 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:17044497875] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:21 ip-10-0-0-11 mdr: 2016-02-01 11:29:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102326] [to:17053312810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555366] [to:15193284670] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035522684] [to:+13477690724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069960278] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088411] [to:18133055241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:16159813496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171228] [to:+13478684094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:22 ip-10-0-64-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-10 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:22 ip-10-0-0-11 mdr: 2016-02-01 11:29:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764748] [to:15012535258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:13235186842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024578717] [to:+15028040674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449164] [to:19018315461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064190959] [to:+14256789406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194121683] [to:18194321654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242746955] [to:+16139125695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-10 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-64-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402412415] [to:+12138737252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-10 mdr: 2016-02-01 11:29:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:23 ip-10-0-0-11 mdr: 2016-02-01 11:29:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024390148] [to:+17029565018] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162390386] [to:16164309122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337217] [to:12608040455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508572363] [to:+17784030979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638902] [to:19176606304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597713691] [to:+13479977978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156300348] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081970] [to:17325272925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:24 ip-10-0-64-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733547921] [to:+17736669416] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-10 mdr: 2016-02-01 11:29:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:24 ip-10-0-0-11 mdr: 2016-02-01 11:29:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297980966] [to:+17278196470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17402017699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13174965420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17805070769] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:17057940113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15066459849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17099866388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043896227] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-20 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982329] [to:17096912465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-10 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065287585] [to:+14148887832] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:25 ip-10-0-64-11 mdr: 2016-02-01 11:29:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:25 ip-10-0-0-11 mdr: 2016-02-01 11:29:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298845] [to:14055905122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583419] [to:+19717328133] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-11 mdr: 2016-02-01 11:29:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578027151] [to:+12136348343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17063517135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486395] [to:19515996711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:26 ip-10-0-0-10 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:26 ip-10-0-64-11 mdr: 2016-02-01 11:29:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-11 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-10 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18507608677] [to:+13477989540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-10 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052155565] [to:+16054237960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:16463398853] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-10 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973903] [to:17174058054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:27 ip-10-0-64-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538150] [to:12405204809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:27 ip-10-0-0-11 mdr: 2016-02-01 11:29:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762238721] [to:+17475001245] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896004396] [to:+17053028680] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:15127148273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824238] [to:15857398269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179806] [to:12024093025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503267687] [to:+18637347990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073424038] [to:+17189627326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025829314] [to:+17186755679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:28 ip-10-0-64-10 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165262] [to:50495356788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:28 ip-10-0-0-11 mdr: 2016-02-01 11:29:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278818] [to:19733931437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975052] [to:16316174037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:17703247866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730180] [to:17063291502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18176009694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-10 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084860] [to:17405505225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:29 ip-10-0-64-10 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:29 ip-10-0-0-11 mdr: 2016-02-01 11:29:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-11 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137994938] [to:+14132715739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-11 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-20 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447946329649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011639495360000] [to:+12135455770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-11 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102563] [to:17053050703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477690803] [to:18124540619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-11 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:30 ip-10-0-64-10 mdr: 2016-02-01 11:29:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602620934] [to:+13477966828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-10 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:30 ip-10-0-0-11 mdr: 2016-02-01 11:29:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-21 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004733] [to:16477075218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788863474] [to:+16042436902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473361] [to:18656615351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-11 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093358592] [to:+15204335194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:31 ip-10-0-0-10 mdr: 2016-02-01 11:29:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:31 ip-10-0-64-10 mdr: 2016-02-01 11:29:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491903] [to:18636189968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667487] [to:16122225615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169208459] [to:12167033384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017321] [to:13047856368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045050741] [to:+12139219557] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069811625] [to:+13069925716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252605306] [to:+13479373012] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022788938] [to:+13478999454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132061215] [to:+16136049013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346609898] [to:+19142796538] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088411] [to:18133055241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298845] [to:14055905122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000835] [to:14189323353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CE0201] -Feb 1 11:29:32 ip-10-0-0-11 mdr: 2016-02-01 11:29:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000835] [to:14189323353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:32 ip-10-0-64-10 mdr: 2016-02-01 11:29:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073338532] [to:+16465472949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206235500] [to:963956577060] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175255] [to:14073148500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138497097] [to:+15874043301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730570] [to:14026714248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305188425] [to:+14123016346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067078] [to:19147032221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405634] [to:17656050900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613863274] [to:+13478967734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926767] [to:13527772107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613863274] [to:+13478967734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088188411] [to:+14087135769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-10 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001609] [to:17046915132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:33 ip-10-0-64-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181501] [to:17023730882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-10 mdr: 2016-02-01 11:29:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:33 ip-10-0-0-11 mdr: 2016-02-01 11:29:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375378] [to:18133812590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054853375] [to:+17542003701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049444188] [to:+14049004290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474571660] [to:+15204333385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530671] [to:12409209976] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326689829] [to:+17133526820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438158115] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467042934] [to:+19142064370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-0-10 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:34 ip-10-0-64-11 mdr: 2016-02-01 11:29:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-11 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105455533] [to:+19298411449] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515624] [to:17869914898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789873978] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137640] [to:18025229962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-11 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15066459849] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14028060494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:35 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195852] [to:19545262633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:35 ip-10-0-0-10 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365588797] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-11 mdr: 2016-02-01 11:29:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-11 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-11 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-11 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176553051] [to:+13479568894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-11 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19104747051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892377954] [to:+12894601962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708457217] [to:+14043412099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:36 ip-10-0-0-11 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869364] [to:17819105055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:36 ip-10-0-64-10 mdr: 2016-02-01 11:29:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+15103227611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:19498990988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749475] [to:19858557347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375405431] [to:+19783649424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137863635] [to:+18133205156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017179] [to:17403140890] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267982329] [to:17096912465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-11 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17802195005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-10 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-64-11 mdr: 2016-02-01 11:29:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309241] [to:15404356832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:37 ip-10-0-0-10 mdr: 2016-02-01 11:29:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463777548] [to:+13072138391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:17065704281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023154] [to:13177934397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042953] [to:16139201219] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:38 ip-10-0-64-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16094102373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-21 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-10 mdr: 2016-02-01 11:29:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069790338] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:38 ip-10-0-0-11 mdr: 2016-02-01 11:29:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025397] [to:12508081180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:18649234759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329143] [to:+19027021280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004733] [to:16477075218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688235] [to:19179400646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184150] [to:18183036226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:39 ip-10-0-64-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CE0202] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052010770] [to:+14804392680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-10 mdr: 2016-02-01 11:29:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:39 ip-10-0-0-11 mdr: 2016-02-01 11:29:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-21 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144775938] [to:+14146005843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812356126] [to:+14387928151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-64-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-20 mdr: 2016-02-01 11:29:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234931] [to:+447572507758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143778052] [to:+16149228823] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-11 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416137779] [to:+15412488471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:40 ip-10-0-0-10 mdr: 2016-02-01 11:29:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154129891] [to:+17748557223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-21 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676784089] [to:+16079655863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301176] [to:17164320057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316035375] [to:+14695323765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154139] [to:+16319800164] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17027388551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991209] [to:15798888927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036188] [to:13214314512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12899903154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-11 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-11 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784032540] [to:16047642311] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474566260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323848] [to:14033529851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001609] [to:17046915132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839314] [to:18438144065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:41 ip-10-0-0-10 mdr: 2016-02-01 11:29:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:41 ip-10-0-64-10 mdr: 2016-02-01 11:29:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129965229] [to:+14126940092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-20 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-11 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-10 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144029013] [to:+12148149408] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-11 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704021992] [to:+12709849481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-10 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004723] [to:17042325155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:42 ip-10-0-0-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:42 ip-10-0-64-11 mdr: 2016-02-01 11:29:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14388046336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149198162] [to:+14387927091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178361034] [to:+14706733462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138264243] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162130314] [to:+12167776786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:43 ip-10-0-64-10 mdr: 2016-02-01 11:29:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893680137] [to:+19027004591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:43 ip-10-0-0-11 mdr: 2016-02-01 11:29:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387639] [to:13235980340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:15136935532] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184150] [to:18183036226] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024390148] [to:+17029565018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600647] [to:15026540550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309791] [to:16145977693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063583] [to:18603062605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063583] [to:18603062605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144460471] [to:+18126709135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300717] [to:+19027026794] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160947] [to:14076558602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472004451] [to:+17053004459] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149198162] [to:+14387927091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813510231] [to:+17812052535] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304189540] [to:+15303623218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813169] [to:14692542729] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:44 ip-10-0-0-11 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053009971] [to:17052975345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-11 mdr: 2016-02-01 11:29:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:44 ip-10-0-64-10 mdr: 2016-02-01 11:29:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102794841] [to:+12026015056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537525] [to:12293180203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044709077] [to:+13867428165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-21 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866298093] [to:+15703974098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016625] [to:17024430119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-11 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:45 ip-10-0-0-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:45 ip-10-0-64-10 mdr: 2016-02-01 11:29:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297409987] [to:+12135878728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044957558] [to:+19802092133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-20 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19565360900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19565360900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-10 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175742] [to:16063697352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:46 ip-10-0-0-10 mdr: 2016-02-01 11:29:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103252418] [to:+15874107939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:46 ip-10-0-64-11 mdr: 2016-02-01 11:29:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177797] [to:15209047786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188267] [to:19545586508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069780682] [to:+14237777934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-10 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405376966] [to:+14406587172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:47 ip-10-0-64-10 mdr: 2016-02-01 11:29:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:47 ip-10-0-0-11 mdr: 2016-02-01 11:29:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155489] [to:15188447584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:16097525807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783589] [to:17044504153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877547] [to:16478766545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286587] [to:15403103022] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286587] [to:15403103022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754418638] [to:+16319800066] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-11 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-10 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994595] [to:13057351495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:48 ip-10-0-64-11 mdr: 2016-02-01 11:29:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:48 ip-10-0-0-10 mdr: 2016-02-01 11:29:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-20 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234654] [to:+447930075810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184194506] [to:+12134789533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:15879376003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433766] [to:15074914855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042204] [to:19059064882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103064202] [to:+14846339404] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182292310] [to:+13477869481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164309122] [to:+16162390386] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069345344] [to:+15103357794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-11 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022647062] [to:+13476675702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19797392051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:49 ip-10-0-64-10 mdr: 2016-02-01 11:29:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-11 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:49 ip-10-0-0-10 mdr: 2016-02-01 11:29:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15033600832] [to:15035739306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525871767] [to:+16236664410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022708662] [to:+13025830477] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188662131] [to:+12182031239] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-11 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-11 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:50 ip-10-0-0-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849084081] [to:+18729995999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:50 ip-10-0-64-10 mdr: 2016-02-01 11:29:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087528] [to:17807797790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147032221] [to:+19142067078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664411] [to:2348120137796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263472684] [to:+12262407191] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329459] [to:19049030166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664411] [to:2348120137796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464411170] [to:+15204335030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19413482556] [to:+14157995654] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-0-11 mdr: 2016-02-01 11:29:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852307] [to:13023625115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-10 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:51 ip-10-0-64-11 mdr: 2016-02-01 11:29:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-11 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417354148] [to:+15412488633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181942] [to:17023817171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181942] [to:17023817171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863228966] [to:13526502230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-11 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366134064] [to:+13366450054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-10 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065940637] [to:+12138613581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501377] [to:13218775842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-21 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946329649] [to:+447520670858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:52 ip-10-0-0-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:52 ip-10-0-64-11 mdr: 2016-02-01 11:29:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-21 mdr: 2016-02-01 11:29:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748253883] [to:+447451205759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-21 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447850480731] [to:+447451207485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18039001499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14064782158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298845] [to:14055905122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852137] [to:14108296397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-11 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:53 ip-10-0-0-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543928010] [to:+15122657261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:53 ip-10-0-64-10 mdr: 2016-02-01 11:29:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410586] [to:17053952020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16039450621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333738] [to:19898178966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568894] [to:14176553051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884532] [to:14439293834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-11 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614925908] [to:+15128987335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-11 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:54 ip-10-0-64-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188662131] [to:+12182031239] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043122155] [to:+17249939200] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:14702346066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:54 ip-10-0-0-10 mdr: 2016-02-01 11:29:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789873978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303237325] [to:+13302374954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064370] [to:16467042934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:15088643319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483098366] [to:+12696356199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565576118] [to:+14706732580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615745081] [to:+12138062969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129515177] [to:+18038519647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045529836] [to:+14043900073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174809278] [to:+19784009407] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898017886] [to:+16474951261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942464] [to:+16465138227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892849557] [to:+19895334568] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003090201] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172506477] [to:+13475089486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325272925] [to:+17329081970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326689829] [to:+17133526820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186852886] [to:+15817012391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123171017] [to:+18563125452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035837018] [to:+16034134311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635328940] [to:+12627776403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272247344] [to:+17274937085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022705792] [to:+12026090142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019356279] [to:+18018934531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369777086] [to:+13369440728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178621306] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283614372] [to:+18458181217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318942077] [to:+16317732886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206311287] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:55 ip-10-0-0-11 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478716298] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:55 ip-10-0-64-10 mdr: 2016-02-01 11:29:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164445229] [to:+14062211501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338221] [to:19123900745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801068] [to:+14582015205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334217] [to:17064610694] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328645746] [to:+16784345955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742795600] [to:+13478966443] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096783982] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-11 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309791] [to:16145977693] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-10 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:56 ip-10-0-0-10 mdr: 2016-02-01 11:29:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478722] [to:15033302343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:56 ip-10-0-64-11 mdr: 2016-02-01 11:29:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138476490] [to:+16057897398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894349] [to:19896150550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164445229] [to:+14062211501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005562] [to:19855199890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427823] [to:13046715514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045867462] [to:+18046243290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202529753] [to:+17278578481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027192539] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004173] [to:19022107129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:13344689431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179397726] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922513] [to:15145768973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:13348641109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307768302] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146680474] [to:+14388076356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-0-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941938] [to:15875960287] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:16045185954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-11 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:57 ip-10-0-64-10 mdr: 2016-02-01 11:29:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-21 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:17787621895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164445229] [to:+14062211501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863902] [to:13344150922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-11 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195983755] [to:+18193075983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-11 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177138456] [to:+17745498310] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327577] [to:12607043603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809438] [to:16479611634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493725] [to:17572368402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:58 ip-10-0-64-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132379] [to:16179824343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-11 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735519] [to:17063067671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:58 ip-10-0-0-10 mdr: 2016-02-01 11:29:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004723] [to:16787603179] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291851] [to:13309783600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642199379] [to:+18643346691] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476781201] [to:+14072163507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-10 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-10 mdr: 2016-02-01 11:29:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895338768] [to:+19894020351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650540] [to:12815295304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:29:59 ip-10-0-64-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:29:59 ip-10-0-0-11 mdr: 2016-02-01 11:29:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286587] [to:15403103022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254394727] [to:+13479377116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227405] [to:18035697693] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407391] [to:15197180437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12073338532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004782] [to:14703303840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576332228] [to:+15103405715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857197854] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086696] [to:+13866015030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056917306] [to:+17059102265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245313843] [to:+12138026982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:00 ip-10-0-64-10 mdr: 2016-02-01 11:30:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18137850753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-11 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:00 ip-10-0-0-10 mdr: 2016-02-01 11:30:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176908414] [to:+18173632032] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023041785] [to:+19028019314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611328] [to:19892252893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611328] [to:19892252893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-10 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086696] [to:+13866015030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-10 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:01 ip-10-0-64-11 mdr: 2016-02-01 11:30:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:01 ip-10-0-0-11 mdr: 2016-02-01 11:30:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14806664673] [to:14802057887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:14252109810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:17692323691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002949] [to:+19027056205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568977] [to:12105609327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:14252109810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609519186] [to:+16467381496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430593] [to:13304738995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043974998] [to:+17279986913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472338778] [to:19044501034] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:02 ip-10-0-64-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-10 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478364797] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:02 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952845] [to:19028241947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-21 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418332506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-20 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447946329649] [to:+447520670858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-10 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967136] [to:17864684882] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-10 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-0-11 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102733383] [to:+18572404378] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:03 ip-10-0-64-11 mdr: 2016-02-01 11:30:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067078] [to:19147032221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144837] [to:18632414395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071128] [to:12606331229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-20 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-10 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032738607] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029565018] [to:17024390148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12687705491] [to:+19027058489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771579] [to:12132745579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778009] [to:19206647902] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830477] [to:13022708662] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:04 ip-10-0-0-10 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:04 ip-10-0-64-10 mdr: 2016-02-01 11:30:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990780] [to:17198490610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805404] [to:17065705339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103064202] [to:+14846339404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436794] [to:+12604070984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852852880] [to:+15852822601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192857743] [to:+17194960548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173151770] [to:+15172527739] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377279270] [to:+15137259246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067287429] [to:+14706735080] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-21 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234654] [to:+447930075810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003350202] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685787] [to:14234261389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-20 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447786070642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788858453] [to:+17786549789] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202792] [to:18133551933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-10 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19566848733] [to:+18328044263] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:05 ip-10-0-0-10 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018858784] [to:+13476191300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:05 ip-10-0-64-11 mdr: 2016-02-01 11:30:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197819050] [to:+12262410626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951261] [to:12898017886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001245] [to:12762238721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178621306] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052553303] [to:+17059103207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059181359] [to:+17053026236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058095605] [to:+16474985079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:16097525807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:527151112914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14436238726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025428235] [to:+13025958971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:06 ip-10-0-64-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-11 mdr: 2016-02-01 11:30:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205022] [to:18632723064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204089] [to:13174904373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:06 ip-10-0-0-10 mdr: 2016-02-01 11:30:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137730595] [to:+13474916656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703247866] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:17803640315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:17803640315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-11 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14783529172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:07 ip-10-0-64-11 mdr: 2016-02-01 11:30:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:07 ip-10-0-0-10 mdr: 2016-02-01 11:30:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-10 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-10 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526502230] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-10 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040275] [to:14389267298] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-10 mdr: 2016-02-01 11:30:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352240550] [to:+13858870207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-10 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:08 ip-10-0-64-11 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692054588] [to:13183597080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:08 ip-10-0-0-10 mdr: 2016-02-01 11:30:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14014406081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-11 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-11 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877547] [to:16478766545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:09 ip-10-0-0-21 mdr: 2016-02-01 11:30:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:09 ip-10-0-64-10 mdr: 2016-02-01 11:30:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-21 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816321079] [to:+447451205608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474951301] [to:+13476504265] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088425174] [to:19082084725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023154] [to:13177934397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002949] [to:+19027056205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171826] [to:16315539890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195971728] [to:+19165339764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12294609110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066396194] [to:+14706730134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050899] [to:16042602976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466878958] [to:18053668365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13069811625] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673036725] [to:+18583048217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045050741] [to:+12139219557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-10 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:10 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:10 ip-10-0-0-11 mdr: 2016-02-01 11:30:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577494586] [to:+19148250912] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073969037] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742074875] [to:+13478085357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798399] [to:17403810809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787323883] [to:+16039450313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808006700] [to:+19194156404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205219] [to:15134793549] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17062472305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:11 ip-10-0-0-11 mdr: 2016-02-01 11:30:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:11 ip-10-0-64-10 mdr: 2016-02-01 11:30:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437279] [to:17789268552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967136] [to:17864684882] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305307] [to:15185051586] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364810] [to:+17279166854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-11 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:12 ip-10-0-64-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093337845] [to:+13477866042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:12 ip-10-0-0-10 mdr: 2016-02-01 11:30:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167998714] [to:+13478022553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259039010] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202613] [to:14106228541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147694630] [to:+13479199388] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213158] [to:12516439103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663129] [to:12316242032] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033288] [to:18304616960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259039010] [to:+12069469061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190402] [to:12396926889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384961763] [to:+14387927989] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083442] [to:16063757739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546406059] [to:+13479977843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198889696] [to:+18188562763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:13237105646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12185766947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323765] [to:16316035375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179626054] [to:+15862488047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-64-11 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067742] [to:12525642048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336938] [to:19789894855] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-10 mdr: 2016-02-01 11:30:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:13 ip-10-0-0-11 mdr: 2016-02-01 11:30:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735437226] [to:+13123001605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062384831] [to:+15068030088] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703137851] [to:+12138225213] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405505225] [to:+18133084860] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718610] [to:12108878328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056251398] [to:+19014448917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086368658] [to:+19088425016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785029031] [to:+15082711766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139352847] [to:17609895457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048968] [to:18573341715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315789499] [to:+19176634706] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-10 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977978] [to:18597713691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-64-11 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293284541] [to:+12138062338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-20 mdr: 2016-02-01 11:30:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:14 ip-10-0-0-11 mdr: 2016-02-01 11:30:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879171] [to:18122169380] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900073] [to:14045529836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095167489] [to:+18583048374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690110] [to:13139995124] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703137851] [to:+12138225213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186877] [to:13472680727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-21 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-0-10 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-10 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069653] [to:13474417670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:15 ip-10-0-64-11 mdr: 2016-02-01 11:30:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042895] [to:19023060788] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784054185] [to:14702659075] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108296397] [to:+13025852137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082494777] [to:+12086202698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-20 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527739] [to:15173151770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:15192398175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15026090065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17276449068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763411] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-11 mdr: 2016-02-01 11:30:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803208] [to:14077293971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-11 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13107201440] [to:+18188563051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:16 ip-10-0-0-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:16 ip-10-0-64-10 mdr: 2016-02-01 11:30:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436813539] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187687803] [to:+19177373199] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527254443] [to:+17015872231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639534] [to:15593207201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:17 ip-10-0-64-11 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:17 ip-10-0-0-10 mdr: 2016-02-01 11:30:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516439103] [to:+12139213158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062969] [to:16615745081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186877] [to:13472680727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14029040433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749674] [to:18124317038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:14044459094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266106] [to:16162580292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097875479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463777548] [to:+13072138391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081665] [to:12253055663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081665] [to:12253055663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-10 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:18 ip-10-0-0-11 mdr: 2016-02-01 11:30:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14357300730] [to:+14357764913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:18 ip-10-0-64-11 mdr: 2016-02-01 11:30:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144573746] [to:+19729476053] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405172] [to:12263780502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169208459] [to:12167033384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863387] [to:17405259726] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182279519] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558350] [to:14028175766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-10 mdr: 2016-02-01 11:30:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147032221] [to:+19142067078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:19 ip-10-0-64-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028680] [to:12896004396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:19 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:18438133708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020271] [to:19896194362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016346] [to:13305188425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17633137863] [to:+17633015123] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842192718] [to:+16109101409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132924712] [to:+16136048834] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852852880] [to:+15852822601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839131] [to:18436172037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12073338532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-10 mdr: 2016-02-01 11:30:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:20 ip-10-0-64-11 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:20 ip-10-0-0-10 mdr: 2016-02-01 11:30:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797405] [to:19142616925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783348895] [to:+18639492539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464315791] [to:+18582568616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:16602044162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318715526] [to:+16317732442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132924712] [to:+16136048834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318103] [to:12314689397] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010555] [to:14189972546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+15146136920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-21 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447590203521] [to:+447451238369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157270534] [to:+13477981686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:21 ip-10-0-0-11 mdr: 2016-02-01 11:30:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:21 ip-10-0-64-10 mdr: 2016-02-01 11:30:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408941840] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324664] [to:13056847799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659869148] [to:17656674872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146255566] [to:+14387930985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863228966] [to:13526502230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189277922] [to:+14242768071] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028479] [to:18607105579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953178] [to:13303271176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-11 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003250201] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-11 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:22 ip-10-0-64-10 mdr: 2016-02-01 11:30:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:22 ip-10-0-0-10 mdr: 2016-02-01 11:30:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058167684] [to:+19729478827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14705355374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612460121] [to:+15612319735] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074154415] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444212] [to:14782588661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084570304] [to:+14153269665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-10 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192302914] [to:+14197767149] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879376003] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:23 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:23 ip-10-0-64-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675963791] [to:+12672473970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911901] [to:14168357802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:18433072967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488184363] [to:+13137690352] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342218302] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033188478] [to:+16034132102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040275] [to:15146215812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899903154] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023452366] [to:+13479139087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601962] [to:12892377954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13146448014] [to:+13475086490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-11 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15189219191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:24 ip-10-0-0-10 mdr: 2016-02-01 11:30:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:24 ip-10-0-64-11 mdr: 2016-02-01 11:30:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163507] [to:13476781201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632032] [to:18176908414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812793] [to:14437342609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:12404470102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014406081] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129327924] [to:+13479131354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055698936] [to:+16784338263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537525] [to:12293180203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747860] [to:12052156214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:25 ip-10-0-64-11 mdr: 2016-02-01 11:30:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-11 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023452366] [to:+13479139087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:25 ip-10-0-0-10 mdr: 2016-02-01 11:30:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096834857] [to:+13234834550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-20 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209521] [to:+447783910634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562391199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913530] [to:18195780622] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052388403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475287773] [to:+14259845653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364312] [to:+13203737100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023452366] [to:+13479139087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673771866] [to:+17726177451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194604] [to:16462441338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144002437] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587172] [to:14405376966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877547] [to:16478766545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:26 ip-10-0-64-10 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252177104] [to:+12546930199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:26 ip-10-0-0-11 mdr: 2016-02-01 11:30:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232432458] [to:+14808428249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009537] [to:17097437519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067232] [to:17656673826] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067232] [to:17656673826] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105542148] [to:+12482160506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162784734] [to:+12162396181] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058489] [to:12687705491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053046039] [to:+18638552186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990710] [to:15595149284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757403796] [to:+12138028221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17403411339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314827] [to:17403411339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-10 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808509100] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162768439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19418773079] [to:18606050704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108878328] [to:+12105718610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:27 ip-10-0-0-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846292550] [to:+14844893460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:27 ip-10-0-64-11 mdr: 2016-02-01 11:30:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045173899] [to:+19046946002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412951] [to:19545152062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318715526] [to:+16317732442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-21 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328425] [to:+447921212920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-10 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:28 ip-10-0-64-11 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:28 ip-10-0-0-11 mdr: 2016-02-01 11:30:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788089767] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655412167] [to:+12604070963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-20 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702805192] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702805192] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478716] [to:19493073226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515996711] [to:+19148486395] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927091] [to:15149198162] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927091] [to:15149198162] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-11 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797741695] [to:+17074032494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-64-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293388787] [to:+17077502847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13364710040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:29 ip-10-0-0-10 mdr: 2016-02-01 11:30:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893295714] [to:+19895334990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145133] [to:16062602893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868670] [to:17049644417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137699355] [to:+16136046021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556725] [to:14072697281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449439] [to:19015048477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789139636] [to:+16784338324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272262568] [to:+14049001677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211719] [to:18037956564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:30 ip-10-0-64-11 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474985079] [to:19058095605] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-11 mdr: 2016-02-01 11:30:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:30 ip-10-0-0-10 mdr: 2016-02-01 11:30:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176278220] [to:+14429001931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:51:[[Image:d6960504-4897-4029-8a03-dde91c05caf5.jpg]].] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065915193] [to:+16784338647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475961776] [to:+13477055154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681619] [to:14075082681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440692] [to:13365611761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373453880] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799856381] [to:+12602327080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-11 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017927636] [to:+13015699231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:31 ip-10-0-0-11 mdr: 2016-02-01 11:30:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:31 ip-10-0-64-10 mdr: 2016-02-01 11:30:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014425642] [to:+15082711196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865385111] [to:+19175808950] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519805] [to:18036517401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-20 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220733] [to:+447952760887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14789726510] [to:+19292201155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13479289245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898373] [to:19853870474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546369878] [to:+17542220406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19087186170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691910] [to:13059101081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242880431] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-10 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482699] [to:16122135155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:19498990988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-10 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688235] [to:19179400646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:32 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14436238726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:32 ip-10-0-64-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806129] [to:17053217805] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705979419] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133841582] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175972328] [to:+15129525871] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242070127] [to:+12672777539] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:33 ip-10-0-64-10 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107904776] [to:+15617664568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:33 ip-10-0-0-11 mdr: 2016-02-01 11:30:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433260398] [to:+14437204329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623218] [to:15304189540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145427209] [to:+13476670765] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857142596] [to:+15852822090] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886856] [to:+13479196689] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029867] [to:14182624495] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035899640] [to:+12408924624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324664] [to:13056847799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19794927425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-11 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067519] [to:15706775669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:34 ip-10-0-0-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:34 ip-10-0-64-10 mdr: 2016-02-01 11:30:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047194] [to:16473605839] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437982] [to:19802000412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220928] [to:18457647100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14015001574] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052091787] [to:+12264559397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753386] [to:18606045947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177199788] [to:+19172669055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-10 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104895576] [to:+13012311218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149982618] [to:+15147004174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:35 ip-10-0-0-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833423] [to:12406022944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:35 ip-10-0-64-11 mdr: 2016-02-01 11:30:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-21 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737911] [to:16109724813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545262633] [to:+19545195852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18635291008] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018934518] [to:18016033105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003FB0301] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202561] [to:18136507597] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305599620] [to:+12162396428] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800428] [to:16317903560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023042910] [to:+18678883952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:36 ip-10-0-64-11 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:36 ip-10-0-0-10 mdr: 2016-02-01 11:30:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086490] [to:13146448014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562031898] [to:+15103358864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942127] [to:15143476271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016269299] [to:+13478085314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:19096783982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:14846397892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806122062] [to:+15415393157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:19059646444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718610] [to:12108878328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990710] [to:12168208270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146146] [to:13374011797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406799632] [to:+13477866489] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:18329940684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607105579] [to:+13478028479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735409072] [to:+13478969494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:37 ip-10-0-64-10 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024596] [to:17786798072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:37 ip-10-0-0-11 mdr: 2016-02-01 11:30:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041339] [to:12403517460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818895016] [to:+12816035843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244490] [to:18138081659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135267193] [to:+13479789754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702674674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305188425] [to:+14123016346] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329940684] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-21 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447908505732] [to:+447520621978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003520201] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18146886102] [to:+13479131945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788018] [to:19102283197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-11 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182908946] [to:+16513337215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16024233422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479543387] [to:19185686362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:38 ip-10-0-64-11 mdr: 2016-02-01 11:30:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:38 ip-10-0-0-10 mdr: 2016-02-01 11:30:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239429] [to:15594309294] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455721] [to:16614528765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641969] [to:+14387925967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805317] [to:19059125689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501377] [to:13218775842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063697352] [to:+17726175742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562031898] [to:+15103358864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476675630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164670131] [to:+14402526893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231696] [to:19783775263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-10 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18036623951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-0-10 mdr: 2016-02-01 11:30:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003FB0302] -Feb 1 11:30:39 ip-10-0-0-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164734] [to:19197061862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:39 ip-10-0-64-11 mdr: 2016-02-01 11:30:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568361] [to:17656373001] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15408941840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606331229] [to:+12604071128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-10 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370484] [to:14166667708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14087712941] [to:+16503002981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:40 ip-10-0-0-20 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447908505732] [to:+447520621978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003520202] -Feb 1 11:30:40 ip-10-0-0-11 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124317038] [to:+13477749674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:40 ip-10-0-64-10 mdr: 2016-02-01 11:30:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753386] [to:18606045947] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027708407] [to:+12407435950] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587493] [to:16084158205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12766204045] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009407] [to:13174809278] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:41 ip-10-0-64-10 mdr: 2016-02-01 11:30:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:41 ip-10-0-0-11 mdr: 2016-02-01 11:30:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147104] [to:12035090412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324664] [to:13056847799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403624093] [to:+12408924558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569623] [to:18768691050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14705355374] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-20 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206467] [to:+16475569567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794929694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16164200201] [to:16168022605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773696] [to:17812645721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16103316669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:42 ip-10-0-64-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940075] [to:19125800142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-11 mdr: 2016-02-01 11:30:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:42 ip-10-0-0-10 mdr: 2016-02-01 11:30:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12082203204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003FB0303] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613191640] [to:+18328025146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144294070] [to:+14706734383] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218775842] [to:+18326501377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-21 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708824527] [to:+19174094422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139995124] [to:+13137690110] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-64-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+13122756194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17096915790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-11 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:16785864582] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:43 ip-10-0-0-10 mdr: 2016-02-01 11:30:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916709] [to:13526135324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414127119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234566670] [to:+12137698183] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173632032] [to:18176908414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524573956] [to:+15072626584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:17175047309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807996368] [to:+16025528762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568838] [to:16608888357] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785029031] [to:+15082711766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:44 ip-10-0-64-10 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:44 ip-10-0-0-11 mdr: 2016-02-01 11:30:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286219] [to:14388702211] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068511713] [to:+16474912440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047719088] [to:+16692252166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:15879376003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846292550] [to:+14844893460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501377] [to:13218775842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12169316352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342080626] [to:+12132957690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046632350] [to:+17604747702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552186] [to:13053046039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031277] [to:19022102429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12122808288] [to:+13219993719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-11 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205747] [to:14438337690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159939367] [to:+13478992896] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:45 ip-10-0-0-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-10 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:45 ip-10-0-64-11 mdr: 2016-02-01 11:30:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063697352] [to:+17726175742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-10 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139663706] [to:+18133208742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524199] [to:12102197518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785029031] [to:+15082711766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19705762290] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:46 ip-10-0-64-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169281003] [to:+13479789403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:46 ip-10-0-0-10 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262461848] [to:+12267795024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982582] [to:+18639493073] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063583] [to:18603062605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143803337] [to:+14146007646] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195926884] [to:+16139093088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267903435] [to:17097301768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:47 ip-10-0-64-10 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14123154480] [to:+17248035648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:47 ip-10-0-0-11 mdr: 2016-02-01 11:30:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126311806] [to:16033615908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070984] [to:12602436794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512689] [to:17573865423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18195984551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878502] [to:19367186210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077817252] [to:+13218328328] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193849700] [to:+12262415829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836028] [to:19063736262] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993895] [to:14077975237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17785336260] [to:+17784030941] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-10 mdr: 2016-02-01 11:30:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479286298] [to:+19177227118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769352] [to:14014406081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-64-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-10 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:48 ip-10-0-0-11 mdr: 2016-02-01 11:30:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502994] [to:13107349795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093337845] [to:+13477866042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658838] [to:13476666411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:16477944370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132340876] [to:+14132736853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742019262] [to:+13123009902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625442675] [to:+13219990725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12894420599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308426260] [to:+15097397475] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17062472305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:49 ip-10-0-0-11 mdr: 2016-02-01 11:30:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189878483] [to:+16784338606] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14235350869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028697] [to:13049923540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338668] [to:16789945173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:49 ip-10-0-64-10 mdr: 2016-02-01 11:30:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778009] [to:19206647902] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326407070] [to:+17323774919] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526502230] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074914855] [to:+17739433766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049644417] [to:+14242868670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086448325] [to:+19086625523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017301969] [to:+13475808159] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315789499] [to:+19176634706] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610502] [to:12705359013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-11 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:50 ip-10-0-0-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198309939] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:50 ip-10-0-64-10 mdr: 2016-02-01 11:30:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139663706] [to:+18133208742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075006] [to:16137000713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-21 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223899] [to:+447759055445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023507018] [to:+13053406115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122169380] [to:+14157879171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16032900556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332173] [to:12295069504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:51 ip-10-0-0-11 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020351] [to:19895338768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-11 mdr: 2016-02-01 11:30:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105609327] [to:+15085568977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:51 ip-10-0-64-10 mdr: 2016-02-01 11:30:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278607239] [to:16068751021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803708] [to:17869303404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162021985] [to:+15613165312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004459] [to:16472004451] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088188411] [to:+14087135769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056399] [to:18178846559] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004173] [to:19022107129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14199085408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048910042] [to:+17605895066] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833423] [to:18049394156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136714173] [to:+14357764699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-11 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-11 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990189] [to:17064958790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:52 ip-10-0-64-10 mdr: 2016-02-01 11:30:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:52 ip-10-0-0-10 mdr: 2016-02-01 11:30:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042512021] [to:+16264278939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531877] [to:18438339011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15133841582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198165661] [to:+18194140749] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:15194366598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136246677] [to:+12482068454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632580554] [to:+18638555944] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313344939] [to:+19318967326] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:16785429314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228218] [to:17349265964] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228218] [to:17349265964] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-11 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-11 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102799] [to:14439921590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14349411550] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391636] [to:13029437524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:53 ip-10-0-64-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-10 mdr: 2016-02-01 11:30:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:53 ip-10-0-0-20 mdr: 2016-02-01 11:30:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15025449802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142739] [to:19543933194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804094] [to:18024423436] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178176041] [to:+13474340108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:15735544981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022330148] [to:+19027046396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816388] [to:18124804716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822314426] [to:17579556675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407191] [to:12263472684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18509699469] [to:+19149220005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476323781] [to:+16477997864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-0-10 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743004] [to:12674144502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:54 ip-10-0-64-11 mdr: 2016-02-01 11:30:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145516241] [to:+12399000312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108878328] [to:+12105718610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025469608] [to:+16233839291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022038496] [to:+14692708568] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076168092] [to:+18724003666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806952723] [to:+15874005829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307234222] [to:+12342312223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074587759] [to:+16465472949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488752199] [to:+15862488304] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088643319] [to:+18639492349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488752199] [to:+15862488304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003350201] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13103479953] [to:+13234268377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003250202] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192302914] [to:+14197404856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316715371] [to:+16317705056] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162103660] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873257311] [to:+15873152364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016357478] [to:+18018903261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789894855] [to:+19785336938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165105825] [to:+15167349618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054104581] [to:+12136324918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128558577] [to:+16107667831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522291951] [to:+13018510024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622662693] [to:+13017786178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347017009] [to:+14242863850] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014043583] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074005748] [to:+19177731285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-11 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:55 ip-10-0-0-10 mdr: 2016-02-01 11:30:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:55 ip-10-0-64-11 mdr: 2016-02-01 11:30:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163896061] [to:+16474910678] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515509761] [to:+16572143255] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054104581] [to:+12136324918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18609519186] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16464179127] [to:19807290261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144907616] [to:+14694147642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016171] [to:16613735105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14846199065] [to:+15103226931] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-11 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134688018] [to:+17133735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-0-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:56 ip-10-0-64-10 mdr: 2016-02-01 11:30:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803708] [to:17869303404] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049311654] [to:+15109482643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-21 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-21 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404378] [to:19102733383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277800] [to:17205040442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-21 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337388] [to:+447950329267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193590654] [to:16194159457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559045] [to:18506070894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368993406] [to:+12604070354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559045] [to:18506070894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17023504818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:57 ip-10-0-64-10 mdr: 2016-02-01 11:30:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:57 ip-10-0-0-11 mdr: 2016-02-01 11:30:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867551] [to:+18724009736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:15142424709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893679] [to:17084153363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178057585] [to:+13477989853] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388014893] [to:+15146134401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218039] [to:14172148454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218039] [to:14172148454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218039] [to:14172148454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:15194366598] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-11 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:58 ip-10-0-0-10 mdr: 2016-02-01 11:30:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:58 ip-10-0-64-11 mdr: 2016-02-01 11:30:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053402392] [to:+12898045369] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863543] [to:16107393025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14014406081] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065661319] [to:+12069469061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033175] [to:12082721708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033175] [to:12082721708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-10 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:30:59 ip-10-0-64-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:30:59 ip-10-0-0-11 mdr: 2016-02-01 11:30:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:15053399375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-11 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036075257] [to:+19802620095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-10 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-11 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-11 mdr: 2016-02-01 11:31:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329877611] [to:13613191957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-10 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-21 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:00 ip-10-0-64-10 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:00 ip-10-0-0-11 mdr: 2016-02-01 11:31:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-20 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470428051] [to:+447451212747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940075] [to:19125800142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974329] [to:18178995249] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050478] [to:17806681246] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896142] [to:12563070954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669387] [to:14437303613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054237976] [to:17012048586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:01 ip-10-0-64-10 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990932] [to:16147331809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-11 mdr: 2016-02-01 11:31:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103403586] [to:18135037758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:01 ip-10-0-0-10 mdr: 2016-02-01 11:31:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16032900556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+17736668852] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040987] [to:12537669119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196661223] [to:+18572405046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055520] [to:16825522610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137699355] [to:+16136046021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:13212176730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13373138342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14849861997] [to:14843649976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19012825068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025597] [to:16478257380] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211719] [to:18034458000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:18649234759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-11 mdr: 2016-02-01 11:31:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:02 ip-10-0-0-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:02 ip-10-0-64-10 mdr: 2016-02-01 11:31:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044761059] [to:+12136946161] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-21 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476919816] [to:+13475088548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108006608] [to:+14434530366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897752297] [to:+12892756998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:17575825612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185595312] [to:+15817010080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671455] [to:+18194141171] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075912997] [to:+14074424761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433218] [to:17328161998] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16032738607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774919] [to:17326407070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505975873] [to:+19172833792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:03 ip-10-0-64-10 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372056332] [to:+14242838343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-11 mdr: 2016-02-01 11:31:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:03 ip-10-0-0-10 mdr: 2016-02-01 11:31:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086916819] [to:+17277053734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313469428] [to:+15169341537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571083] [to:15053884254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315799813] [to:+16318127361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12155311937] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403049377] [to:+15165977811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797285] [to:15737184405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:14066472363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088188411] [to:+14087135769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13052630241] [to:+17205852780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676432] [to:12704211004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479286298] [to:+19177227118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176435738] [to:+19178778764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323428517] [to:+12819421913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-11 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182958] [to:14087675320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033188478] [to:+16034132102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:04 ip-10-0-0-10 mdr: 2016-02-01 11:31:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-11 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579556675] [to:+16822314426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:04 ip-10-0-64-10 mdr: 2016-02-01 11:31:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174801853] [to:+15107756197] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183349887] [to:+13475086862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606045947] [to:+17864753386] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323180684] [to:+17328677570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055804469] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193564475] [to:+19199161438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313469428] [to:+15169341537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647645594] [to:+19148608903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517099565] [to:+14088725733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099549315] [to:+14158535623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173457859] [to:12144061907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-11 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-11 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:13307768302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571083] [to:15053884254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13018510024] [to:12522291951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:05 ip-10-0-0-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040823] [to:15099190259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074069653] [to:13474417670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:05 ip-10-0-64-10 mdr: 2016-02-01 11:31:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196518304] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203609493] [to:+14073371670] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293767100] [to:+18506313606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202561] [to:18136507597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493307] [to:18632414887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391687] [to:15142698920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673771866] [to:+17726177451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:18129468057] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014043583] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15128873788] [to:+16465319358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419838] [to:13344448667] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467503113] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953375] [to:13176029901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049302] [to:13167795872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:06 ip-10-0-64-10 mdr: 2016-02-01 11:31:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:06 ip-10-0-0-11 mdr: 2016-02-01 11:31:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004021] [to:16787606441] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:15044012691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259039010] [to:+12069469061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139096635] [to:+15102547551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968817] [to:17063517192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640095] [to:18436101909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-21 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447794563065] [to:+447451208568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120563] [to:16133411694] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-10 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:07 ip-10-0-64-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692056399] [to:18178846559] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:07 ip-10-0-0-11 mdr: 2016-02-01 11:31:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286569] [to:16072225538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220502] [to:15183849215] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168254341] [to:+16466329673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325601] [to:12693404099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-11 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:08 ip-10-0-64-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-11 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073594] [to:18196653937] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:08 ip-10-0-0-10 mdr: 2016-02-01 11:31:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411816] [to:19059260971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218227] [to:17709106580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16032900556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:12262240865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866124716] [to:+18724002892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562889006] [to:+12488347563] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-64-10 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475148] [to:19193714695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023504818] [to:+17027794166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-11 mdr: 2016-02-01 11:31:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:09 ip-10-0-0-10 mdr: 2016-02-01 11:31:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750749] [to:+18563126773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003DD0201] -Feb 1 11:31:10 ip-10-0-0-20 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330405] [to:+447881372742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562889006] [to:+12488347563] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14509165562] [to:+14387926697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047744681] [to:+15103225987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003DD0202] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317903560] [to:+16319800428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17027388551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-10 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:18433046287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:10 ip-10-0-64-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036188] [to:13214314512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416317] [to:18433046287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16474085798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-10 mdr: 2016-02-01 11:31:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866489] [to:15406799632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:10 ip-10-0-0-11 mdr: 2016-02-01 11:31:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064127569] [to:+19543142542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570299] [to:17785547233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16475224957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381496] [to:18609519186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764913] [to:14357300730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476871881] [to:+16474992984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205699818] [to:+19173963082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138999664] [to:+14388085923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145649071] [to:+14692966481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196322681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347259283] [to:+15863315361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802806579] [to:+12139296177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783236288] [to:+16788164717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19414173046] [to:19415381108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058078575] [to:+12262415964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:11 ip-10-0-0-11 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:11 ip-10-0-64-10 mdr: 2016-02-01 11:31:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189972546] [to:+17097010555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804880] [to:12705012010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536468] [to:12524681907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049311654] [to:+15109482643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179413354] [to:+18173632367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842064964] [to:+16465135751] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054947877] [to:+19543141288] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-11 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-10 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:12 ip-10-0-0-10 mdr: 2016-02-01 11:31:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745791] [to:16013316511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:12 ip-10-0-64-11 mdr: 2016-02-01 11:31:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:16465468727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145530889] [to:+16467389866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838483] [to:19105805637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17818190720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073723380] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-11 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134585990] [to:+13052036714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:13 ip-10-0-0-11 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:13 ip-10-0-64-10 mdr: 2016-02-01 11:31:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408941840] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204256319] [to:+17204637858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029569920] [to:+15028049458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652094] [to:19035196556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647707] [to:+18653471819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-11 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866283934] [to:13048000345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:14 ip-10-0-64-10 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:14 ip-10-0-0-10 mdr: 2016-02-01 11:31:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433293] [to:18482502291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:17072083786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218775842] [to:+18326501377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174708] [to:13525123704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17347966657] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048000345] [to:+13866283934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146049] [to:16266651966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315594] [to:13343201036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12672302919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056205] [to:19023002949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16017148496] [to:16016972865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672691123] [to:+17749921502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-21 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447910856612] [to:+447520629369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18504667974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156972917] [to:+16149965978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-10 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318597] [to:13049511997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:15 ip-10-0-64-11 mdr: 2016-02-01 11:31:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177451] [to:15673771866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:15 ip-10-0-0-11 mdr: 2016-02-01 11:31:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152573111] [to:+13478969823] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233336901] [to:+16157779750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+12676860993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274603] [to:19082945931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096783982] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+17736668852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-21 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234587] [to:+447415298006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878728] [to:12297409987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-11 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058700344] [to:+17059101885] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:16 ip-10-0-0-21 mdr: 2016-02-01 11:31:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-11 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196518304] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:16 ip-10-0-64-10 mdr: 2016-02-01 11:31:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-20 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+15085568988] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997588] [to:19073945560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703303840] [to:+14049004782] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058700344] [to:+17059101885] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493205] [to:18636627653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739439253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:17 ip-10-0-64-11 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-10 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:17 ip-10-0-0-11 mdr: 2016-02-01 11:31:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-21 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143774498] [to:+14388071811] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783654222] [to:+12105718292] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337679] [to:15402362535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-11 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033529851] [to:+15873323848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783775263] [to:+19783231696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:18 ip-10-0-0-10 mdr: 2016-02-01 11:31:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740528] [to:+13219993617] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:18 ip-10-0-64-11 mdr: 2016-02-01 11:31:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472949] [to:12074587759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173310077] [to:+18572190969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732617] [to:12675939343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15064400959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419242] [to:18037164631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641290] [to:12092211169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13619067361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083197] [to:13155762003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015056] [to:19102794841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:19123419378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-20 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221289] [to:+447936996807] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718610] [to:12108878328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-10 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152122034] [to:+16467691202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:19 ip-10-0-64-11 mdr: 2016-02-01 11:31:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:19 ip-10-0-0-11 mdr: 2016-02-01 11:31:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408970] [to:14434176441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249610511] [to:+19173965866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023638165] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849855] [to:19375396878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307141572] [to:+13478029650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833462] [to:15864049826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126167] [to:19028700279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175742] [to:16063697352] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436101909] [to:+16465640095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809064949] [to:+19417256662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425021] [to:13862887451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008898] [to:14187203805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-21 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447913304653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477065648] [to:+15168302119] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-11 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-11 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050602] [to:17808394699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:20 ip-10-0-64-10 mdr: 2016-02-01 11:31:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093402536] [to:+15635497199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:20 ip-10-0-0-10 mdr: 2016-02-01 11:31:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192053] [to:19196337589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015306885] [to:+19014449676] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505806932] [to:+17784030467] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195890358] [to:+12267983934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19368511519] [to:16612710375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15023036707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:13303388006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-11 mdr: 2016-02-01 11:31:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632723064] [to:+18133205022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-64-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592879] [to:16785700121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:21 ip-10-0-0-10 mdr: 2016-02-01 11:31:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407755] [to:17093510719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149625986] [to:+13309157409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404856] [to:14192302914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12185766947] [to:+12135760721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15598277496] [to:+15592232334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047925389] [to:+19802093412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019211072] [to:+19014445131] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143173246] [to:+18312887941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:15703918977] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147552321] [to:+14387927527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-11 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:22 ip-10-0-0-10 mdr: 2016-02-01 11:31:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733933730] [to:+19734466392] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13302062206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:22 ip-10-0-64-11 mdr: 2016-02-01 11:31:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081774] [to:18642056698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012601] [to:12085910056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704653201] [to:+13053400604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023068171] [to:+19027062781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376612] [to:15405334188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14068604364] [to:+13474340704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137850753] [to:+18133201485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:14849196948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046396] [to:19022330148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046682860] [to:+18572193955] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:16197015054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12899219580] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:23 ip-10-0-64-10 mdr: 2016-02-01 11:31:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:23 ip-10-0-0-11 mdr: 2016-02-01 11:31:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15598645305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16505497248] [to:+18638555477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437689115] [to:+14242769430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042228844] [to:+12139215192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053406115] [to:12023507018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:19096783982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016974147] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-11 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040620] [to:+14072681839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-64-10 mdr: 2016-02-01 11:31:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-11 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:24 ip-10-0-0-10 mdr: 2016-02-01 11:31:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315049] [to:18154098623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388212772] [to:+14506391347] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448917] [to:14056251398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259207] [to:12073413079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18026835973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345321] [to:18435351873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824258] [to:15857470199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277052463] [to:13134681969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314349] [to:13045516348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653612836] [to:+13478968687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109138235] [to:+14433453887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198088680] [to:+19199163161] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169986673] [to:+17162791271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064281208] [to:+13866017605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884096] [to:14436238726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093515] [to:19173641619] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134358681] [to:+19148988012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063807277] [to:+15068041762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563783239] [to:+17182559099] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833462] [to:15864049826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-11 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009736] [to:17206867551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:25 ip-10-0-0-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049967089] [to:+12048137329] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-11 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16232212402] [to:+14808427768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795788] [to:17578121904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:25 ip-10-0-64-10 mdr: 2016-02-01 11:31:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197027808] [to:+12264553109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12162355858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049923540] [to:+12138028697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556822] [to:17409739257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472923462] [to:+19177374643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163443158] [to:+14242769833] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479286298] [to:+19177227118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135769] [to:14088188411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573860117] [to:+19298413856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133411694] [to:+16139120563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-11 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034644452] [to:+13019179497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819839821] [to:+15817001303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-10 mdr: 2016-02-01 11:31:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643998422] [to:+15752913631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:26 ip-10-0-64-11 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772481] [to:16318297925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:26 ip-10-0-0-10 mdr: 2016-02-01 11:31:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642213651] [to:+16475569075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717610] [to:14387637760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176009694] [to:+14693737764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696294938] [to:19157609232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14159649617] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692252597] [to:15706406741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767563] [to:14192028422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-11 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160886] [to:14074154415] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-10 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:27 ip-10-0-0-11 mdr: 2016-02-01 11:31:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402347] [to:14046804097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:27 ip-10-0-64-10 mdr: 2016-02-01 11:31:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105988196] [to:+14158253582] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552521] [to:19313344545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15093883961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12155311937] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073091791] [to:+13024391877] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:14388968753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546540578] [to:+17279986953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12899903154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419134931] [to:+19717778120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-10 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:28 ip-10-0-0-11 mdr: 2016-02-01 11:31:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:28 ip-10-0-64-11 mdr: 2016-02-01 11:31:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071128] [to:12606331229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044501034] [to:+17472338778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154180129] [to:+19177320379] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734259065] [to:+17736668852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15856356246] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388765506] [to:+18193034468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578032461] [to:+17572969647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595294] [to:12018786077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-10 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-10 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127106602] [to:+12138737072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:29 ip-10-0-0-11 mdr: 2016-02-01 11:31:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233308744] [to:+15612400727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:29 ip-10-0-64-11 mdr: 2016-02-01 11:31:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212078] [to:16464923961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013238691] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579715] [to:17022858169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019967093] [to:+15204335323] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167795872] [to:+15028049302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17025538894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16418402744] [to:+15154438476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:30 ip-10-0-64-10 mdr: 2016-02-01 11:31:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055858366] [to:+16465130030] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:30 ip-10-0-0-11 mdr: 2016-02-01 11:31:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555698] [to:12056880751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082146] [to:18137700012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148145] [to:+16467019791] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999354] [to:13236720104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926327] [to:16016049597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13853681644] [to:+17027184773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785860145] [to:14078448257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928081] [to:13062164573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:31 ip-10-0-64-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-11 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476937118] [to:+17185042396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:31 ip-10-0-0-10 mdr: 2016-02-01 11:31:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009902] [to:15742019262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524199] [to:12107879729] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17093510719] [to:+14153407755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204833] [to:14438212450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-21 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036628790] [to:15713500483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288063] [to:19173794209] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:32 ip-10-0-0-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029297440] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-11 mdr: 2016-02-01 11:31:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:32 ip-10-0-64-10 mdr: 2016-02-01 11:31:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315380847] [to:+13309157452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19129968510] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13023638165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148175636] [to:+13477749267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414127119] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:33 ip-10-0-64-11 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:33 ip-10-0-0-10 mdr: 2016-02-01 11:31:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144958] [to:13344358754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447834537380] [to:+17027579477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-20 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046735166] [to:+17702005515] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14175543047] [to:+14158909102] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819105055] [to:+19787869364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408204816] [to:+12138737037] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185562] [to:19292399668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815510] [to:14199535103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157219] [to:13305500383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-11 mdr: 2016-02-01 11:31:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:34 ip-10-0-0-11 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:34 ip-10-0-64-10 mdr: 2016-02-01 11:31:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600647] [to:15023452443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846149] [to:17329840777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706165190] [to:+14049001808] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18073230728] [to:+17097001030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552521] [to:19313344545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155762003] [to:+13478083197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588518] [to:14402259997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406225] [to:13165587051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:35 ip-10-0-64-10 mdr: 2016-02-01 11:31:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659190013] [to:+18653473100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009128] [to:17403308041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-10 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:35 ip-10-0-0-11 mdr: 2016-02-01 11:31:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735651] [to:18603871735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137699355] [to:+16136046021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163224574] [to:+12167990936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950044] [to:15019529950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491414] [to:16084950015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146541] [to:14696520923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502847] [to:12293388787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206315681] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-10 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023042910] [to:+18678883952] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:14388968753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:36 ip-10-0-64-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-11 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15059344950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:36 ip-10-0-0-10 mdr: 2016-02-01 11:31:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785700121] [to:+19172592879] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:12404606889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146255566] [to:+14387930985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477721187] [to:+12264555781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688235] [to:19179400646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:37 ip-10-0-0-11 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-10 mdr: 2016-02-01 11:31:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:37 ip-10-0-64-11 mdr: 2016-02-01 11:31:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13099486855] [to:+16269403932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252098762] [to:+13609727400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408941840] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-10 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152071581] [to:+12626481623] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087967253] [to:+12139215256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12299475043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204652] [to:14434671827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:38 ip-10-0-64-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-11 mdr: 2016-02-01 11:31:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:38 ip-10-0-0-10 mdr: 2016-02-01 11:31:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652501633] [to:+19175805157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064247086] [to:+15068001084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002949] [to:+19027056205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308158383] [to:+12242140370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F40201] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868098] [to:17818660164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806850417] [to:+14804393814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679533] [to:17275058105] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13613191957] [to:+18329877611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-20 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035548372] [to:+15873289601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-11 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:39 ip-10-0-64-10 mdr: 2016-02-01 11:31:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:39 ip-10-0-0-10 mdr: 2016-02-01 11:31:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003666] [to:12076168092] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444212] [to:14782588661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771579] [to:12132745579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495596] [to:18146739039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167106452] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164504258] [to:+16474941620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-10 mdr: 2016-02-01 11:31:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-10 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323228613] [to:+19038652782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:40 ip-10-0-64-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:40 ip-10-0-0-11 mdr: 2016-02-01 11:31:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-21 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17135883364] [to:15125694468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349411550] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300847] [to:17657171409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:41 ip-10-0-0-10 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-10 mdr: 2016-02-01 11:31:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:41 ip-10-0-64-11 mdr: 2016-02-01 11:31:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195780622] [to:+16474913530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107714559] [to:+14023874028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044459094] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:16099709995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002584] [to:18157864518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592660] [to:19128509829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108878328] [to:+12105718610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025597] [to:16478257380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636056361] [to:+18036023997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405895] [to:15595725516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307905533] [to:+13606383175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440388] [to:13364977645] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F40202] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15094312831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635055] [to:13472668091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833462] [to:15864049826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769833] [to:18163443158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693579997] [to:+12692808141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-10 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162627425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187041405] [to:+13474916985] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-10 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015039957] [to:+12404077368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:42 ip-10-0-64-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032E0501] -Feb 1 11:31:42 ip-10-0-0-11 mdr: 2016-02-01 11:31:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019495703] [to:+19014448280] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500032E0502] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12707902652] [to:+12709849485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703187691] [to:+14703334052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806850417] [to:+14804393814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174880111] [to:+19715123406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-10 mdr: 2016-02-01 11:31:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0503] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-10 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:43 ip-10-0-0-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19129968510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:43 ip-10-0-64-11 mdr: 2016-02-01 11:31:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:18063329479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997439] [to:19143279423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789763] [to:18033207621] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433173781] [to:+19292200741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054168812] [to:+14692053160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614724275] [to:+16614024953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:17272280320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204103303] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:16472338566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15309170237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-21 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:44 ip-10-0-64-10 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-11 mdr: 2016-02-01 11:31:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:44 ip-10-0-0-10 mdr: 2016-02-01 11:31:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406799632] [to:+13477866489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368611] [to:17047740519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18704768400] [to:+13214063587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408970] [to:14105961313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164198350] [to:+16477997381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005349] [to:14187176328] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005349] [to:14187176328] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911502] [to:14165770210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049491] [to:15022247964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022104336] [to:+19028019375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-10 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:45 ip-10-0-64-11 mdr: 2016-02-01 11:31:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:45 ip-10-0-0-11 mdr: 2016-02-01 11:31:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419727] [to:14086242778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109600793] [to:+12136300211] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777147] [to:12704073829] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16044014018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185995246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632047] [to:18452158691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303271176] [to:+12132953178] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019078860] [to:+13214067622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-11 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15028075081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148142982] [to:+16136042254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004173] [to:19022107129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:46 ip-10-0-64-10 mdr: 2016-02-01 11:31:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:46 ip-10-0-0-11 mdr: 2016-02-01 11:31:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19257592737] [to:+19252382941] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0504] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879171] [to:18122169380] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879171] [to:18122169380] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009897] [to:13616338365] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898500] [to:19197572850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14344773817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777011] [to:18599925301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:17605321481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144318149] [to:+14387931040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:47 ip-10-0-0-10 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-10 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:47 ip-10-0-64-11 mdr: 2016-02-01 11:31:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032E0505] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657109] [to:19079034283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013079396] [to:+19018427013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:17323418720] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543141634] [to:19546382728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049512979] [to:+19727503297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149028230] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046008210] [to:+12813066520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079409] [to:14383934025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138888825] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167106452] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853694791] [to:+19199166460] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735756] [to:17606412352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387930985] [to:15146255566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735756] [to:17606412352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377781] [to:13343245390] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-11 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-11 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:48 ip-10-0-64-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:48 ip-10-0-0-10 mdr: 2016-02-01 11:31:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023042910] [to:+18678883952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886937] [to:+13866012502] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030026] [to:15062604251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755123] [to:17314381630] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-21 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447932456870] [to:+447451232197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15408941840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699852] [to:12403204416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558308] [to:19802489898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787142313] [to:+17786549385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-11 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-11 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407173722] [to:+17279987517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:49 ip-10-0-64-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606331229] [to:+12604071128] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:49 ip-10-0-0-10 mdr: 2016-02-01 11:31:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19418225207] [to:+19412642744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967515] [to:18032906155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796507] [to:15678762223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-20 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451223248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040546] [to:15064353655] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:14232412191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:16412181296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-21 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212747] [to:+447470428051] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473563] [to:19313193388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097001030] [to:18073230728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:50 ip-10-0-64-11 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:50 ip-10-0-0-10 mdr: 2016-02-01 11:31:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634572] [to:18174957841] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143481] [to:18039682659] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063409917] [to:+14703336450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-10 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073123703] [to:+14073372611] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368611] [to:17047740519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630241] [to:17743198072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125263] [to:18563049642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163171627] [to:+16477999572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:51 ip-10-0-0-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691202] [to:13152122034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-10 mdr: 2016-02-01 11:31:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:51 ip-10-0-64-11 mdr: 2016-02-01 11:31:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067511298] [to:+14703334844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136714173] [to:+14357764699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:15802807378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042512021] [to:+16264278939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968425] [to:17577399113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329940684] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-11 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-11 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089467611] [to:17085132331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17169986673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:52 ip-10-0-0-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252098762] [to:+13609727400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:52 ip-10-0-64-10 mdr: 2016-02-01 11:31:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-20 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125395508] [to:+17605899166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099044260] [to:+12132951856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480916] [to:17165102121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025214889] [to:+17123826304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562250206] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846149] [to:17329840777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204103303] [to:+16026384733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414127119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404632802] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-11 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273661560] [to:+17277679397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:53 ip-10-0-64-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:16785446379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:53 ip-10-0-0-10 mdr: 2016-02-01 11:31:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625942] [to:19375737998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563070954] [to:+17605896142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193461] [to:17249317470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037035967] [to:+15617664601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125690989] [to:+13053405673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678448451] [to:+12672732500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-10 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-10 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19104747051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034857] [to:17248413143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988624] [to:19723428822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:54 ip-10-0-64-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:54 ip-10-0-0-11 mdr: 2016-02-01 11:31:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249686501] [to:+19705481416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863847953] [to:13523483090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807290261] [to:+16464179127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743004] [to:12157889272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338466] [to:17705405057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479676633] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19418077578] [to:+16467691064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783821831] [to:+16784123364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065940637] [to:+12138613581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122783086] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562889006] [to:+12488347563] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362440027] [to:+13366450923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822395852] [to:+19729470297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049557515] [to:+12048080115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17747668815] [to:+17748554504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063294862] [to:+14703336423] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344193182] [to:+15103226892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804836325] [to:+12132952298] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023036707] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479846002] [to:+13475185574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199790] [to:17013013331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872209285] [to:+15873151836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076669] [to:16785256240] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:55 ip-10-0-0-11 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-11 mdr: 2016-02-01 11:31:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17733547921] [to:+17736669416] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:55 ip-10-0-64-10 mdr: 2016-02-01 11:31:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997439] [to:19143279423] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-21 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-11 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954055] [to:18159557097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327080] [to:19799856381] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169985158] [to:+13479569251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318969221] [to:+19292689520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798065] [to:16143956724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798065] [to:16143956724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017100254] [to:+15624560042] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:56 ip-10-0-64-10 mdr: 2016-02-01 11:31:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672699789] [to:+12156667437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:56 ip-10-0-0-11 mdr: 2016-02-01 11:31:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17028072187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623721461] [to:+15092622889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165609780] [to:+17162790385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478740523] [to:+16475039259] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697322420] [to:+19705481625] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056079] [to:19025410220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313067612] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685041] [to:13043088973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554989] [to:17404667767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-11 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805317] [to:15194100809] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-11 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:57 ip-10-0-64-10 mdr: 2016-02-01 11:31:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:57 ip-10-0-0-10 mdr: 2016-02-01 11:31:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17169986673] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017034] [to:19105840891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158211] [to:15878880544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477800024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16139791977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145560990] [to:+13479788088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14028060494] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732068] [to:19048944225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-10 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025770626] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572408970] [to:14432770842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-20 mdr: 2016-02-01 11:31:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670858] [to:+447946329649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:58 ip-10-0-0-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:58 ip-10-0-64-11 mdr: 2016-02-01 11:31:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108006608] [to:+14434530366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129525650] [to:17735712928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-10 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-10 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-10 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-10 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:12055698936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-21 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:FACEBOOK] [to:+447520671851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-10 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475309176] [to:+16477995727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125690989] [to:+13053405673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233715362] [to:+16783941641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-10 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306223924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:31:59 ip-10-0-0-11 mdr: 2016-02-01 11:31:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041339] [to:12403517460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:31:59 ip-10-0-64-11 mdr: 2016-02-01 11:31:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014381539] [to:+12132957726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485269] [to:16822274428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145912646] [to:+14506391603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002584] [to:18157864518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019967093] [to:+15204335323] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419408262] [to:+15412488292] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17176005780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17176005780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072808441] [to:+14072681387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035628899] [to:+16034138121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147787591] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12392190402] [to:12396926889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141435] [to:18192150964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:00 ip-10-0-64-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338466] [to:17705405057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-10 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052347] [to:14692458558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:00 ip-10-0-0-11 mdr: 2016-02-01 11:32:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068454] [to:13136246677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-10 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404592022] [to:+14439737477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-0-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219990725] [to:16625442675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182612090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-0-20 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447936996807] [to:+447451221289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:01 ip-10-0-0-11 mdr: 2016-02-01 11:32:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:01 ip-10-0-64-11 mdr: 2016-02-01 11:32:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228350] [to:18182922234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193565] [to:16179523959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001482] [to:16172018391] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480916] [to:17165102121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-10 mdr: 2016-02-01 11:32:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-11 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459133] [to:14197780016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:02 ip-10-0-0-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162019] [to:14076162393] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:02 ip-10-0-64-10 mdr: 2016-02-01 11:32:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691791] [to:17656318246] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533736] [to:12159087885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086820] [to:12174916362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-11 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287682259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-11 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918279] [to:+14388042745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690352] [to:12488184363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-11 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028697] [to:13049923540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-10 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:03 ip-10-0-0-11 mdr: 2016-02-01 11:32:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:03 ip-10-0-64-10 mdr: 2016-02-01 11:32:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133012490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16468740220] [to:+17185043084] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485745076] [to:+12138024938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-10 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530689] [to:18709263273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125084545] [to:+19142793085] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604315364] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364649] [to:+18108527927] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438616] [to:16038457642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715463] [to:14138835916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127267] [to:17863267205] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-10 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485269] [to:16822274428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:04 ip-10-0-64-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:04 ip-10-0-0-11 mdr: 2016-02-01 11:32:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227076] [to:14802497092] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592660] [to:19128509829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347092] [to:17734127790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614052283] [to:15856155969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124141010] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049962986] [to:+16042594982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133012490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234286] [to:17208099109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183129707] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355091] [to:12602208963] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042217861] [to:+18046245890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-10 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635622400] [to:12707480872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-10 mdr: 2016-02-01 11:32:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:14059487068] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178613817] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-64-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-20 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:05 ip-10-0-0-11 mdr: 2016-02-01 11:32:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231696] [to:19783775263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044151814] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444212] [to:14782588661] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066480] [to:12403839152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183849215] [to:+18456220502] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859445472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467038751] [to:+14692054216] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149724698] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12198401110] [to:+19084095118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-10 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:06 ip-10-0-64-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034334] [to:17246915536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-10 mdr: 2016-02-01 11:32:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:06 ip-10-0-0-11 mdr: 2016-02-01 11:32:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:14044459094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968687] [to:18653612836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328177901] [to:+18328045567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145768973] [to:+14387922513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17814357417] [to:18046051243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:07 ip-10-0-0-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015039957] [to:+12404077368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-11 mdr: 2016-02-01 11:32:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:07 ip-10-0-64-10 mdr: 2016-02-01 11:32:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817001303] [to:15819839821] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995561] [to:18122052926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997439] [to:18452406067] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274103653] [to:+12162396947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419242] [to:18037164631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338466] [to:17705405057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018044] [to:14096788622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332579] [to:13042839638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062049565] [to:+13475088975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438586601] [to:+18134301810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778122] [to:16462621876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402738934] [to:+12408924193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:08 ip-10-0-0-11 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:08 ip-10-0-64-10 mdr: 2016-02-01 11:32:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533914850] [to:+15635387891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-10 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475136335] [to:+14242866185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-10 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923253] [to:+12264559384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:09 ip-10-0-0-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:09 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695323429] [to:19152176788] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550542] [to:12602371283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087542238] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868173] [to:18046848639] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377915] [to:15026000170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548231] [to:18322967692] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054202886] [to:18054100129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346206041] [to:+18133204623] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614052283] [to:15856155969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438252927] [to:+16466875718] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:10 ip-10-0-0-11 mdr: 2016-02-01 11:32:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892423471] [to:+16474919852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:10 ip-10-0-64-10 mdr: 2016-02-01 11:32:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094930] [to:17034542605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346206041] [to:+18133204623] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049140040] [to:+19162455494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405750324] [to:+12405538806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048257860] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334574] [to:19898200603] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162048091] [to:+16163266488] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493541] [to:19102472261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493541] [to:19102472261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-21 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040124] [to:19293268587] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-10 mdr: 2016-02-01 11:32:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:11 ip-10-0-0-11 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040124] [to:19293268587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:11 ip-10-0-64-10 mdr: 2016-02-01 11:32:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12258032166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18062929167] [to:+17205999302] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:16099709995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045332512] [to:+17408797130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879648] [to:14173199941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664316] [to:13044767758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15029746306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661062] [to:13235930220] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17607157532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805317] [to:15194100809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129126734] [to:+15129527399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17727776680] [to:+17726177397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:12 ip-10-0-0-10 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:12 ip-10-0-64-11 mdr: 2016-02-01 11:32:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434308348] [to:+12138023146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174880111] [to:+19715123406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736786099] [to:+17089468698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14165230059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048086830] [to:12046204482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739000489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14842802492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:13 ip-10-0-0-11 mdr: 2016-02-01 11:32:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:13 ip-10-0-64-10 mdr: 2016-02-01 11:32:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022505762] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B40201] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072225538] [to:+19142286569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145805754] [to:+16145171542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438221] [to:+13478685098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477866489] [to:15406799632] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857649568] [to:+18639491152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315380847] [to:+13309157452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15034969947] [to:+15034868481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-11 mdr: 2016-02-01 11:32:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411048] [to:12262242316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:14 ip-10-0-0-11 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:14 ip-10-0-64-10 mdr: 2016-02-01 11:32:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306220352] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690352] [to:12488184363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005171] [to:17096855343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167106452] [to:+16169524345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503231585] [to:+13478022507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127267] [to:17863267205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319801005] [to:16314137101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228350] [to:18182922234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625961554] [to:+18629551748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-10 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-10 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328177901] [to:+18328045567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:15 ip-10-0-64-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-20 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520671773] [to:+447513266963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:15 ip-10-0-0-11 mdr: 2016-02-01 11:32:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498949] [to:16194514605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:12108158010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024713849] [to:+19027058450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074858] [to:16104251091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220671] [to:17814292452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B40202] -Feb 1 11:32:16 ip-10-0-64-10 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:16 ip-10-0-64-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-11 mdr: 2016-02-01 11:32:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428486] [to:19045087529] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864049826] [to:+12482833462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:16 ip-10-0-0-10 mdr: 2016-02-01 11:32:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642213651] [to:+16475569075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500321] [to:14842738654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077253] [to:15147962954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564493717] [to:+13476568006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899441219] [to:+19894550451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583462] [to:+19148291948] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18047291917] [to:+18046244676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941364] [to:16787918579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243262] [to:18047749243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053047682] [to:+18637347395] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:12766907826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:17 ip-10-0-0-10 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:17 ip-10-0-64-11 mdr: 2016-02-01 11:32:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596348] [to:15737198808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187690] [to:19143469031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136037277] [to:+17348228922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800847] [to:13018148092] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058226842] [to:+16477992946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004459] [to:19028801906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049302] [to:13167795872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13043896227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967643] [to:15136680247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-10 mdr: 2016-02-01 11:32:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058114] [to:19024495150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:18 ip-10-0-0-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:18 ip-10-0-64-11 mdr: 2016-02-01 11:32:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278578481] [to:16202529753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764699] [to:13136714173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013235419] [to:+13478968933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195691459] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:13343796594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068884669] [to:+15068042016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063218850] [to:+15068031100] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-10 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-11 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:19 ip-10-0-0-10 mdr: 2016-02-01 11:32:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483085810] [to:+19893147529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:19 ip-10-0-64-11 mdr: 2016-02-01 11:32:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14028060494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252628680] [to:+18326502532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:17059803487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262510709] [to:+12135593152] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025703924] [to:+13214067026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064270288] [to:+15068018715] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558624] [to:19372417463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133285333] [to:+12065827532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049962986] [to:+16042594982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716073] [to:+14388097045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:20 ip-10-0-64-11 mdr: 2016-02-01 11:32:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197780016] [to:+14197459133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-11 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:20 ip-10-0-0-10 mdr: 2016-02-01 11:32:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835063] [to:14433607551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313469428] [to:+15169341537] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066184229] [to:+14706734278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833352] [to:14092218878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048441763] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17814357417] [to:18046051243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092407] [to:19028403124] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502994] [to:13107349795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-21 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849218] [to:12703702023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085910056] [to:+12085012601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274103653] [to:+12162396947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-64-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-10 mdr: 2016-02-01 11:32:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569427] [to:17068332943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:21 ip-10-0-0-11 mdr: 2016-02-01 11:32:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588681] [to:14408227659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065292176] [to:+13064000830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336790] [to:18016289466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791271] [to:17163812202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028128005] [to:+17027181583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178182104] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652206426] [to:+14155212594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109087591] [to:+19715129409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:22 ip-10-0-0-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677049] [to:18039407512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-11 mdr: 2016-02-01 11:32:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:22 ip-10-0-64-10 mdr: 2016-02-01 11:32:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154556] [to:+18572326657] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13344750095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143476271] [to:+16474942127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801272] [to:16469307710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487344] [to:18188234417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-20 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122783086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078585694] [to:+19148208607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995178] [to:12294122613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:16175996264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:23 ip-10-0-0-10 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14034041819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-11 mdr: 2016-02-01 11:32:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:16789951389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:23 ip-10-0-64-10 mdr: 2016-02-01 11:32:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18184030701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:14388968753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734737] [to:17063150711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697736] [to:17573271619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697736] [to:17573271619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384925370] [to:+14387943046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042995346] [to:+12048086781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-11 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12066296985] [to:14258304530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099549315] [to:+14158535623] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-64-11 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-10 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:24 ip-10-0-0-20 mdr: 2016-02-01 11:32:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447871769353] [to:+447520624741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174018905] [to:+12138024728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382412] [to:13368296232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239305882] [to:+15109482557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074563373] [to:+14072160331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089499066] [to:+19142795622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12185562514] [to:+12182031761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995561] [to:18122052926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18108756857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477204288] [to:+16474965388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-10 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-11 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:25 ip-10-0-0-10 mdr: 2016-02-01 11:32:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168880279] [to:+16475038918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:25 ip-10-0-64-11 mdr: 2016-02-01 11:32:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538806] [to:12405750324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202336] [to:14439382897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239035827] [to:+12134786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472076314] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-10 mdr: 2016-02-01 11:32:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:26 ip-10-0-64-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075103] [to:15147756718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:26 ip-10-0-0-11 mdr: 2016-02-01 11:32:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452757515] [to:+18453632660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:16465468727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231875] [to:19784232101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19025770626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559384] [to:12267923253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910959] [to:16125999285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024938] [to:12485745076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490632] [to:19044050332] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12699088367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077253] [to:15147962954] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537143] [to:12095563432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-10 mdr: 2016-02-01 11:32:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:16142547863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:27 ip-10-0-0-10 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:27 ip-10-0-64-11 mdr: 2016-02-01 11:32:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025469608] [to:+16233839291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784991487] [to:+17747288291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:17059198455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822314426] [to:17579556675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15033587116] [to:+19093405810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526310668] [to:+17866515349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-10 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-10 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995561] [to:18122052926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:28 ip-10-0-0-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483792] [to:15055156819] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:28 ip-10-0-64-11 mdr: 2016-02-01 11:32:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-20 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:15803401358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126999584] [to:+18127777164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898341359] [to:+12897790330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-10 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:29 ip-10-0-0-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742573414] [to:+14017214303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-11 mdr: 2016-02-01 11:32:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864049826] [to:+12482833462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:29 ip-10-0-64-10 mdr: 2016-02-01 11:32:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154853] [to:+15125759169] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801272] [to:16469307710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695967] [to:+17278602712] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18453009656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316083086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-11 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092407] [to:19028042248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:13473728981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282731] [to:+13479139204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:30 ip-10-0-0-10 mdr: 2016-02-01 11:32:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:14232412191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-10 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:30 ip-10-0-64-11 mdr: 2016-02-01 11:32:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087542238] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E80201] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168880279] [to:+16475038918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064270288] [to:+15068018715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228530] [to:17873754799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:15622594190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405774997] [to:+15672506460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347966657] [to:+17348211034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145797311] [to:+16149964609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495596] [to:18146739039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192706072] [to:+14197316244] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17378880305] [to:+12148146759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740343] [to:+17727747220] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:31 ip-10-0-64-11 mdr: 2016-02-01 11:32:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554504] [to:17747668815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:31 ip-10-0-0-10 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025703924] [to:+13214067026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-20 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522853959] [to:+19084095570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315715] [to:18502128799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-20 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028072187] [to:+17026748182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188580253] [to:+15146006841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898341359] [to:+12897790330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408972] [to:19042145571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-64-11 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642469] [to:19412646874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735624403] [to:+14692058083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-10 mdr: 2016-02-01 11:32:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:32 ip-10-0-0-11 mdr: 2016-02-01 11:32:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324384756] [to:+17636849493] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159087885] [to:+12677533736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-21 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:17065348549] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023220179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-10 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671554] [to:+16474952180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:33 ip-10-0-0-11 mdr: 2016-02-01 11:32:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:33 ip-10-0-64-11 mdr: 2016-02-01 11:32:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488184363] [to:+13137690352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024093025] [to:+12027179806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472680727] [to:+13475186877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805279821] [to:+15874084503] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15094312831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317903560] [to:+16319800428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-10 mdr: 2016-02-01 11:32:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:34 ip-10-0-64-11 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:34 ip-10-0-0-10 mdr: 2016-02-01 11:32:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-20 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921212920] [to:+447418328425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003090201] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125766] [to:18562498406] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660433] [to:15046072539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568526] [to:17068290774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022291858] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142709761] [to:+18573001694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047570] [to:14352298521] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15066261286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:18129878185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-11 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:35 ip-10-0-64-11 mdr: 2016-02-01 11:32:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:35 ip-10-0-0-10 mdr: 2016-02-01 11:32:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406799632] [to:+13477866489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782358574] [to:+13479787388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625451] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049511997] [to:+15612318597] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133285333] [to:+12065827532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479877458] [to:+17254000155] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347966657] [to:+17348211034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040332] [to:+13866013212] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744427] [to:17319266004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455443712] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179798639] [to:+12606337387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737327374] [to:+17736690278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044359809] [to:+17073464855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022247964] [to:+15028049491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-20 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921212920] [to:+447418328425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003090202] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171616] [to:12283421276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143698] [to:18608101112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-20 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479543399] [to:15059858537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625451] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604816187] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:36 ip-10-0-0-11 mdr: 2016-02-01 11:32:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-11 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:36 ip-10-0-64-10 mdr: 2016-02-01 11:32:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626683669] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027683] [to:17059872130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417077053] [to:+19715129131] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136332885] [to:+16042652707] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154509139] [to:+19177730510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379358191] [to:+13479066175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129409] [to:16109087591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328761586] [to:+18572326532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019078860] [to:+13214067622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200025] [to:18593171922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733804145] [to:+12019956207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-10 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16519832330] [to:+16125021383] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:37 ip-10-0-64-11 mdr: 2016-02-01 11:32:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417077053] [to:+19715129131] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-11 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14349411550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:37 ip-10-0-0-10 mdr: 2016-02-01 11:32:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532485181] [to:+12533361652] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839291] [to:16025469608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449068] [to:+17273629381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16065256226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060328] [to:14027081683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19718087277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18706237193] [to:+14158536490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389866] [to:18145530889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668623] [to:13603531209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699187] [to:17175821148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193201760] [to:+12264555747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425021] [to:13862887451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-10 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:38 ip-10-0-64-11 mdr: 2016-02-01 11:32:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562250206] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:38 ip-10-0-0-11 mdr: 2016-02-01 11:32:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165096207] [to:+19166370649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672354] [to:+18194141041] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082204408] [to:+19739639298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624733416] [to:15308285446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-20 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447759127554] [to:+447418322841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550991] [to:14109467326] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477190423] [to:+12264559572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403981777] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011152] [to:18193290864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-11 mdr: 2016-02-01 11:32:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:39 ip-10-0-64-11 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:39 ip-10-0-0-10 mdr: 2016-02-01 11:32:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474073950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739436375] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17162430548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988461] [to:13044398860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202920094] [to:+15094360132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220420] [to:18135036892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:15127341450] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085473] [to:17174493103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-64-11 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011152] [to:18193290864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17188770336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-10 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048397175] [to:+14158534719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:40 ip-10-0-0-11 mdr: 2016-02-01 11:32:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307379050] [to:+15103405304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067511298] [to:+14703334844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097823854] [to:+12133550267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012601] [to:12085910056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260917] [to:19162287340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523483090] [to:+17863847953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835132] [to:14435340556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087449] [to:15404561205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435992488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377034] [to:13309578968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15309214423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149498517] [to:+18133087021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:41 ip-10-0-64-11 mdr: 2016-02-01 11:32:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-10 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432679742] [to:+14693016538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:41 ip-10-0-0-11 mdr: 2016-02-01 11:32:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048397175] [to:+14158534719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479943627] [to:+16474989552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539485] [to:17249688365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408713083] [to:+19199161402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:16099709995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109060254] [to:+16109105199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057320] [to:15674298784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704073829] [to:+18597777147] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139124] [to:12039063694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297458] [to:12133328802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108756857] [to:+15863315112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:13473728981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12062343537] [to:+12064008438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:42 ip-10-0-64-10 mdr: 2016-02-01 11:32:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096368249] [to:+19513070312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:42 ip-10-0-0-11 mdr: 2016-02-01 11:32:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792809327] [to:+19038486852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455494] [to:15049140040] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777396] [to:12602050306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042990539] [to:+19172660351] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078529128] [to:+13477146344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312121943] [to:+17605895075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256412] [to:18633262894] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-20 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622290] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019495703] [to:+19014448280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:43 ip-10-0-64-10 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-10 mdr: 2016-02-01 11:32:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022463590] [to:+12026609604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:43 ip-10-0-0-11 mdr: 2016-02-01 11:32:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568402] [to:13472643022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068454] [to:13136246677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387637760] [to:+12262717610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527276] [to:18109085205] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199034356] [to:+12264554486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064002901] [to:13063172522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-20 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451212614] [to:+447879287611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17149099501] [to:+17142612122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103942234] [to:+18102218107] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677917] [to:16788522384] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:44 ip-10-0-0-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054431005] [to:+12132896519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028778509] [to:+19027021856] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-10 mdr: 2016-02-01 11:32:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E00202] -Feb 1 11:32:44 ip-10-0-0-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12345214860] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:44 ip-10-0-64-11 mdr: 2016-02-01 11:32:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569108] [to:15089584440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898200603] [to:+19895334574] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825935] [to:19045729644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-21 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063050921] [to:+16474910796] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14232187162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:15144736560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:45 ip-10-0-64-10 mdr: 2016-02-01 11:32:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:45 ip-10-0-0-11 mdr: 2016-02-01 11:32:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375737998] [to:+19086625942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107691292] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184510597] [to:+19725285637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16397394786] [to:16393178145] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205999302] [to:18062929167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358075] [to:13306973191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13203345475] [to:+15874050373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-0-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343819] [to:13197435634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556684] [to:19097094479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-11 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:46 ip-10-0-64-10 mdr: 2016-02-01 11:32:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739747] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136680247] [to:+13478967643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049288000] [to:+17786530249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359768] [to:15084156096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740615] [to:18083332313] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644943346] [to:+18645010244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038518943] [to:+16034133758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13303385462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042633606] [to:+13866015760] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852213] [to:16065385392] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042839638] [to:+17273332579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243290] [to:18045867462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-10 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145797311] [to:+16149964609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:47 ip-10-0-64-11 mdr: 2016-02-01 11:32:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:47 ip-10-0-0-11 mdr: 2016-02-01 11:32:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:18058863942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176344399] [to:+16177065938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018148092] [to:+16319800847] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477842805] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:13159559784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411883] [to:17708662405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17758150576] [to:+17027794235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13157663928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327557] [to:16822024161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19544444759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:48 ip-10-0-64-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345360069] [to:+13479192759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-10 mdr: 2016-02-01 11:32:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:48 ip-10-0-0-11 mdr: 2016-02-01 11:32:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967734] [to:15613863274] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269515] [to:19122249285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17254000078] [to:19178472486] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:15632750247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077054831] [to:+19542993017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138999664] [to:+16474911719] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595160] [to:18605388049] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:13236475249] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653156640] [to:+18653471745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343894955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-20 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447572507758] [to:+447451234931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15129643278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359609] [to:13048596426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137375] [to:13157836455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162746] [to:13473650424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575092943] [to:+18046243425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:49 ip-10-0-0-11 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673536159] [to:+12134547191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:49 ip-10-0-64-10 mdr: 2016-02-01 11:32:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023148711] [to:+12264559689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733132642] [to:13237148364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16024233422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552160] [to:12393400246] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030057] [to:15063238881] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791049] [to:17165171597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:12089896657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18597435438] [to:+19177376463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12695489466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-21 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447442498513] [to:+447451231542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-11 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-11 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:50 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:50 ip-10-0-64-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433607551] [to:+14435835063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135754417] [to:+14132715098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-11 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236017] [to:18142053201] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364650983] [to:+13367018003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142462001] [to:+14387940918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-11 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697360] [to:19892549622] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:51 ip-10-0-64-10 mdr: 2016-02-01 11:32:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:51 ip-10-0-0-10 mdr: 2016-02-01 11:32:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302750602] [to:+13479376498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898492] [to:14848622852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:13154509139] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854091610] [to:+15852822875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422431] [to:12816903450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-21 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077054831] [to:+19542993017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056285192] [to:+14053005446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063042837] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602518044] [to:+12138023432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812356126] [to:+14387928151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806681246] [to:+15874050478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018715] [to:15064270288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630241] [to:17743198072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-11 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:52 ip-10-0-0-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:52 ip-10-0-64-10 mdr: 2016-02-01 11:32:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305500383] [to:+13309157219] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418451] [to:19057146165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-10 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-11 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:53 ip-10-0-0-10 mdr: 2016-02-01 11:32:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145014997] [to:+14388077274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:53 ip-10-0-64-10 mdr: 2016-02-01 11:32:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244676] [to:18047291917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501895] [to:18327989706] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392472859] [to:+14804391493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791215] [to:17168044239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139830554] [to:+16136042278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054325973] [to:+12897681629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126145228] [to:16467520758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E90201] -Feb 1 11:32:54 ip-10-0-64-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202336] [to:14439382897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:54 ip-10-0-64-10 mdr: 2016-02-01 11:32:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316087786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:54 ip-10-0-0-11 mdr: 2016-02-01 11:32:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566902367] [to:+13477735934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082394] [to:16312999114] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931040] [to:15144318149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135036892] [to:+18139220420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787538120] [to:+19292200259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196661223] [to:+18572405046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178472486] [to:+17254000078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16478364797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013316511] [to:+17604745791] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093131261] [to:+18572401714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488500767] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128416419] [to:+17248035714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147959756] [to:+16149963176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102254569] [to:+13475088429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692718965] [to:+13479139597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107475980] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096368249] [to:+19513070312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E80202] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076168092] [to:+18724003666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875856505] [to:+16474914647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049159138] [to:+15086236605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196518304] [to:+14197767380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E00201] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788919017] [to:+18639493108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894342012] [to:+16139096630] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-20 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451217153] [to:+447951546750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313383777] [to:+18572194980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263472684] [to:+12262407191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12504639948] [to:+15873157827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:55 ip-10-0-64-11 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708566065] [to:+15103228925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-10 mdr: 2016-02-01 11:32:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:55 ip-10-0-0-11 mdr: 2016-02-01 11:32:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311857] [to:+19142817867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808131] [to:18102213639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167056329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285145827] [to:+17194264412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455494] [to:19165819273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889181] [to:12522029780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:18058863942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413956659] [to:+15416341532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-10 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19713400526] [to:+19715124690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-10 mdr: 2016-02-01 11:32:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:56 ip-10-0-64-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:56 ip-10-0-0-11 mdr: 2016-02-01 11:32:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712402556] [to:+19715129713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238367343] [to:+17346669188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18183035186] [to:+12135296115] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138469] [to:12049608674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673536159] [to:+12134547191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-20 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18054100129] [to:+18054202886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153038262] [to:+12676076700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-21 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405715] [to:19418794942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-21 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447517021894] [to:+447418322588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699187] [to:17172268755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-10 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319801005] [to:16314137101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E90202] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433173781] [to:+12148149460] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988461] [to:13044398860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105199] [to:16109060254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:57 ip-10-0-64-11 mdr: 2016-02-01 11:32:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:57 ip-10-0-0-10 mdr: 2016-02-01 11:32:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146215812] [to:+14388040275] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539485] [to:17249688365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173817976] [to:15806473355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16052318797] [to:16059063716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678408] [to:12485336968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468164] [to:17733019741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:58 ip-10-0-64-11 mdr: 2016-02-01 11:32:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-11 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995785] [to:12178214042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:58 ip-10-0-0-10 mdr: 2016-02-01 11:32:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189878483] [to:+16784338606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925733] [to:13065377394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:17788914981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:17542346724] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825057] [to:15853319251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708566065] [to:+15103228925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432012] [to:19312529796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:18598039076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745887] [to:14104767809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025270] [to:15137466572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:32:59 ip-10-0-64-10 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:32:59 ip-10-0-0-11 mdr: 2016-02-01 11:32:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-11 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501895] [to:18327989706] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-10 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-11 mdr: 2016-02-01 11:33:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:00 ip-10-0-64-10 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:00 ip-10-0-0-11 mdr: 2016-02-01 11:33:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242846920] [to:18317760058] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016443769] [to:+13479196512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500321] [to:17039697411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479298161] [to:+16477997337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665240] [to:15619454014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017626] [to:19043004017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14154661453] [to:15597595767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173983426] [to:+15207278595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:18033619481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147206] [to:12489337191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:18123916922] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:01 ip-10-0-64-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742804943] [to:+15084168949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-11 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:01 ip-10-0-0-10 mdr: 2016-02-01 11:33:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-10 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035979559] [to:+15873231529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654052219] [to:+15103358017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168787116] [to:+14696293943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952452] [to:16477743187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852221487] [to:+19172593703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800066] [to:15754418638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:02 ip-10-0-64-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-10 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041787] [to:15063270545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-11 mdr: 2016-02-01 11:33:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:02 ip-10-0-0-20 mdr: 2016-02-01 11:33:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340680] [to:13017075644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043653320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707967] [to:13152093000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13365588797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082219] [to:14045799770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311857] [to:+19142817867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:03 ip-10-0-0-11 mdr: 2016-02-01 11:33:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249490620] [to:+17248034522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:03 ip-10-0-64-10 mdr: 2016-02-01 11:33:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218746] [to:18109695234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093515] [to:19173641619] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-21 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169302126] [to:+17162793442] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144065] [to:+14242839314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063558] [to:17044495327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:12674442950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787221317] [to:+16784055246] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18452839237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549440] [to:12507318176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552160] [to:12393400246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14036137530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439264] [to:13469327057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-11 mdr: 2016-02-01 11:33:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785510520] [to:+19785335083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:04 ip-10-0-0-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-11 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:04 ip-10-0-64-10 mdr: 2016-02-01 11:33:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700679] [to:17044954029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:15877842073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852641267] [to:+19852735930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322390245] [to:+13308503633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681629] [to:19054325973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788302] [to:19176788352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255386] [to:+12482160111] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234402035] [to:+14237777919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705362] [to:18314068208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026049260] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082163766] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036266356] [to:+18033104541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182319130] [to:+19142286809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152122034] [to:+16467691202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234587351] [to:+19252397176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144002437] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:18019806738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526310668] [to:+17866515349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:14048441763] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15516664130] [to:15513583243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034109337] [to:+14018677604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852213] [to:16065385392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-10 mdr: 2016-02-01 11:33:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472076314] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:05 ip-10-0-0-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142589] [to:18599828018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:05 ip-10-0-64-11 mdr: 2016-02-01 11:33:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077846] [to:12344106218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15302156451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:06 ip-10-0-64-11 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:06 ip-10-0-64-10 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610782] [to:18326612282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:06 ip-10-0-64-10 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:06 ip-10-0-0-11 mdr: 2016-02-01 11:33:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147095426] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12676848101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485068] [to:17577483850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15059344950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874901] [to:17856390625] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-10 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:17206628486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:13475535657] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086576] [to:15188579422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:13475535657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:17206628486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19292878790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:16465314335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:15034217955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:15034217955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:07 ip-10-0-64-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-11 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:07 ip-10-0-0-10 mdr: 2016-02-01 11:33:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17064964060] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482833593] [to:13137284953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960370] [to:17205235544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:18323961960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19712823141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550320] [to:12266008851] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077710481] [to:+17072429017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286066648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233272299] [to:+14242868561] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003F30202] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12537782181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326612282] [to:+19172610782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-20 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13138264243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020014] [to:15819904772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19292878790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:16465314335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:12537782181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:18323961960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19407356416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668906] [to:19712823141] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16579991968] [to:+17185043102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804010] [to:12548337646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319251] [to:+15852825057] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038867] [to:+18597777450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433605487] [to:+13366452191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286066648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375737998] [to:+19086625942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:08 ip-10-0-0-10 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:08 ip-10-0-64-11 mdr: 2016-02-01 11:33:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854153162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286066648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050373] [to:13203345475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809532175] [to:+15874087205] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391124] [to:16025868417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:12013206109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-11 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:09 ip-10-0-64-11 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:09 ip-10-0-0-10 mdr: 2016-02-01 11:33:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605388049] [to:+19172595160] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063708066] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477851137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:16465523794] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082163766] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473563] [to:19315293277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691242] [to:17314606449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660351] [to:17042990539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066458131] [to:+15068039557] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-10 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833626] [to:17573390002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:10 ip-10-0-0-11 mdr: 2016-02-01 11:33:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:10 ip-10-0-64-11 mdr: 2016-02-01 11:33:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-21 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324918] [to:12054104581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324918] [to:12054104581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393404917] [to:+17726177663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:15125400439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421913] [to:18323428517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045867462] [to:+18046243290] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048596426] [to:+12139359609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-10 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432991] [to:17123550833] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:11 ip-10-0-64-11 mdr: 2016-02-01 11:33:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:11 ip-10-0-0-10 mdr: 2016-02-01 11:33:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024957920] [to:+19028019438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959462] [to:17069684125] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601664] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160331] [to:14074563373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807101] [to:13153989359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783849] [to:12293155472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-21 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-10 mdr: 2016-02-01 11:33:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205096657] [to:+13478021316] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173611016] [to:+17604743556] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012689667] [to:+12405732298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-10 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:12 ip-10-0-64-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:12 ip-10-0-0-11 mdr: 2016-02-01 11:33:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787918579] [to:+16783941364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433605487] [to:+13366452191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157688883] [to:+18563125638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179129657] [to:+19148291904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517969752] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776942] [to:16084386371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327577] [to:12607156227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049140040] [to:+19162455494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-21 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18198060986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433707034] [to:+14438550176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776942] [to:16084386371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142863662] [to:+16149963273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326407070] [to:+17323774919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808394699] [to:+15874050602] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155165632] [to:+19175805419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387940918] [to:15142462001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968802] [to:17065371886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322846255] [to:+17322582035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:13 ip-10-0-0-11 mdr: 2016-02-01 11:33:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:13 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951716] [to:16472858749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123941] [to:17705805095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018003] [to:13364650983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031644] [to:13085366145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-0-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852886] [to:13026354677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-11 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087542238] [to:+18572190549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173660329] [to:+13176444465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:14 ip-10-0-64-10 mdr: 2016-02-01 11:33:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708362193] [to:+13867423110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573341715] [to:+17185048968] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038877] [to:15069626144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703579038] [to:+15703977759] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145274] [to:14197905439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-10 mdr: 2016-02-01 11:33:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-10 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:15 ip-10-0-64-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:15 ip-10-0-0-11 mdr: 2016-02-01 11:33:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440124] [to:15182098749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-21 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065143099] [to:+13069932468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196235] [to:13026902725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:13239150620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12107691292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-10 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:16 ip-10-0-0-11 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806473355] [to:+18173817976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:16 ip-10-0-64-11 mdr: 2016-02-01 11:33:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025597] [to:16478257380] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178808961] [to:+19177248635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194507976] [to:13474406890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192761957] [to:+13476903451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708362193] [to:+13867423110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866291095] [to:+15103402043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] peiseubug injeungkodeu-ibnida] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455915253] [to:+17323058195] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-21 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018425205] [to:19016075640] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192107] [to:14802734207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062539752] [to:+19794265556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:17 ip-10-0-64-11 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:17 ip-10-0-0-10 mdr: 2016-02-01 11:33:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921165] [to:+13479193595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349411550] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665240] [to:15619454014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143875] [to:17542346724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022505762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-21 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232197] [to:+447932456870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-10 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:18 ip-10-0-64-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067622] [to:19019078860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:18 ip-10-0-0-11 mdr: 2016-02-01 11:33:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024957920] [to:+19028019438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999610] [to:19287077836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968590] [to:19312134313] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046380458] [to:19125714405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-0-11 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549385] [to:17787142313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-11 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748451] [to:17023794284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044359809] [to:+17073464855] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:19 ip-10-0-64-10 mdr: 2016-02-01 11:33:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219130] [to:17065585846] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920296] [to:13026041670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326503073] [to:13372221292] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-20 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977353] [to:18627552642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004811] [to:17097700643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195797787] [to:+12138027376] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748182] [to:17027471251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773696] [to:17812645721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103942234] [to:+18102218107] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042278] [to:16139830554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774919] [to:17326407070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040270] [to:+16612285598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134473421] [to:+18133206548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-10 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946133] [to:12017060296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289800959] [to:+17542220139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:20 ip-10-0-0-11 mdr: 2016-02-01 11:33:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:20 ip-10-0-64-11 mdr: 2016-02-01 11:33:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179523959] [to:+16172193565] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408420] [to:12269230052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18317760058] [to:+14242846920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411120] [to:15196585760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144736560] [to:+16477999724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612015739] [to:+12315987221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122249285] [to:+15169269515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:21 ip-10-0-64-10 mdr: 2016-02-01 11:33:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326505871] [to:16305389692] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-11 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070699] [to:+15068041937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:21 ip-10-0-0-10 mdr: 2016-02-01 11:33:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006569] [to:13239150620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102213639] [to:+13475808131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046292158] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18606552881] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019621] [to:12148611470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:22 ip-10-0-0-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564608491] [to:+13479139320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139096635] [to:+15102547551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-11 mdr: 2016-02-01 11:33:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:22 ip-10-0-64-10 mdr: 2016-02-01 11:33:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029747530] [to:+12606337115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-10 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19795752997] [to:+17133896065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17063614820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666964] [to:12423959241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-10 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-11 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477944370] [to:+17185043364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:23 ip-10-0-0-11 mdr: 2016-02-01 11:33:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:23 ip-10-0-64-10 mdr: 2016-02-01 11:33:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047546039] [to:+17784000395] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:15195691459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162700244] [to:+17187519085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345601] [to:18435627406] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797049] [to:17703569033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12897767723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379774] [to:17122097053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876267] [to:+12894600537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-11 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:24 ip-10-0-0-10 mdr: 2016-02-01 11:33:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-11 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854659343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:24 ip-10-0-64-10 mdr: 2016-02-01 11:33:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15022987392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174906475] [to:+15172585136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-10 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617632032] [to:+15612407177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-10 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024957920] [to:+19028019438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173817976] [to:15806473355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:25 ip-10-0-0-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:25 ip-10-0-64-11 mdr: 2016-02-01 11:33:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588929] [to:12166738208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-20 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447511075565] [to:+447418336845] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552160] [to:12393400246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145098787] [to:+18046246465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980132] [to:16475745314] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:15195691459] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193592162] [to:16264839370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193288225] [to:+19148609479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-10 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:26 ip-10-0-0-10 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:26 ip-10-0-64-11 mdr: 2016-02-01 11:33:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334723] [to:19788064899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145561837] [to:+13147868316] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398723347] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162784734] [to:+12162396181] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:12604661628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:12604661628] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:12604661628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13369081419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655090807] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:27 ip-10-0-0-10 mdr: 2016-02-01 11:33:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019440] [to:12507027337] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:27 ip-10-0-64-11 mdr: 2016-02-01 11:33:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285145827] [to:+17194264412] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044955572] [to:+14242768508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174018905] [to:+12138024728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044955572] [to:+14242768508] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631978] [to:+14693537786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066458131] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-10 mdr: 2016-02-01 11:33:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314907179] [to:15163432935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:28 ip-10-0-64-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:28 ip-10-0-0-11 mdr: 2016-02-01 11:33:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166285087] [to:+13308503616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822090] [to:15857142596] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093652] [to:17049237174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:12488500767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243290] [to:18045867462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849493] [to:18324384756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-21 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673576343] [to:+18133088901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602257330] [to:+12604076922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235350420] [to:+16784342054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527330] [to:15174556825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470500] [to:15623608802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B10201] -Feb 1 11:33:29 ip-10-0-0-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063007598] [to:+14692026313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:29 ip-10-0-0-11 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107393025] [to:+17817863543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:29 ip-10-0-64-10 mdr: 2016-02-01 11:33:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073295] [to:19854745931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293887] [to:14794381339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473645] [to:18652249503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172151506] [to:+15172527198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438244878] [to:+16602009682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773135] [to:14436948786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773135] [to:14436948786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B10202] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13857770040] [to:18016042084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:15877842073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-0-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-10 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040265] [to:+18133244599] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:30 ip-10-0-64-11 mdr: 2016-02-01 11:33:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:13345400068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383456681] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194788201] [to:+17727668770] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269900] [to:12073136257] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049513633] [to:+19175805719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+12262406722] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213101] [to:13184468793] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627622] [to:19185754694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:31 ip-10-0-0-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-10 mdr: 2016-02-01 11:33:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:31 ip-10-0-64-11 mdr: 2016-02-01 11:33:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046380458] [to:19123240947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733804145] [to:+12019956207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-10 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309578968] [to:+13302377034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977303] [to:15707060350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-10 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:32 ip-10-0-0-11 mdr: 2016-02-01 11:33:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134473421] [to:+18133206548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:32 ip-10-0-64-11 mdr: 2016-02-01 11:33:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19052209269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001509] [to:+18584804897] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15513583243] [to:+15516664130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149121326] [to:+15799148364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178833599] [to:+18722258246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613316886] [to:+19789697102] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078600] [to:15149449273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14036137530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077884912] [to:18072218161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603531209] [to:+19172668623] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:33 ip-10-0-64-11 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:33 ip-10-0-0-10 mdr: 2016-02-01 11:33:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896810626] [to:+16474918779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703579038] [to:+15703977759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802398503] [to:+15874004867] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175165735] [to:+13479788831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787005] [to:19713205048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787005] [to:19713205048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094519827] [to:+19162908740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691202] [to:13152122034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-20 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418322841] [to:+447759127554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953464] [to:14236939747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19166370933] [to:19163700336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477743187] [to:+16474952452] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:16143639364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299778691] [to:+13866015224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:34 ip-10-0-0-11 mdr: 2016-02-01 11:33:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833772] [to:14096702168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:34 ip-10-0-64-10 mdr: 2016-02-01 11:33:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787005] [to:19713205048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524845421] [to:+14072161130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625942] [to:19375737998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15142589509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145098787] [to:+18046246465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-21 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802611] [to:17864546736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011152] [to:18192086536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896544299] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-10 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18325715761] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:35 ip-10-0-64-10 mdr: 2016-02-01 11:33:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18325715761] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:35 ip-10-0-0-11 mdr: 2016-02-01 11:33:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941641] [to:14233715362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026354677] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128449932] [to:+19122084463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703579038] [to:+15703977759] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349049] [to:15022987392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925415] [to:14388865640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024079092] [to:+12676076436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383595] [to:17082967664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178995249] [to:+19282974329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023638165] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017384541] [to:+19727503193] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042288518] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444465] [to:13173660329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416816608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017384541] [to:+19727503193] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-11 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:36 ip-10-0-64-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-11 mdr: 2016-02-01 11:33:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:36 ip-10-0-0-10 mdr: 2016-02-01 11:33:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196444780] [to:+17027579179] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14028060494] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017384541] [to:+19727503193] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919279] [to:15109993934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437279] [to:17789268552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286809] [to:15182319130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138847436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987221] [to:15612015739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195208337] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-11 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-11 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159813496] [to:+16158431585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:37 ip-10-0-0-10 mdr: 2016-02-01 11:33:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:37 ip-10-0-64-10 mdr: 2016-02-01 11:33:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102213639] [to:+13475808131] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365200944] [to:+16504860086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032251] [to:14122007134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15065021354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139096635] [to:+15102547551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13126612211] [to:+14434530304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-11 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:38 ip-10-0-0-10 mdr: 2016-02-01 11:33:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037686784] [to:+13473438869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:38 ip-10-0-64-11 mdr: 2016-02-01 11:33:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191626] [to:19178620520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149337292] [to:+16466998945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056620163] [to:+16474911040] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185728781] [to:+15184151548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15059344950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262406] [to:12022464931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875960287] [to:+14387941938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037258644] [to:+19175638894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:16813130744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-11 mdr: 2016-02-01 11:33:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:39 ip-10-0-0-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143710220] [to:+14387922589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:39 ip-10-0-64-10 mdr: 2016-02-01 11:33:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159398057] [to:+13479806844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375644319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050201] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022102429] [to:+19027031277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808079] [to:12695338093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003AB0201] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138264243] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-11 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-11 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:40 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:40 ip-10-0-0-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:18019209237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364650983] [to:+13367018003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256662] [to:15877842073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740400] [to:+15089668796] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199992335] [to:+12264555913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003AB0202] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056517516] [to:+12262416119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-11 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588929] [to:12166738208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-21 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326877] [to:+447908842233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062903216] [to:+13069928524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-11 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452839237] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:41 ip-10-0-0-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243290] [to:18045867462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:41 ip-10-0-64-10 mdr: 2016-02-01 11:33:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623918083] [to:+13477981298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18193522333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029403515] [to:+19027043650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709855603] [to:+12138221186] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177397] [to:17727776680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:19082163766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234894243] [to:+17727668534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132705787] [to:+18133209716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473815] [to:15042352962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-11 mdr: 2016-02-01 11:33:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592614] [to:12703319713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:42 ip-10-0-64-10 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:42 ip-10-0-0-11 mdr: 2016-02-01 11:33:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785860922] [to:12293100986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167105427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037300135] [to:+12148146588] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246815626] [to:+14122301956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003050202] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-10 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:43 ip-10-0-0-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:43 ip-10-0-64-11 mdr: 2016-02-01 11:33:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19719018179] [to:+19715129905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854659343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058684408] [to:+18053942254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+15873280388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:12144559782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14036137530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256451] [to:19416762971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16104053563] [to:+14849869182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-10 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405917927] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-11 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18325715761] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:44 ip-10-0-0-10 mdr: 2016-02-01 11:33:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:44 ip-10-0-64-11 mdr: 2016-02-01 11:33:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508795275] [to:+18506315516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739562] [to:18146443146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152003024] [to:+13477962811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309798448] [to:+13477149419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066015030] [to:+12138225296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262032637] [to:+12262403373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822042] [to:18598665294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500321] [to:14842738654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-11 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:45 ip-10-0-64-11 mdr: 2016-02-01 11:33:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:45 ip-10-0-0-10 mdr: 2016-02-01 11:33:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656025056] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192751888] [to:+14158537710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406890] [to:+13194507976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001489] [to:12078944992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055289374] [to:+17053026099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416816608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348747] [to:18435933168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797504] [to:15183907629] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-21 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520625455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015008810] [to:+15612400803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019284] [to:17097716531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055418212] [to:+12897790711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592230] [to:19079470430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-11 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019211072] [to:+19014445131] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:46 ip-10-0-0-10 mdr: 2016-02-01 11:33:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:46 ip-10-0-64-10 mdr: 2016-02-01 11:33:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122006049] [to:14072233917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-20 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201877] [to:+447766226951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918147] [to:15068980238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12545923287] [to:+12547356090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876267] [to:+12894600537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752189248] [to:+13477368550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:17634431892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-11 mdr: 2016-02-01 11:33:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13308422137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:47 ip-10-0-0-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043653320] [to:+15612319123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:47 ip-10-0-64-10 mdr: 2016-02-01 11:33:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466864] [to:17035689815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195691459] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334844] [to:17067511298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304189540] [to:+15303623218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942931] [to:18056219402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767380] [to:14196518304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012479611] [to:+13476568548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373228161] [to:+12139731971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372401378] [to:+12138023830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-11 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322282492] [to:+19199164269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:48 ip-10-0-64-10 mdr: 2016-02-01 11:33:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:48 ip-10-0-0-11 mdr: 2016-02-01 11:33:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606449] [to:+13477691242] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436353312] [to:+18438888425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513377109] [to:18657484745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205235544] [to:+17194960370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199885145] [to:+12262410257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309798448] [to:+13477149419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-11 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:49 ip-10-0-64-10 mdr: 2016-02-01 11:33:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15516664130] [to:15513583243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:49 ip-10-0-0-10 mdr: 2016-02-01 11:33:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607156227] [to:+12602327577] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147540090] [to:+14387922065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480027] [to:13025843592] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164570614] [to:+15165977792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14028060494] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045867462] [to:+18046243290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145136429] [to:+19142069062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-20 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033120989] [to:+17256661224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473815] [to:15042352962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-20 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14034041819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568441] [to:17173333425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-0-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-11 mdr: 2016-02-01 11:33:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792534] [to:15853313611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:50 ip-10-0-64-10 mdr: 2016-02-01 11:33:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148745932] [to:+14693096326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-20 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451230135] [to:+447748395577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044398860] [to:+13477988461] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992448] [to:14017101298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388076740] [to:15142325382] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020435] [to:16037996854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-21 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198276823] [to:+19199166501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215256] [to:18087967253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-21 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447577995319] [to:+447418338470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059993315] [to:+12897680683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:51 ip-10-0-64-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-10 mdr: 2016-02-01 11:33:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101112] [to:+19543143698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:51 ip-10-0-0-11 mdr: 2016-02-01 11:33:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-20 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:12813520927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608908446] [to:+13479199805] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403198168] [to:+14132736690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14349411550] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14028060494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:15195208337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624162263] [to:15626942447] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500505] [to:15139047971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:52 ip-10-0-64-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019259] [to:18132634648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-11 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137466572] [to:+12138025270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:52 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085359] [to:18134474385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795655] [to:18132636043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192700784] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598039076] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-11 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305219] [to:16363585370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-10 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:53 ip-10-0-64-11 mdr: 2016-02-01 11:33:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:53 ip-10-0-0-10 mdr: 2016-02-01 11:33:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058513] [to:19022409499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403056465] [to:+13015699948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027920641] [to:+13479196658] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824360] [to:18482220288] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309798448] [to:+13477149419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733104702] [to:+12182031439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202451731] [to:+15204337276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:17576105063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:16783537568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-11 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13346722135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:54 ip-10-0-64-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:54 ip-10-0-0-10 mdr: 2016-02-01 11:33:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862560573] [to:+14197404862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17637421459] [to:12057175514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-21 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229496] [to:+447708761613] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16048257860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021928] [to:12282493213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049318274] [to:+13474863548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202451731] [to:+15204337276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488047] [to:15179626054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293743] [to:18506311314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328904836] [to:+16465470221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703602199] [to:+15703977150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098187237] [to:+13234865616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198309939] [to:+18438888321] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174142753] [to:+13473897098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435992488] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162287340] [to:+15169260917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145797311] [to:+16149964609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233272299] [to:+14242868561] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F30201] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19363911351] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244157073] [to:+12133550131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193288225] [to:+19148609479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187712503] [to:+15104476417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032108617] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055418937] [to:+12262716559] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165899811] [to:+16163266306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566260] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086468961] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185148417] [to:+15874093817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049644417] [to:+14242868670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448153] [to:18763665024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:13026049260] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-10 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806473355] [to:+18173817976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:55 ip-10-0-64-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059344950] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:55 ip-10-0-0-11 mdr: 2016-02-01 11:33:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345309] [to:14048395830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024722644] [to:+14804393573] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277908] [to:+13064000236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043812774] [to:+16474912066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17272907582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416615583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048604414] [to:+19047581286] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253940071] [to:+12133752796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-21 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205586] [to:+447710778243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333956] [to:12508598439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14165547569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-11 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474566260] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:56 ip-10-0-0-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624208708] [to:+14308087405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:56 ip-10-0-64-10 mdr: 2016-02-01 11:33:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057146165] [to:+12262418451] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326506389] [to:15124705535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194507976] [to:13474406890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315112] [to:18108756857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146380012] [to:+15817011136] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004782] [to:14703303840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026692] [to:19028777578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324384756] [to:+17636849493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162700244] [to:+17187519085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365808] [to:17862584647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011103] [to:15144169718] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107337711] [to:+19738147997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199186] [to:12109884695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787019] [to:14172934275] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737689] [to:13476773571] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005343] [to:16184092936] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231922] [to:12675304029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750813] [to:14404872977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-11 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167162825] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-10 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005343] [to:16184092936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:57 ip-10-0-0-11 mdr: 2016-02-01 11:33:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:57 ip-10-0-64-10 mdr: 2016-02-01 11:33:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049742854] [to:+13219993527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158909052] [to:13306417725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233127] [to:15142980012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237188669] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043002470] [to:+18046245528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981741] [to:17656399521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195667713] [to:+12264570094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406628107] [to:+12628886397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152093000] [to:+16317707967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064003158] [to:17802740448] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817003403] [to:15819988854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008486] [to:19022935120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006412] [to:12509370994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138847364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-11 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:58 ip-10-0-64-10 mdr: 2016-02-01 11:33:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:58 ip-10-0-0-10 mdr: 2016-02-01 11:33:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477796773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673019269] [to:+13479377870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-20 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447979697576] [to:+447418326556] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032E0201] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14255517743] [to:12064969156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14255517743] [to:12064969156] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:18324999974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073456916] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016974147] [to:+12138029516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003666] [to:12076168092] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308005450] [to:+14064043583] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002581] [to:12506157794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610782] [to:18326612282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:33:59 ip-10-0-64-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:18015292208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-11 mdr: 2016-02-01 11:33:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528574229] [to:+14076336884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:33:59 ip-10-0-0-10 mdr: 2016-02-01 11:33:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207791953] [to:+16503007668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-21 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018789] [to:13866243273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691242] [to:17314606449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285534640] [to:+18653471723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743004] [to:12674144502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:4:0]q0] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:18087542238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-11 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852012210] [to:+13216136700] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:00 ip-10-0-0-11 mdr: 2016-02-01 11:34:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-11 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184703673] [to:+19298419049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437424059] [to:+13473439330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082645519] [to:+17027476361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849036254] [to:+16465136354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-21 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-11 mdr: 2016-02-01 11:34:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207905] [to:14845972801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:01 ip-10-0-0-21 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:01 ip-10-0-64-10 mdr: 2016-02-01 11:34:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303274008] [to:+17187519106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17343884302] [to:+19725347359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:19082163766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308429471] [to:+15129526640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877788730] [to:+15874059665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813070860] [to:+18176121592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:16108091920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479298161] [to:+16477997337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998352] [to:17042180442] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479663193] [to:+19172319709] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:02 ip-10-0-0-10 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:02 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852012210] [to:+13216136700] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364560] [to:+16467677613] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369081419] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063140415] [to:+13069929909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653603896] [to:+14153253111] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-20 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:03 ip-10-0-0-10 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094776] [to:14433537304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042204261] [to:+13478999214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:03 ip-10-0-64-10 mdr: 2016-02-01 11:34:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023051567] [to:+19027021320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12035831667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001130] [to:13123154892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:15416102446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220504] [to:12142648611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038867] [to:+18597777450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338118] [to:16097244866] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001130] [to:13123154892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167529070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-10 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:04 ip-10-0-0-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342054] [to:14235350420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-11 mdr: 2016-02-01 11:34:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293743] [to:18506311314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:04 ip-10-0-64-10 mdr: 2016-02-01 11:34:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896170] [to:12096844649] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376701357] [to:+16465479846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247625741] [to:+17243200495] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877788730] [to:+15874059665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706013187] [to:+15129523364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472283356] [to:+16474963836] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514218018] [to:+12515819878] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228980] [to:+12262410722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312134313] [to:+19318968590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109068796] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726470698] [to:+19543143691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504416950] [to:+15596639022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-10 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:05 ip-10-0-64-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-11 mdr: 2016-02-01 11:34:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195623234] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141719] [to:18195885195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074650] [to:13205151322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:05 ip-10-0-0-10 mdr: 2016-02-01 11:34:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025798336] [to:+14692055135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635122885] [to:+14072681442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555838] [to:12267552736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244157838] [to:+17248035762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304457] [to:18602226794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852012210] [to:+13216136700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717174] [to:15199806073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183907629] [to:+18455797504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:12169265304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437424059] [to:+13473439330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788831] [to:17175165735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-10 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:06 ip-10-0-64-11 mdr: 2016-02-01 11:34:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:06 ip-10-0-0-11 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162952659] [to:+12313778176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123562] [to:+17205907420] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023565800] [to:+12132954310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-11 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-11 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14143863986] [to:13184162588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:07 ip-10-0-64-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516865] [to:13365201911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:07 ip-10-0-0-10 mdr: 2016-02-01 11:34:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:15046666480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303540953] [to:+15102540021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228352] [to:12298152567] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19418794942] [to:+13053405715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168208270] [to:+12167990710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12813890332] [to:+15129524048] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-11 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059646444] [to:+12894600533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427904] [to:17079788136] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:08 ip-10-0-0-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676848101] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-10 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941364] [to:16787918579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16024737420] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:08 ip-10-0-64-11 mdr: 2016-02-01 11:34:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405917927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292155] [to:524192979236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489337191] [to:+19893147206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419049] [to:15184703673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-11 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612789] [to:18003733411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:09 ip-10-0-64-10 mdr: 2016-02-01 11:34:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:09 ip-10-0-0-10 mdr: 2016-02-01 11:34:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308422137] [to:+13302374801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-20 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239856] [to:+447518062150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146002909] [to:+14152377872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192150964] [to:+18194141435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568847] [to:12252400291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305219] [to:16363453312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218189] [to:19107292554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-11 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735341343] [to:+19178778162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526318] [to:14402137603] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:10 ip-10-0-64-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-10 mdr: 2016-02-01 11:34:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:10 ip-10-0-0-11 mdr: 2016-02-01 11:34:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579435] [to:17205692134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025270] [to:15137466572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169174] [to:17178211133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-10 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217793] [to:17402886290] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998945] [to:18149337292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022418145] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003C00201] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:13038751343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546678502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:11 ip-10-0-0-10 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:11 ip-10-0-64-11 mdr: 2016-02-01 11:34:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407149] [to:18452629650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077389282] [to:+17274938240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370456] [to:13309150640] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201747] [to:15615742966] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-10 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723336972] [to:+17727745317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-10 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-10 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:12 ip-10-0-0-10 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:12 ip-10-0-64-11 mdr: 2016-02-01 11:34:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085359] [to:18134034990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733033938] [to:17739310863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019824196] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-21 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208480] [to:+447710134432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434036147] [to:16307706949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-21 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245766] [to:18048882578] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-10 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997273] [to:15409225734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-10 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:13 ip-10-0-64-11 mdr: 2016-02-01 11:34:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120469] [to:16135323859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:13 ip-10-0-0-11 mdr: 2016-02-01 11:34:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18137850753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120469] [to:16135323859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011923071000000] [to:+17409102153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697447] [to:19895512166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373199] [to:15184100421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479979600] [to:17578396966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393400246] [to:+18638552160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16133273316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058583] [to:15713352155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286906] [to:15402805268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143469031] [to:+13475187690] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003C00202] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698746403] [to:19405941711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017593] [to:17246788825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416762971] [to:+19417256451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203193291] [to:+12627776824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:14 ip-10-0-64-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19042288518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12019498408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-10 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:14 ip-10-0-0-11 mdr: 2016-02-01 11:34:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993527] [to:17049742854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006412] [to:12509370994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874049912] [to:14034041819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-10 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783343313] [to:+13479190294] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159582] [to:18326660674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-11 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-10 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412834] [to:14043241726] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:15 ip-10-0-64-10 mdr: 2016-02-01 11:34:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:15 ip-10-0-0-11 mdr: 2016-02-01 11:34:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876267] [to:+12894600537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:15195691459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274603] [to:19082945931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026747214] [to:17022018991] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035831667] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693019621] [to:12148611470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173817976] [to:15806473355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026902725] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-10 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148379468] [to:+18326503345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:16 ip-10-0-64-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-10 mdr: 2016-02-01 11:34:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738613427] [to:+19739638923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:16 ip-10-0-0-11 mdr: 2016-02-01 11:34:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493710] [to:13347181897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024453188] [to:+13479193592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183306265] [to:+15817000783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14325286267] [to:+12547356029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126404] [to:16098052663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12407050211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098584121] [to:+16304893285] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-11 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-64-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865457756] [to:17862629810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-10 mdr: 2016-02-01 11:34:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:17 ip-10-0-0-11 mdr: 2016-02-01 11:34:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065256226] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015001574] [to:+14242769352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818660164] [to:+17817868098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098584121] [to:+16304893285] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312419607] [to:+19312577530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138447364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735163] [to:14782070165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-21 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868670] [to:17049644417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743509343] [to:+12692808443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:18 ip-10-0-64-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188098608] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-10 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:18 ip-10-0-0-11 mdr: 2016-02-01 11:34:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171409] [to:+12136300847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197015054] [to:+13025852886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374801] [to:13309078602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:18139259125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-20 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447464481407] [to:+447451246275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074933091] [to:+13219269193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736995203] [to:+19784009304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784262] [to:16618092392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13308503568] [to:13309078076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236939747] [to:+12132953464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322132092] [to:+17324447669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-11 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:19 ip-10-0-0-10 mdr: 2016-02-01 11:34:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15145716108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:19 ip-10-0-64-10 mdr: 2016-02-01 11:34:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16673083132] [to:14437392442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132404002] [to:+18328042307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13305730568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139602] [to:17406841939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040727] [to:16462629534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13402015522] [to:+17277679577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204875086] [to:18124300595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905122] [to:+15817021025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455424989] [to:+18456220689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739000489] [to:+19738789701] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153989359] [to:+13475807101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:20 ip-10-0-0-20 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-11 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512370215] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144584049] [to:+14387922515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:20 ip-10-0-64-10 mdr: 2016-02-01 11:34:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804137] [to:19096748607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292155] [to:524192979236] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364650983] [to:+13367018003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416102446] [to:+15412488813] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-11 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196653937] [to:+18193073594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-11 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-64-10 mdr: 2016-02-01 11:34:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:21 ip-10-0-0-10 mdr: 2016-02-01 11:34:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233278718] [to:+13234268627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029516] [to:16016974147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-20 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022496934] [to:+13476764594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:22 ip-10-0-0-11 mdr: 2016-02-01 11:34:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-10 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:22 ip-10-0-64-11 mdr: 2016-02-01 11:34:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849493] [to:18324384756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137235940] [to:13138292191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047108355] [to:+15103223004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-20 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695956] [to:+18133204591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732500] [to:12678448451] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-10 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708431492] [to:+17547774617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16827016699] [to:+14696292094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:16477842805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709394489] [to:+14844244904] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809779] [to:18603415162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708236616] [to:+16784968915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:23 ip-10-0-64-11 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:23 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16479092277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977792] [to:15163848522] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809699] [to:15139266300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:13475781883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611328] [to:19892252893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:13156902369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18049194391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921069] [to:15178178217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053217235] [to:+19542994396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149319403] [to:+13479979598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:17133926826] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129526898] [to:15129643278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-20 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520607931] [to:+447792166739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106901332] [to:+16465479916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184732] [to:14102406577] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329546] [to:16062611714] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-10 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:24 ip-10-0-64-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:24 ip-10-0-0-11 mdr: 2016-02-01 11:34:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789604274] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942675] [to:14383931615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-10 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-20 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-10 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383449] [to:13362102483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033740735] [to:+19172318185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:25 ip-10-0-0-10 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:25 ip-10-0-64-11 mdr: 2016-02-01 11:34:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479298161] [to:+16477997337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:13854249533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845153414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177067811] [to:14234911540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177067811] [to:14234911540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15513583243] [to:+15516664130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096838764] [to:+17097004837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006412] [to:12509370994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:16159813496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066458131] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14407305259] [to:+19148252493] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:26 ip-10-0-0-11 mdr: 2016-02-01 11:34:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751364] [to:17409636941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:26 ip-10-0-64-10 mdr: 2016-02-01 11:34:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043653320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606449] [to:+13477691242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137466572] [to:+12138025270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12408411385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262973775] [to:+12135876578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-11 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:27 ip-10-0-64-10 mdr: 2016-02-01 11:34:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-11 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:27 ip-10-0-0-10 mdr: 2016-02-01 11:34:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301935] [to:17272329778] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797954] [to:17404442325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735020] [to:13109068796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-20 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136354] [to:14849036254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027171439] [to:+19027021557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567573] [to:12489065817] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567573] [to:12489065817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598665294] [to:+15852822042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625442675] [to:+13219990725] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-11 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038867] [to:+18597777450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660476] [to:16126552342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:16309030516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:16309030516] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:28 ip-10-0-0-11 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:28 ip-10-0-64-10 mdr: 2016-02-01 11:34:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12604315364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364312] [to:+13479543383] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147787591] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047194] [to:16473605839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993760] [to:17542425445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052737101] [to:+12048091895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634190252] [to:+15633167329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:18139259125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406890] [to:+13194507976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789324] [to:13365121276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:29 ip-10-0-0-11 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:29 ip-10-0-64-10 mdr: 2016-02-01 11:34:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822314426] [to:17579556675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063238881] [to:+15068030057] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892132218] [to:+19894020242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097648050] [to:+17097019118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:16467306790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098052663] [to:+18563126404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327661792] [to:+12139297141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577399113] [to:+13478968425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033089910] [to:+18033050193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097716531] [to:+17097019284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055135] [to:18025798336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:30 ip-10-0-64-11 mdr: 2016-02-01 11:34:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:30 ip-10-0-0-10 mdr: 2016-02-01 11:34:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406642] [to:14165615930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999671] [to:18145947025] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097233282] [to:+19092934625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040575] [to:+13217309497] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159731] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718933] [to:12106082885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065183131] [to:+14706730784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853313611] [to:+17162792534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018078] [to:15402447579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-10 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:31 ip-10-0-64-11 mdr: 2016-02-01 11:34:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:31 ip-10-0-0-11 mdr: 2016-02-01 11:34:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12404462800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189470023] [to:+19173834919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019297] [to:19022988006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13304194816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424431] [to:+16317122468] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602226794] [to:+13476304457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001013] [to:17059317327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175280751] [to:+19492814691] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222273] [to:18458930770] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222273] [to:18458930770] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467506785] [to:+13475187233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-20 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451201140] [to:+447745100372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-20 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447584034325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024127525] [to:+19027062816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-10 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029961079] [to:+14197767925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:32 ip-10-0-0-11 mdr: 2016-02-01 11:34:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347395] [to:13053047682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:32 ip-10-0-64-11 mdr: 2016-02-01 11:34:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159153192] [to:+16503007125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179626054] [to:+15862488047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285281051] [to:+17605899984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093818875] [to:+15099550956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060681] [to:18652064871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407984314] [to:+18572400150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167047327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159153192] [to:+16503007125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140945] [to:18196905561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17176005780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942675] [to:14383931615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044853685] [to:+14243364841] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-20 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-10 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023220179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-10 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358401240] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-20 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:33 ip-10-0-64-11 mdr: 2016-02-01 11:34:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:33 ip-10-0-0-11 mdr: 2016-02-01 11:34:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216140364] [to:+14073373350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:15029314942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126365542] [to:+16129305662] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13397884170] [to:+15089166209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747896] [to:15627124821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13127576554] [to:17736751885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806122062] [to:+15415393157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685093] [to:+17727667444] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475087732] [to:15707787235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432712007] [to:+12139298790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184705572] [to:+13479376078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-0-11 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269665] [to:18084570304] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-10 mdr: 2016-02-01 11:34:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15739313046] [to:+17604748285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:34 ip-10-0-64-11 mdr: 2016-02-01 11:34:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773503] [to:15618898568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968604] [to:12318860013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007756] [to:16476331128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652434016] [to:+15104555492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096702168] [to:+14096833772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-20 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876475005] [to:+18572195771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286569] [to:16072225538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025270] [to:15137466572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-20 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118562096737118] [to:+16129305884] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026670507] [to:+13479714434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-11 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503456084] [to:+12672777128] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:35 ip-10-0-64-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569327] [to:17742517938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:35 ip-10-0-0-10 mdr: 2016-02-01 11:34:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105840891] [to:+13866017034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045029] [to:12262032404] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076485] [to:12603558969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109082626] [to:+16466328984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078944992] [to:+13024001489] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-10 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15038374110] [to:15033177632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023759537] [to:+19729478937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-0-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265029] [to:12819288698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-11 mdr: 2016-02-01 11:34:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:36 ip-10-0-64-10 mdr: 2016-02-01 11:34:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863797] [to:12104607914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-21 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447827850371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16264988046] [to:+15102549623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046744450] [to:+19802092806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013552497] [to:16462996248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692458558] [to:+14692052347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483790001] [to:+12484601513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13866829632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024160266] [to:+17279987124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084501014] [to:+12626482617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273889649] [to:+18326538019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-10 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-10 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155326599] [to:+14153260473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:37 ip-10-0-64-11 mdr: 2016-02-01 11:34:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:37 ip-10-0-0-11 mdr: 2016-02-01 11:34:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905122] [to:+15817021025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787698846] [to:+16784123990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025770605] [to:+19027004314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:13017481096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126520] [to:18565032364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175791721] [to:+13073703003] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:38 ip-10-0-0-10 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122973085] [to:+14126940830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:38 ip-10-0-64-11 mdr: 2016-02-01 11:34:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517964336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175791721] [to:+13073703003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-21 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451211261] [to:+447913467969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125076069] [to:+12133550317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388695542] [to:+16474915460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403889] [to:15138447436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175791721] [to:+13073703003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-10 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-10 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165411] [to:13157835531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196120064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:39 ip-10-0-64-11 mdr: 2016-02-01 11:34:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195512671] [to:+14352497443] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:39 ip-10-0-0-11 mdr: 2016-02-01 11:34:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15516664130] [to:15513583243] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745896] [to:15302516998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066458131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003126] [to:18048988507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:12603886067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412834] [to:14043241726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865988] [to:13086242806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-21 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388695542] [to:+16474915460] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002928] [to:19088944851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12152816039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-10 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406184] [to:15595563226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:40 ip-10-0-0-20 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:40 ip-10-0-64-11 mdr: 2016-02-01 11:34:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-20 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520626508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736668420] [to:17739560201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:14049214948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940092] [to:14129965229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116596556495] [to:+17786541867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003030201] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020709] [to:+15874059049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135440538] [to:+12133756726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388695542] [to:+16474915460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:41 ip-10-0-0-10 mdr: 2016-02-01 11:34:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:41 ip-10-0-64-11 mdr: 2016-02-01 11:34:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12098096585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671463] [to:+16475569659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863621749] [to:+12512068617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193565] [to:16179523959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865676677] [to:+18107725866] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391307] [to:15205897483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12404490378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-11 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:19178089932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:42 ip-10-0-0-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-11 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116596556495] [to:+17786541867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003030202] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:42 ip-10-0-64-10 mdr: 2016-02-01 11:34:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015207748] [to:+12184163605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202454726] [to:+13039930803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:17139076064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-10 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-10 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:43 ip-10-0-64-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187051887] [to:+12148148640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045095946] [to:+14703336194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:43 ip-10-0-0-11 mdr: 2016-02-01 11:34:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12019498408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397091] [to:+19542994604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479273439] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908500] [to:18142258014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082967664] [to:+13369383595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017593] [to:17246788825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372221292] [to:+18326503073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-10 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:15188660195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:44 ip-10-0-64-11 mdr: 2016-02-01 11:34:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:44 ip-10-0-0-10 mdr: 2016-02-01 11:34:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017060296] [to:+12136946133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404467429] [to:+17034199163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184355724] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12404490378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-20 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447708761613] [to:+447451229496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137264794] [to:+13059014028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635141] [to:13615430024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546406059] [to:+13479977843] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:45 ip-10-0-0-21 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:17542464754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-10 mdr: 2016-02-01 11:34:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:45 ip-10-0-64-11 mdr: 2016-02-01 11:34:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15153031302] [to:15175128872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529430] [to:16467306790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078944992] [to:+13024001489] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524691532] [to:+15102549848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259478739] [to:14256917619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610967] [to:19549182028] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140903] [to:18192095530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:14049214948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109068796] [to:+15624735020] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:46 ip-10-0-0-11 mdr: 2016-02-01 11:34:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-10 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:46 ip-10-0-64-11 mdr: 2016-02-01 11:34:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474921194] [to:16479290882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908004] [to:19167069811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538974] [to:12407796023] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-21 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614724275] [to:+16614024953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139098210] [to:16134134245] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026794] [to:19024300717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036131728] [to:+15873232895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340199] [to:14344014113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-64-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479943627] [to:+16474989552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-10 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069780682] [to:+14237777934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:47 ip-10-0-0-11 mdr: 2016-02-01 11:34:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751586] [to:19106587699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146253761] [to:+15799148407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108331014] [to:+15103278011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913174] [to:16478524668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13303291945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713371099] [to:+15406286716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740938] [to:17856141610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409225734] [to:+17279997273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377034] [to:13309578968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137466572] [to:+12138025270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16065256226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:48 ip-10-0-64-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:15414184495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-10 mdr: 2016-02-01 11:34:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:48 ip-10-0-0-11 mdr: 2016-02-01 11:34:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086620626] [to:+18572401390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255532] [to:19415240124] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033175] [to:12082721708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-20 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817003403] [to:15819988854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12132634873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167440313] [to:+14706735285] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-11 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830045] [to:13022585531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:49 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:49 ip-10-0-0-11 mdr: 2016-02-01 11:34:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19054315560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784262] [to:16618092392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133274642] [to:+16136047641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198393] [to:12294443979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:12603886067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718062] [to:14843472201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:1587782666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522575655] [to:+15169260955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:13475566914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109695234] [to:+18102218746] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-11 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733595489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-11 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086123373] [to:+19177370023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:50 ip-10-0-64-10 mdr: 2016-02-01 11:34:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791532] [to:17162922610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220215] [to:18456487927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:50 ip-10-0-0-10 mdr: 2016-02-01 11:34:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220215] [to:18456487927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-21 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447418334105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323848] [to:14033529851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522575655] [to:+15169260955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432358923] [to:+19148250912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404045467] [to:+17408798491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624805] [to:17179034867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029403515] [to:+19027043650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727400] [to:14252098762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16022915066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:16785443462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197572850] [to:+13473898500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707802919] [to:+19894550753] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-10 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:51 ip-10-0-0-10 mdr: 2016-02-01 11:34:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:51 ip-10-0-64-11 mdr: 2016-02-01 11:34:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455461] [to:12314293652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006679] [to:12404606889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203075106] [to:16122312834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538449766] [to:+12533361497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837576] [to:13302811796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977792] [to:15164570614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12403617039] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136036771] [to:17576945050] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029996287] [to:+19028019398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-20 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447976217706] [to:+447418330124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-0-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023105147] [to:+14088725980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-10 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:52 ip-10-0-64-11 mdr: 2016-02-01 11:34:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267552736] [to:+12264555838] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002413] [to:18157617032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184732] [to:14102406577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076168092] [to:+18724003666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-10 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:53 ip-10-0-0-11 mdr: 2016-02-01 11:34:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:53 ip-10-0-64-11 mdr: 2016-02-01 11:34:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317204576] [to:+12315987166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-10 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404127290] [to:+13015699470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324273659] [to:12132721315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:54 ip-10-0-0-10 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:54 ip-10-0-64-11 mdr: 2016-02-01 11:34:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178501764] [to:+13609494286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615430024] [to:+18173635141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042411] [to:132665] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14096562230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058794898] [to:+17864803932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178501764] [to:+13609494286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:12547360634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001218] [to:17604989131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414083399] [to:+17248035501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406462600] [to:+13012885403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042098143] [to:+18722258322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655090807] [to:+16466320366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194974453] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137438] [to:19102419252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18704218991] [to:+12039904051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066196237] [to:+13103070507] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136048217] [to:+12816433491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168357802] [to:+16476911901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106082885] [to:+12105718933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025843592] [to:+15109480027] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102146292] [to:+16466320580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853696030] [to:+15852824920] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125076069] [to:+12133550317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134064935] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023730882] [to:+17027181501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027004594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326669187] [to:+17604745845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064078715] [to:+17702005580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:55 ip-10-0-64-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043653320] [to:+15612319123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-11 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:55 ip-10-0-0-10 mdr: 2016-02-01 11:34:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736751885] [to:+13127576554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135440538] [to:+12133756726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190549] [to:19712298972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031D0201] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174092701] [to:+16465138150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963978] [to:16105733591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033783255] [to:+15625534545] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347022] [to:18637096783] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:16785443462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17034199163] [to:15404467429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500031D0202] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19565360900] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-20 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042180442] [to:+19709998352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-11 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349411550] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654669804] [to:+12134017515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:56 ip-10-0-64-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:56 ip-10-0-0-10 mdr: 2016-02-01 11:34:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567896] [to:16108832098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059716092] [to:+17059102275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:14432535910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158475538] [to:+16519275894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077607247] [to:+13475087435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:12562548890] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EA0201] -Feb 1 11:34:57 ip-10-0-64-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-64-10 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-10 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:57 ip-10-0-0-11 mdr: 2016-02-01 11:34:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-10 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-10 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-10 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439912313] [to:+19292200921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-20 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-10 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291904] [to:13179129657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:58 ip-10-0-0-11 mdr: 2016-02-01 11:34:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:58 ip-10-0-64-11 mdr: 2016-02-01 11:34:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177069020] [to:+13479713427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16479887079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:34:59 ip-10-0-0-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:16266025621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:34:59 ip-10-0-64-11 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678452] [to:18576151773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:34:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277272] [to:19033872609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033615908] [to:+13126311806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062737608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19733422211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047641] [to:16133274642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941938] [to:15875960287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302516998] [to:+17727745896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455461] [to:12314293652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16176344399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:00 ip-10-0-0-11 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-10 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:00 ip-10-0-64-11 mdr: 2016-02-01 11:35:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500032D0701] -Feb 1 11:35:00 ip-10-0-0-21 mdr: 2016-02-01 11:35:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15806122062] [to:+15415393157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802982913] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908627] [to:19046162037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-21 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025538894] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043142168] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908613] [to:13155912795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:17325137710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406058797] [to:+17408796567] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0703] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412757] [to:16783823085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076692927] [to:+19172660015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963174] [to:16147350293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044424785] [to:+16043050913] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-11 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:01 ip-10-0-64-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:01 ip-10-0-0-10 mdr: 2016-02-01 11:35:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032C0201] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032C0202] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032D0706] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032D0704] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046744623] [to:+16043050899] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0707] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404606889] [to:+19703006679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347181897] [to:+18639493710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406444094] [to:+12342313941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:13528746204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478364797] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:02 ip-10-0-64-10 mdr: 2016-02-01 11:35:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:02 ip-10-0-0-11 mdr: 2016-02-01 11:35:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193822545] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129965229] [to:+14126940092] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177508870] [to:+15672057422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168789099] [to:+19162455463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804430] [to:15857377963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603558969] [to:+12604076485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085136360] [to:+15635593054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738789701] [to:19739439253] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286516] [to:15408199418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-20 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337623] [to:+447462919998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-21 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239077] [to:+447711865468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13204312034] [to:+17194960493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168587266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:03 ip-10-0-0-10 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:03 ip-10-0-64-11 mdr: 2016-02-01 11:35:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-10 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946161] [to:19044761059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:13137783156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-10 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467506785] [to:+13475187233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263122733] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:04 ip-10-0-0-10 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:04 ip-10-0-64-11 mdr: 2016-02-01 11:35:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478716298] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-21 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13029815929] [to:+13025955646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232187162] [to:+17633015532] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284351288] [to:+17605899984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137214938] [to:+13015699036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085910056] [to:+12085012601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206687386] [to:+16466288686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040335] [to:+13479544918] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038677785] [to:+19783231012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003EA0202] -Feb 1 11:35:05 ip-10-0-0-10 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047044] [to:14782786824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:05 ip-10-0-64-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:05 ip-10-0-0-11 mdr: 2016-02-01 11:35:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065938] [to:16176344399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155078165] [to:+16784123652] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17634431892] [to:+16124448055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467306790] [to:+15189529430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045799770] [to:+15169082219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661187] [to:15704396798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-11 mdr: 2016-02-01 11:35:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168251280] [to:+15415392377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-21 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320824] [to:+447470465745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:06 ip-10-0-0-10 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:06 ip-10-0-64-11 mdr: 2016-02-01 11:35:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019284] [to:17097716531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:19162385109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:12899230634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145442025] [to:+16304893673] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-10 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570062] [to:16476684256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-10 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17207678191] [to:+13203074818] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:07 ip-10-0-64-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168136030] [to:+19175808852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:07 ip-10-0-0-11 mdr: 2016-02-01 11:35:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15153031302] [to:15175128872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748040141] [to:+14017214220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619214] [to:19786045877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19029211556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745850] [to:1256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306034395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365728] [to:17049159986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792216] [to:15854659343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307713358] [to:+13309708874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956423] [to:19202021097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-11 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-10 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796194] [to:12702509778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:08 ip-10-0-64-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:08 ip-10-0-0-11 mdr: 2016-02-01 11:35:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062889468] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181501] [to:17023730882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809779] [to:18603415162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:15029314942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027278086] [to:+16096144647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085164] [to:17026894299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767925] [to:15029961079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397091] [to:+19542994604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044424785] [to:+16043050913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-11 mdr: 2016-02-01 11:35:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968687] [to:18653612836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:09 ip-10-0-0-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199981865] [to:+18193074976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:09 ip-10-0-64-10 mdr: 2016-02-01 11:35:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137264794] [to:+13059014028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16478364797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232987079] [to:+17279353647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094102373] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035439684] [to:+13476672682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133201485] [to:18138422253] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-10 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041767] [to:15068011586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:10 ip-10-0-0-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164269] [to:17322282492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-10 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-10 mdr: 2016-02-01 11:35:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049798739] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:10 ip-10-0-64-11 mdr: 2016-02-01 11:35:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344773817] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173000411] [to:+17273629124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143469031] [to:+13475187690] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064002420] [to:+14695327732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006289] [to:12505105856] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390064] [to:14505228920] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072680685] [to:14077808444] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072680685] [to:14077808444] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-11 mdr: 2016-02-01 11:35:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:11 ip-10-0-64-11 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:11 ip-10-0-0-10 mdr: 2016-02-01 11:35:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865615] [to:17049535445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076335293] [to:+16474934356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076909536] [to:+19418009022] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184732] [to:19043838547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17056266855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-11 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190294] [to:16783343313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:12 ip-10-0-0-10 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025178893] [to:+13479801295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-11 mdr: 2016-02-01 11:35:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:12 ip-10-0-64-10 mdr: 2016-02-01 11:35:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17623380556] [to:17069455822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-21 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447919970510] [to:+447418333947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-20 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003060201] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076909536] [to:+19418009022] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808187] [to:19187666898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-20 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512108540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085136360] [to:+15635593054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613468306] [to:+15612403794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328096] [to:12056328982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476191367] [to:12079749072] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198596769] [to:+12048092090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15303606582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-0-10 mdr: 2016-02-01 11:35:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-11 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:13 ip-10-0-64-10 mdr: 2016-02-01 11:35:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126964152] [to:+13477868824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477385149] [to:+16474910153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396181] [to:12162784734] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782398582] [to:+14703335256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149679298] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195783494] [to:+18193070257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435353024] [to:+18435345456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969570] [to:17579528441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-10 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-11 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:14 ip-10-0-0-21 mdr: 2016-02-01 11:35:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:14 ip-10-0-64-10 mdr: 2016-02-01 11:35:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739102905] [to:19735670502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046848639] [to:+17817868173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259207] [to:12073413079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225785] [to:13365124844] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172018391] [to:+18573001482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751767] [to:14059021066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158431585] [to:19312648531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005530] [to:14148923795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:14049148248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13143686025] [to:+13147868601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-10 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:15 ip-10-0-64-11 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-10 mdr: 2016-02-01 11:35:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:15 ip-10-0-0-11 mdr: 2016-02-01 11:35:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405323853] [to:+12162396240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103070507] [to:16612623625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739560201] [to:+17736668420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300646] [to:19107282733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447970282799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003060202] -Feb 1 11:35:16 ip-10-0-64-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492349] [to:15088643319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:13392340631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044767758] [to:+15617664316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-10 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:16 ip-10-0-64-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17013172939] [to:+17014122539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-11 mdr: 2016-02-01 11:35:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:16 ip-10-0-0-21 mdr: 2016-02-01 11:35:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447875097527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155969501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125997] [to:18566493284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812671] [to:14433884918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168584903] [to:+16784338751] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095730593] [to:+17097015576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168584903] [to:+16784338751] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168584903] [to:+16784338751] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:15879906505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:14042736673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744978] [to:13209681757] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851975] [to:13023125165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-64-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851975] [to:13023125165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-11 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:17 ip-10-0-0-10 mdr: 2016-02-01 11:35:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127723] [to:+19199164481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392828] [to:16077319856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174403994] [to:+18583604736] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12267802159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474931197] [to:15062925095] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276988032] [to:+17279985231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040991] [to:15092370251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-10 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-10 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123122978] [to:+18572405070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065256226] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:18 ip-10-0-0-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345321] [to:18435351873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:18 ip-10-0-64-11 mdr: 2016-02-01 11:35:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004981] [to:14046109658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109724813] [to:+16109737911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911901] [to:14168357802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175165735] [to:+13479788831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064353655] [to:+15068040546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404356832] [to:+12136309241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296115] [to:17605088735] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065243740] [to:+14703334069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046663903] [to:+14146006019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:14436682114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503001237] [to:12765916852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789754] [to:15134290096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-10 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027004594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-10 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899230634] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099289] [to:15617185055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:19 ip-10-0-64-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:19 ip-10-0-0-11 mdr: 2016-02-01 11:35:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875960287] [to:+14387941938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-20 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353816] [to:16606352114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038677785] [to:+19783231012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023188808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:13342758969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508150658] [to:+15817022868] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023507018] [to:+13053406115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796194] [to:12702509778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-11 mdr: 2016-02-01 11:35:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748554121] [to:15417435203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143976180] [to:+12135296916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:20 ip-10-0-0-10 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:20 ip-10-0-64-11 mdr: 2016-02-01 11:35:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001751] [to:17052067921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247547969] [to:+17279987657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055070] [to:13138500025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15669847850] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999227] [to:+17816138638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16788876437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812430301] [to:+17816548758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857142596] [to:+15852822090] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-20 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-21 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235790] [to:12603887523] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599799074] [to:+14243364291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142652671] [to:+15146134612] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086242806] [to:+13477865988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702964215] [to:+16784123095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188049443] [to:+19172751596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:21 ip-10-0-0-11 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059995444] [to:+13477691224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010201] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:16629980826] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:21 ip-10-0-64-10 mdr: 2016-02-01 11:35:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059995444] [to:+13477691224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010202] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17755835774] [to:+15103222429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538449766] [to:+12533361497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046744623] [to:+16043050899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:17037729193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:22 ip-10-0-0-10 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106063310] [to:+17073007799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:22 ip-10-0-64-11 mdr: 2016-02-01 11:35:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570062] [to:16476684256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197446907] [to:+13364500557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F50201] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862452] [to:16172336689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166397120] [to:+15162187703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:23 ip-10-0-0-11 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:23 ip-10-0-64-10 mdr: 2016-02-01 11:35:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124576] [to:13619356924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343901020] [to:+19148608352] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649253] [to:13044171224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968425] [to:17577399113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538508] [to:14439808278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:13214202267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492814596] [to:17406803773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604496061] [to:+12604077562] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049344] [to:19106853068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157020] [to:13306159829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137841461] [to:+18133081179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519136] [to:13478457641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:24 ip-10-0-64-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154123991] [to:+13473898422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-11 mdr: 2016-02-01 11:35:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:24 ip-10-0-0-10 mdr: 2016-02-01 11:35:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166877] [to:19193303931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014289] [to:+18724003276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661187] [to:12156646148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412294] [to:19052465623] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320921] [to:17179779167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097716531] [to:+17097019284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13395329224] [to:+16172132195] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105774599] [to:+18107725582] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126501235] [to:+13479193364] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434271] [to:18569867539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434271] [to:18569867539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318355103] [to:+16316141505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220481] [to:15617552995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234894243] [to:+17727668534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:25 ip-10-0-64-10 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-21 mdr: 2016-02-01 11:35:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229496] [to:+447708761613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:25 ip-10-0-0-11 mdr: 2016-02-01 11:35:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359670] [to:14235399778] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13302127429] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346822] [to:12532457510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788089767] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003F50202] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15042027611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023794284] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234437701] [to:+12132951667] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392828] [to:13044833510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045209586] [to:+19292009028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-64-10 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020177] [to:19895748491] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-11 mdr: 2016-02-01 11:35:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:26 ip-10-0-0-10 mdr: 2016-02-01 11:35:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19892132218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702964215] [to:+14704446204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092370251] [to:+15092040991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358252] [to:13309870950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-11 mdr: 2016-02-01 11:35:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:27 ip-10-0-0-11 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:27 ip-10-0-64-10 mdr: 2016-02-01 11:35:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12183311157] [to:17017814168] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053942254] [to:18058684408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132102] [to:16033188478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102419252] [to:+13216137438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789936001] [to:+15614124451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046162037] [to:+13476908627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099327910] [to:+14097771148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522783964] [to:+13053406770] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789936001] [to:+15614124451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14502307161] [to:+15817022544] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:28 ip-10-0-64-11 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12162355858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:28 ip-10-0-0-10 mdr: 2016-02-01 11:35:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786956] [to:14239035827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343038060] [to:+13479196851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:14044549234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16062101311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308095992] [to:+17248034868] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048397175] [to:+14158534719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642766320] [to:+13479193491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398420] [to:15754055232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16062101311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-11 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744278] [to:17313341572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-20 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:29 ip-10-0-64-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:29 ip-10-0-0-10 mdr: 2016-02-01 11:35:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053217235] [to:+19542994396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-10 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-10 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14846339152] [to:13475892018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-10 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053050703] [to:+17059102563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-10 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093001314] [to:+15104477151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802486566] [to:+12138065848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-64-11 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365728] [to:19804309814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-10 mdr: 2016-02-01 11:35:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:30 ip-10-0-0-11 mdr: 2016-02-01 11:35:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437342609] [to:+14436812793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:13193822545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876276] [to:14135527836] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876276] [to:14135527836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329512393] [to:+18327772141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-11 mdr: 2016-02-01 11:35:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:31 ip-10-0-0-21 mdr: 2016-02-01 11:35:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:31 ip-10-0-64-10 mdr: 2016-02-01 11:35:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803296594] [to:+14804392377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946133] [to:12017060296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623244596] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132005330] [to:+15137259463] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024179004] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157274] [to:13302575046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048751281] [to:+18583048321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022988006] [to:+19028019297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886859] [to:+19292688403] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769296] [to:18593917758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17754993544] [to:17757735766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876276] [to:14135527836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429418] [to:17175860725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-64-11 mdr: 2016-02-01 11:35:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866829632] [to:+13866013668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-10 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:32 ip-10-0-0-11 mdr: 2016-02-01 11:35:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792534] [to:15853313611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:16013238691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005446] [to:14056285192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408721037] [to:+14342340525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084502] [to:18133943939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-20 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-20 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262314438] [to:+12262717671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329649028] [to:+16615334092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400150] [to:15407984314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-11 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:33 ip-10-0-64-10 mdr: 2016-02-01 11:35:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665916] [to:14048896314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:33 ip-10-0-0-11 mdr: 2016-02-01 11:35:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076060] [to:5533988572523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305516] [to:18647608513] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026211] [to:14232423030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577602] [to:19316751735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822188] [to:19177082735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574556] [to:50251582375] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01141767415686] [to:+16784968880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039683663] [to:+18038143481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:34 ip-10-0-64-10 mdr: 2016-02-01 11:35:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:34 ip-10-0-0-11 mdr: 2016-02-01 11:35:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677135043] [to:+16319802399] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+17053029661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157835531] [to:+16413165411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473726500] [to:+19173834104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595072] [to:19733328397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748040141] [to:+14017214220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:15197298912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:15159939367] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291417] [to:15742185721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-20 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202883] [to:+447776217987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12403981665] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-10 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577602] [to:19316751735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:35 ip-10-0-0-11 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-10 mdr: 2016-02-01 11:35:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:35 ip-10-0-64-11 mdr: 2016-02-01 11:35:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864386] [to:12407935886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980591] [to:16475156574] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601664] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347815426] [to:+17348228236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075788348] [to:+19172659824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-10 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138931363] [to:+15597251046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467506785] [to:+13475187233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:36 ip-10-0-0-21 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468522724] [to:+447451241321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:36 ip-10-0-64-11 mdr: 2016-02-01 11:35:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18684772116] [to:+16465139711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:17606098464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13134249278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-11 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-10 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127468] [to:16314550159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-0-10 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313845722] [to:+16476911500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:37 ip-10-0-64-11 mdr: 2016-02-01 11:35:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022338253] [to:+19027046345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196905561] [to:+18194140945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138500025] [to:+14692055070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12538449766] [to:+12533361497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266395] [to:13852888361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163894] [to:16572512062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656025056] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:14807473335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517969752] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197583435] [to:+16317707296] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148652716] [to:+14388077893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438670] [to:15706608205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568895108] [to:+18569429326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735263269] [to:+13126310408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-64-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-11 mdr: 2016-02-01 11:35:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308747] [to:17728008416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:38 ip-10-0-0-10 mdr: 2016-02-01 11:35:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179663637] [to:+19142796538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-20 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296115] [to:18183035186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-11 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-11 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176029901] [to:+12132953375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025947330] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-11 mdr: 2016-02-01 11:35:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699470] [to:12404127290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:39 ip-10-0-64-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196661223] [to:+18572405046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:39 ip-10-0-0-10 mdr: 2016-02-01 11:35:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149959097] [to:+14387922872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14344773817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:13104632348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573036646] [to:+19172720573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202152] [to:19092228611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282493213] [to:+17205021928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-20 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337882] [to:+447561207109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177576253] [to:+14694237772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606178318] [to:+19172595939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-20 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:40 ip-10-0-64-10 mdr: 2016-02-01 11:35:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:40 ip-10-0-0-11 mdr: 2016-02-01 11:35:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017508185] [to:+18572408242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884919] [to:14105980287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041969] [to:15063655233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676681] [to:16786206202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:14049148248] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307880583] [to:+16475037529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-10 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:41 ip-10-0-0-11 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16129139167] [to:+15072626338] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:41 ip-10-0-64-10 mdr: 2016-02-01 11:35:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364575176] [to:+14342340670] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188049443] [to:+19172751596] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138121] [to:16035628899] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779649] [to:13302084495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635141] [to:13615430024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313364013] [to:+16315171826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002925] [to:17062514093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452519] [to:13369815860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-11 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164811] [to:19197501012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-10 mdr: 2016-02-01 11:35:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:42 ip-10-0-0-10 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:42 ip-10-0-64-11 mdr: 2016-02-01 11:35:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695891798] [to:+12695755441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785503257] [to:+16172139488] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867964] [to:+12816436020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472339077] [to:18704504489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15772818039] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14075019191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503849] [to:18329030890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653864985] [to:+17205852947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022927505] [to:+19027030781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995336] [to:12177108121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715897111] [to:+15714454127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162350401] [to:+12167772174] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864144] [to:15045130354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:43 ip-10-0-64-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-11 mdr: 2016-02-01 11:35:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:43 ip-10-0-0-10 mdr: 2016-02-01 11:35:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946133] [to:12017060296] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201346] [to:16625827940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403812995] [to:+17605735551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020242] [to:19892132218] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:19735927951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353198] [to:19072316167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200921] [to:14439912313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479273439] [to:+16474965451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148923795] [to:+14146005530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302575046] [to:+13309157274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-64-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004981] [to:14692600325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:44 ip-10-0-0-10 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099709995] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500033D0201] -Feb 1 11:35:44 ip-10-0-0-11 mdr: 2016-02-01 11:35:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CC0301] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047933623] [to:+17784030927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324993] [to:13045504887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436682114] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028075081] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109997864] [to:+16107138851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-20 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236689] [to:+447710193392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099709995] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033D0202] -Feb 1 11:35:45 ip-10-0-0-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033529851] [to:+15873323848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102406577] [to:+13475184732] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-10 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CC0303] -Feb 1 11:35:45 ip-10-0-64-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242511349] [to:+13106278208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:45 ip-10-0-0-11 mdr: 2016-02-01 11:35:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:45 ip-10-0-64-10 mdr: 2016-02-01 11:35:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044151814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328336] [to:13392359154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-20 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447875097527] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096585] [to:15149730354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433072967] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:46 ip-10-0-0-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138835916] [to:+14132715463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-11 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:46 ip-10-0-64-10 mdr: 2016-02-01 11:35:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-21 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302316] [to:13048805031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318597] [to:13049511997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788831] [to:17175165735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015717] [to:14702168118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-10 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242511349] [to:+13106278208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-10 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:47 ip-10-0-64-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459869] [to:14192361416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-11 mdr: 2016-02-01 11:35:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:47 ip-10-0-0-20 mdr: 2016-02-01 11:35:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076048] [to:13042222616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:14164521355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737764] [to:18176009694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175860725] [to:+18569429418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953597] [to:13172368704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265029] [to:12819288698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125316258] [to:+17817863421] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373052130] [to:+16572211182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018432] [to:19024017371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406444094] [to:+12342313941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:48 ip-10-0-0-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-11 mdr: 2016-02-01 11:35:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:48 ip-10-0-64-10 mdr: 2016-02-01 11:35:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642766320] [to:+13479193491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-10 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145133] [to:16062602893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-10 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176207727] [to:+12017428801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004548] [to:14044849638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-10 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-10 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784669039] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137438] [to:19102419252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:49 ip-10-0-64-11 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:49 ip-10-0-0-21 mdr: 2016-02-01 11:35:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16022915066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005021] [to:16787599427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043438658] [to:+17786530065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239035827] [to:+12134786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473181] [to:18169822882] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12157962265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183032250] [to:13023596267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547190] [to:17854920077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342521161] [to:+17786529976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892132218] [to:+19894020242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069791138] [to:+17205999682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-11 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-20 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447708761613] [to:+447451229496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012442] [to:12089258369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-20 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534000981] [to:+447451201674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:50 ip-10-0-64-10 mdr: 2016-02-01 11:35:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:50 ip-10-0-0-10 mdr: 2016-02-01 11:35:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193310668] [to:+12267983966] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042242] [to:18142489187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17864499273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968425] [to:17577399113] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084931333] [to:+16503007616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751229] [to:15709725976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AC0202] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17709402813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436554934] [to:+14438550041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802398503] [to:+15874004867] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809779] [to:18603415162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168019223] [to:+19417256954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092771470] [to:+17097022710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-21 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227237] [to:+447850461486] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046850314] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-21 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227237] [to:+447850461486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-21 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227237] [to:+447850461486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387928090] [to:15146040455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-10 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:51 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:51 ip-10-0-64-10 mdr: 2016-02-01 11:35:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095147] [to:12015893943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595370] [to:14782583770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-21 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-21 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042411] [to:14062171893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784968] [to:17049998683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182648639] [to:+16034130763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834104] [to:13473726500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:12168824170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14164278063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632343] [to:18572440018] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:52 ip-10-0-64-10 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:52 ip-10-0-0-11 mdr: 2016-02-01 11:35:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038652782] [to:18323228613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-20 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177067445] [to:+14706730663] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172048074] [to:+19739639294] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163525110] [to:+17162790260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172048074] [to:+19739639294] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063650] [to:15593528026] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023224699] [to:+19027058059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085563] [to:12109190320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020177] [to:19895748491] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-20 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:53 ip-10-0-64-11 mdr: 2016-02-01 11:35:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692091431] [to:+13475076827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-10 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073330] [to:14146995061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:53 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-11 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175869438] [to:+13479376267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545018531] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-10 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300717] [to:+19027026794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-11 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433030462] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455383705] [to:+18455797200] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:54 ip-10-0-64-11 mdr: 2016-02-01 11:35:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001613] [to:17055611872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:54 ip-10-0-0-10 mdr: 2016-02-01 11:35:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542631981] [to:+17027475864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507643] [to:18455809422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15147095426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808210088] [to:+15873158148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032D0705] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032D0702] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072233917] [to:+19122006049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134279192] [to:+14073371106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479887079] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157083699] [to:+12135874952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246788825] [to:+17402017593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569046191] [to:+19717328501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003510202] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124705535] [to:+18326506389] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693319533] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003CC0302] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712828081] [to:+13478023196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003AC0201] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184705572] [to:+13479376078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17077919930] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436167956] [to:+13479198525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003510201] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-10 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022983763] [to:+19028018626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:55 ip-10-0-0-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:55 ip-10-0-64-11 mdr: 2016-02-01 11:35:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939442] [to:17247574927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176509656] [to:+19172720394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-20 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-21 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447585423878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19163700336] [to:+19166370933] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-20 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:56 ip-10-0-64-11 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:56 ip-10-0-0-10 mdr: 2016-02-01 11:35:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393400246] [to:+18638552160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738319198] [to:+14242837049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473181] [to:18169822882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19163477369] [to:15878967203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738319198] [to:+14242837049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738319198] [to:+14242837049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993411] [to:16479299511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515216] [to:17862314455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059317327] [to:+17053001013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316936987] [to:+15169341630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788352673] [to:+19785334173] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792831396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-11 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739439253] [to:+19738789701] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758781] [to:13076407238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:57 ip-10-0-0-11 mdr: 2016-02-01 11:35:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:57 ip-10-0-64-10 mdr: 2016-02-01 11:35:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438398787] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12193701823] [to:12196719746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:13602705556] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476778223] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083472216] [to:+18622278714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898311] [to:18165983079] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597402416] [to:+16612285660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036296116] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:58 ip-10-0-0-11 mdr: 2016-02-01 11:35:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-10 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:58 ip-10-0-64-11 mdr: 2016-02-01 11:35:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194007216] [to:+14146005212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668534] [to:14234894243] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097691999] [to:+12497009070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-10 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256661224] [to:16033120989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018519] [to:13157179169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:35:59 ip-10-0-0-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:35:59 ip-10-0-64-10 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:35:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173635141] [to:13615430024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600537] [to:16476876267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267552736] [to:+12264555838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985535] [to:18622838479] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12109887415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167380907] [to:+12264550380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288429] [to:13473648544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:00 ip-10-0-0-11 mdr: 2016-02-01 11:36:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:00 ip-10-0-64-10 mdr: 2016-02-01 11:36:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807005978] [to:+15873285763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612258518] [to:+13055017810] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374184] [to:14072855695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137134356] [to:+17205997327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081179] [to:18137841461] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-11 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048632] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786956] [to:14239035827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242865578] [to:14053038276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476686434] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:01 ip-10-0-64-11 mdr: 2016-02-01 11:36:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:01 ip-10-0-0-10 mdr: 2016-02-01 11:36:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14075019191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044456] [to:13616888098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057487131] [to:+19546412725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-64-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-10 mdr: 2016-02-01 11:36:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-11 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784669039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:02 ip-10-0-0-10 mdr: 2016-02-01 11:36:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17149473429] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371857] [to:12532985766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621969] [to:15129834491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138638] [to:12079999227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942197] [to:14388620409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302316] [to:13048805031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041969] [to:15063655233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406132638] [to:+13477697883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-11 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285803715] [to:+19148250777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157062975] [to:+17408798663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:03 ip-10-0-0-21 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:03 ip-10-0-64-10 mdr: 2016-02-01 11:36:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084502] [to:18133943939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734547151] [to:+13475188622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:16789720199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303094897] [to:+15755672704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232348] [to:17197663181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857318] [to:17033471962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685041] [to:13043088973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278967] [to:18625882361] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170241] [to:+15103223567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-10 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:04 ip-10-0-0-11 mdr: 2016-02-01 11:36:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014724] [to:+19282325119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:04 ip-10-0-64-10 mdr: 2016-02-01 11:36:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346787708] [to:+17348214398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784669039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147867] [to:12017458262] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844266233] [to:+16109101942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313637965] [to:+16129305847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439912313] [to:+19292200921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167900041] [to:+17162790206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132566392] [to:+18326503238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15158903942] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-10 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:05 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364342] [to:+15612408842] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:05 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147912962] [to:+14387925933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184100421] [to:+19177373199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105455533] [to:+19298411449] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195881337] [to:+18193075816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277491] [to:19185650397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048988507] [to:+18724003126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12564578259] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074763554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235350420] [to:+16784342054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145824176] [to:+14387928410] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525674296] [to:+18572559264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477151] [to:12093001314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703839517] [to:+19142060712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14167281255] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-10 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-10 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788145] [to:16014551872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:06 ip-10-0-64-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162023214] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:06 ip-10-0-0-11 mdr: 2016-02-01 11:36:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143732533] [to:+12133773298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15147552321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-11 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13308830989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555747] [to:15193201760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254508] [to:18434679052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:07 ip-10-0-64-11 mdr: 2016-02-01 11:36:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784592] [to:15015039713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069733] [to:14048638988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:07 ip-10-0-0-10 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045335829] [to:+17278600859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883772] [to:15302092632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232862128] [to:+15103354347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263462844] [to:+12264555456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148314569] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064911927] [to:+17204637645] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022868] [to:12508150658] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074596503] [to:+19086625940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162141830] [to:+12317455259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134615] [to:+12262415897] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926251] [to:17408531518] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-10 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:16477944370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214202267] [to:+16463497668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:08 ip-10-0-0-11 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896847646] [to:+12262437202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:08 ip-10-0-64-10 mdr: 2016-02-01 11:36:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309496270] [to:+19148818715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-21 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451222686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13395459672] [to:14052136490] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619641] [to:17815076254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038877] [to:15069626144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-11 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045760090] [to:+16784345236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-64-10 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183137851] [to:+19148291367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387928090] [to:14387630455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-10 mdr: 2016-02-01 11:36:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:09 ip-10-0-0-11 mdr: 2016-02-01 11:36:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432710015] [to:+14435835277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017034] [to:19105840891] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635068716] [to:+15635593429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555379] [to:14435108004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:10 ip-10-0-0-10 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475758689] [to:+16474993335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:10 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265319] [to:17069518326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052347] [to:14692458558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054072337] [to:+12267794892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622489125] [to:+19739638904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177304] [to:18284039864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222337] [to:18458533628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735651] [to:17064105578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391180] [to:17737906759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013238691] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017814168] [to:+12183311157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414091996] [to:+15413635964] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-10 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022259500] [to:+19027046225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179779167] [to:+16466320921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:11 ip-10-0-64-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064911927] [to:+17204637645] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:11 ip-10-0-0-11 mdr: 2016-02-01 11:36:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175980772] [to:+19175805526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485033] [to:16305894504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391180] [to:17737906759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328336] [to:13392359154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17638529142] [to:13203720857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19314096230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12086252906] [to:12085130645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101315] [to:15879897634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14389883669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036900177] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:12 ip-10-0-64-11 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-11 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:12 ip-10-0-0-10 mdr: 2016-02-01 11:36:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:18433072967] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346822] [to:12532457510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808275] [to:12693319533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338324] [to:16789139636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253455172] [to:+17743570309] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15876790399] [to:+15873158029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095147] [to:12017061820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284615610] [to:+17817863424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622152561] [to:+17063959225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013668] [to:13866829632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623608802] [to:+13103470500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038518979] [to:18033513047] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900082] [to:17708964926] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-11 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948394] [to:16169904148] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:13 ip-10-0-0-10 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038361099] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179872924] [to:+15047027250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:13 ip-10-0-64-11 mdr: 2016-02-01 11:36:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668851] [to:12182600021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:17867606139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016180335] [to:+19014740996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142973238] [to:+14387928465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446289] [to:12705861183] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690682] [to:17734410896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:17325137710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967001] [to:16785443462] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-10 mdr: 2016-02-01 11:36:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527404] [to:17575153105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:14 ip-10-0-0-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527404] [to:17575153105] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:14 ip-10-0-64-11 mdr: 2016-02-01 11:36:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14135619549] [to:18123908627] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062244134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168018210] [to:+16475039329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244349527] [to:+17248035450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637096783] [to:+18637347022] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303274008] [to:+17187519106] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253455172] [to:+17743570309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197501012] [to:+19199164811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896219466] [to:+19894557126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340108] [to:15178176041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673424306] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303274008] [to:+17187519106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16514280249] [to:+16513338542] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-11 mdr: 2016-02-01 11:36:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:15 ip-10-0-0-10 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:15 ip-10-0-64-11 mdr: 2016-02-01 11:36:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136774138] [to:+16139098186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061277] [to:19143181483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-11 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177824] [to:13609092546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132956162] [to:12526731216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-11 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:16 ip-10-0-64-11 mdr: 2016-02-01 11:36:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032494] [to:14796923127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:16 ip-10-0-0-10 mdr: 2016-02-01 11:36:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109887415] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797999] [to:17879005745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066480] [to:12403832963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440454] [to:15185246372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184718] [to:18705515847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145784371] [to:+16149228010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612789] [to:18003733411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476684256] [to:+16475570062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968095] [to:15138288781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438211505] [to:+19148486616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786975018] [to:+13479809572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:15083145546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412261797] [to:+19703158825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-10 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-11 mdr: 2016-02-01 11:36:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F30201] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:17 ip-10-0-0-10 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691826] [to:14845543761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:17 ip-10-0-64-11 mdr: 2016-02-01 11:36:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931022] [to:15142651393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931022] [to:15142651393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404474932] [to:+17053000977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-20 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:13602705556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083897509] [to:+13866012335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018519] [to:13157179169] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025397] [to:12508081180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718601] [to:12109136278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:18 ip-10-0-64-10 mdr: 2016-02-01 11:36:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:18 ip-10-0-0-11 mdr: 2016-02-01 11:36:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503457582] [to:+18506313631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176079757] [to:+15172586816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-21 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:17272198053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314907254] [to:16314153529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479846] [to:19376701357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138292191] [to:+13137235940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-11 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-20 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-11 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062989933] [to:+13479138295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269193] [to:14074933091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:19 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488047] [to:15179626054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:19 ip-10-0-0-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379911] [to:16204401894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939442] [to:17247574927] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12162023214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808428174] [to:16025529340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063614820] [to:+14703335576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023188808] [to:+19027058512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:16784316610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783270888] [to:+19784896052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063363281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438158115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155078165] [to:+16784123652] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418171] [to:12263763939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044263] [to:19566848733] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:20 ip-10-0-0-11 mdr: 2016-02-01 11:36:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-10 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596031] [to:15092026130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:20 ip-10-0-64-11 mdr: 2016-02-01 11:36:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596031] [to:15092026130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053082964] [to:+17053027677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F30202] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865616] [to:12098187237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:21 ip-10-0-64-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162756623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-11 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:21 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234585482] [to:+13478683708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610782] [to:18326612282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193201760] [to:+12264555747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:17208997798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034734013] [to:+14387940527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039564] [to:16475509399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612375] [to:16626459387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043364] [to:16477944370] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507841] [to:17622120972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:22 ip-10-0-0-11 mdr: 2016-02-01 11:36:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:22 ip-10-0-64-10 mdr: 2016-02-01 11:36:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067762853] [to:+19729470541] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13308029661] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865385111] [to:+19175808950] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049314907] [to:+14703334342] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291417] [to:15743430804] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034988344] [to:+19148208300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-64-10 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894449832] [to:+19894020045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-10 mdr: 2016-02-01 11:36:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407047986] [to:+16149963187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:23 ip-10-0-0-11 mdr: 2016-02-01 11:36:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12166509786] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234507239] [to:+14072161521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:15144736560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783529172] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-20 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451220091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784669039] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107292554] [to:+18102218189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16129305847] [to:17313637965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125937547] [to:+18722535446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:17808022297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506392355] [to:15149121054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146040455] [to:+14387928090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-11 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475156574] [to:+16474980591] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:24 ip-10-0-0-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:24 ip-10-0-64-10 mdr: 2016-02-01 11:36:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:19019211072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204336] [to:14437894249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603887523] [to:+19543235790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272335744] [to:+17277679761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:12766204045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864386] [to:12407935886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783280081] [to:18606398513] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043085429] [to:+18285486092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003070301] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164094150] [to:+16474965375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-20 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17207291591] [to:15735280910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-11 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427530] [to:14804098720] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-20 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520606018] [to:+447470585321] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040619] [to:+15092623592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:25 ip-10-0-0-10 mdr: 2016-02-01 11:36:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:25 ip-10-0-64-11 mdr: 2016-02-01 11:36:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076485] [to:12603558969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003070302] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048304034] [to:+15612910787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:17272198053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538363] [to:12608490868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003070303] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062072350] [to:+18597777060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018044] [to:14096788622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-10 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911307] [to:16479956239] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17248807935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:26 ip-10-0-64-10 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054849482] [to:+16054237960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:26 ip-10-0-0-11 mdr: 2016-02-01 11:36:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067742] [to:12525642048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660335] [to:15742974623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364917] [to:12294571560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027042890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-10 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:27 ip-10-0-64-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:27 ip-10-0-0-11 mdr: 2016-02-01 11:36:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196091818] [to:+18194141600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397091] [to:+19542994604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046109658] [to:+14049004981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692966481] [to:12145649071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18672221036] [to:+18678883993] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827619] [to:19379473439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-21 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329012] [to:+447720097366] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163894] [to:16572512062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:28 ip-10-0-0-11 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438398787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:28 ip-10-0-64-10 mdr: 2016-02-01 11:36:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062727225] [to:+16319802132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643998422] [to:+15752913631] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473059321] [to:+12138068568] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403189446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403189446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274727] [to:17322163413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083061] [to:14239122327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828260] [to:15099646602] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884919] [to:14105980287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167800637] [to:+16162390152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313166148] [to:+19318967315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918932] [to:14163188447] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886948] [to:+18107725115] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536917074] [to:+12532480110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045506] [to:13069617838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680745] [to:16476679769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025319] [to:18186798308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17272691083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:29 ip-10-0-0-11 mdr: 2016-02-01 11:36:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252397684] [to:16619320467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-11 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782676872] [to:+16785868068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:29 ip-10-0-64-10 mdr: 2016-02-01 11:36:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035227803] [to:+13477972298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17814080737] [to:+17816548869] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309870950] [to:+13309358252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325137710] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:17272198053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672531954] [to:+12678444412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-0-10 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15797653176] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148065657] [to:+14387942039] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434778] [to:16093340306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-10 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005251] [to:19313379586] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:30 ip-10-0-64-11 mdr: 2016-02-01 11:36:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175165735] [to:+13479788831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787606441] [to:+14049004021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-21 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:12144002437] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736804] [to:14135193353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232334] [to:15598277496] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:15414184495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141505] [to:16318355103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220420] [to:18135036892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12036900177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816617] [to:19082202929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049314907] [to:+14703334342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322752591] [to:+12138063826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676681] [to:16786206202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968643] [to:15129009286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022203] [to:14189349333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595939] [to:18606178318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898373] [to:19853870474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:31 ip-10-0-64-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:31 ip-10-0-0-10 mdr: 2016-02-01 11:36:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557635] [to:19053214055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477870499] [to:+16474963490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163034065] [to:+15129523652] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18434085218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174684392] [to:+14848164763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053082964] [to:+17053027677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672087644] [to:+15672819166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147757] [to:16156276538] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15135606303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433286] [to:17736417449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177304] [to:18284039864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039440478] [to:+13216137143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-10 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286716] [to:15713371099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-10 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:32 ip-10-0-0-11 mdr: 2016-02-01 11:36:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:32 ip-10-0-64-11 mdr: 2016-02-01 11:36:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621377] [to:13473071090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404084757] [to:12404095716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921089] [to:+18458181446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19023180495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239429] [to:15594309294] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-0-10 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-10 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:33 ip-10-0-64-11 mdr: 2016-02-01 11:36:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488500767] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159798309] [to:+16157779512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-20 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674866665] [to:+13475088664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236290167] [to:+19725977042] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435340556] [to:+14435835132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-11 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14796332901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:34 ip-10-0-64-10 mdr: 2016-02-01 11:36:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:34 ip-10-0-0-11 mdr: 2016-02-01 11:36:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740466] [to:+17723618215] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809717] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075096] [to:14508814375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896149] [to:18285507701] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13158782992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17709060673] [to:+18285486203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555456] [to:12263462844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-20 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-10 mdr: 2016-02-01 11:36:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484828956] [to:18482206790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:35 ip-10-0-64-10 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-20 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447885420383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:35 ip-10-0-0-11 mdr: 2016-02-01 11:36:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12819485362] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:19723169687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12819485362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202849183] [to:+19285992812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14093002761] [to:+12135296116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497668] [to:14075019191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:19293313351] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:17788914981] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231058] [to:16038520956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346787708] [to:+17348214398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404209345] [to:+15102542869] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-10 mdr: 2016-02-01 11:36:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-10 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:36 ip-10-0-0-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:36 ip-10-0-64-11 mdr: 2016-02-01 11:36:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12166509786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691800] [to:13372449727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788876437] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452269] [to:12079749402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053211471] [to:+17053029061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067762853] [to:+19729470541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440728] [to:13369777086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179129657] [to:+19148291904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234894243] [to:+17727668534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373338772] [to:+16474985427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084059] [to:19105286618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743342635] [to:+13479971676] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570062] [to:16476684256] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:37 ip-10-0-64-10 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-11 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:37 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365770] [to:13142017348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034475493] [to:15038582983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328649] [to:14049348258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122808894] [to:+16125022049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184090377] [to:+15817041349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-11 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-10 mdr: 2016-02-01 11:36:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-11 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787224337] [to:+18622278405] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:38 ip-10-0-64-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:38 ip-10-0-0-10 mdr: 2016-02-01 11:36:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805173586] [to:+15874087003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178214042] [to:+18729995785] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407941397] [to:+17408797920] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13363387802] [to:16048123214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344014113] [to:+14342340199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078605103] [to:+13477148504] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-21 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629616] [to:19177800570] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437342609] [to:+14436812793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437421927] [to:+13475187023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587528] [to:13024197150] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-11 mdr: 2016-02-01 11:36:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:39 ip-10-0-0-11 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:39 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005948] [to:17063016194] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022969936] [to:+15028041548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154126905] [to:+17182558871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488047] [to:15179626054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184705572] [to:+13479376078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186798308] [to:+12138025319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13363387802] [to:16048123214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:40 ip-10-0-64-11 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569251] [to:17169985158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:40 ip-10-0-0-10 mdr: 2016-02-01 11:36:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15077792253] [to:+17736690260] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671460] [to:+16477995096] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:16149076342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-21 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034794298] [to:+12138611647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402081597] [to:+16513335842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188571666] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-11 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733328397] [to:+19733595072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17608671420] [to:17606416167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951055] [to:16476485055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-0-10 mdr: 2016-02-01 11:36:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:41 ip-10-0-64-11 mdr: 2016-02-01 11:36:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267002199] [to:+12262411688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827619] [to:19379473439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097018145] [to:+12092641754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434098199] [to:+12135876093] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15077792253] [to:+17736690260] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802398503] [to:+15874004867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187287556] [to:+15817003345] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314550159] [to:+16318127468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218253] [to:15132123417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889800] [to:13174955021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-11 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:42 ip-10-0-64-11 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:42 ip-10-0-0-10 mdr: 2016-02-01 11:36:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685093] [to:+17727667444] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-20 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139047971] [to:+18018500505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866829632] [to:+13866013668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132793043] [to:+18133244626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028239632] [to:+17027478248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:43 ip-10-0-64-10 mdr: 2016-02-01 11:36:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322282492] [to:+19199164269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:43 ip-10-0-0-11 mdr: 2016-02-01 11:36:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676681] [to:16786206202] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364710040] [to:+19783231437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177526592] [to:+13479787250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14182085399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025229962] [to:+16465137640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314058566] [to:+16317732651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704073829] [to:+18597777147] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249703600] [to:+17248032022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185040491] [to:18455443712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040806] [to:12506448894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-20 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:44 ip-10-0-0-11 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:44 ip-10-0-64-10 mdr: 2016-02-01 11:36:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895730065] [to:+17277052276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255916178] [to:+17605896450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263463710] [to:+12262418419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17696105744] [to:+17182559638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494286] [to:17178501764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548412] [to:16502438489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494286] [to:17178501764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262401985] [to:12896755077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674744489] [to:+12676909927] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784669039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607903926] [to:17606098464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:45 ip-10-0-64-10 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-10 mdr: 2016-02-01 11:36:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:45 ip-10-0-0-11 mdr: 2016-02-01 11:36:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402412415] [to:+12138737252] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084224934] [to:+18583048283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595098] [to:18502949619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595098] [to:18502949619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565032364] [to:+18563126520] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474669773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-20 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451228935] [to:+447757675307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462404] [to:19736500943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-10 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:46 ip-10-0-64-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:46 ip-10-0-0-11 mdr: 2016-02-01 11:36:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:12265040857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753346] [to:13058962194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012913583] [to:+19046947081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957694] [to:14439078439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:47 ip-10-0-0-11 mdr: 2016-02-01 11:36:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:47 ip-10-0-64-10 mdr: 2016-02-01 11:36:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803357277] [to:+17187510180] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473621520] [to:+15164724779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170013] [to:+19027021775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046204482] [to:+12048086830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703306115] [to:+14706734251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13306223556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817867] [to:18144311857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027579179] [to:17196444780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143926470] [to:+13477147934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12535170102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:48 ip-10-0-0-11 mdr: 2016-02-01 11:36:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:48 ip-10-0-64-10 mdr: 2016-02-01 11:36:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517031571] [to:+16474916297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475705171] [to:+13476678104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13619356924] [to:+19715124576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346787708] [to:+17348214398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019790382] [to:+12405587809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124563] [to:17243050412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-10 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027042890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:49 ip-10-0-64-11 mdr: 2016-02-01 11:36:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:49 ip-10-0-0-11 mdr: 2016-02-01 11:36:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868311] [to:13369444729] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298006007] [to:16307507849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053217235] [to:+19542994396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173543246] [to:+17739433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528990] [to:15708980943] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066188449] [to:+13478968551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298006007] [to:16307507849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712036962] [to:+19715128457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-21 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609328] [to:+447904840935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-20 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451224661] [to:+447930916467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144736560] [to:+16477999724] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358252] [to:14195663586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:50 ip-10-0-0-11 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-10 mdr: 2016-02-01 11:36:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:50 ip-10-0-64-11 mdr: 2016-02-01 11:36:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17063614820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12166509786] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207891040] [to:+14242835457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981016] [to:15195322905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345236] [to:14045760090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132109887] [to:+14158536525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:51 ip-10-0-64-10 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:51 ip-10-0-0-11 mdr: 2016-02-01 11:36:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568744811] [to:+12134787170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062805410] [to:+12139217619] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182377462] [to:+15103225599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676784089] [to:+16079655863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-10 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503764879] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163188447] [to:+16474918932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-10 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747722] [to:13202203025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:52 ip-10-0-0-11 mdr: 2016-02-01 11:36:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075006] [to:16137000713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:52 ip-10-0-64-11 mdr: 2016-02-01 11:36:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038341190] [to:+13479789882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666996] [to:17734187202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195485301] [to:+19172660440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-21 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:15102534743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149913541] [to:+16477992871] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886862] [to:+17077507683] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035031] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517031571] [to:+16474916297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-10 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:53 ip-10-0-64-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:53 ip-10-0-0-11 mdr: 2016-02-01 11:36:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179523959] [to:+16172193565] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334342] [to:14049314907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704990557] [to:+15703973261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181446] [to:17854921089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13303567705] [to:13304419770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134089] [to:15147098580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-10 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:54 ip-10-0-0-11 mdr: 2016-02-01 11:36:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17375297183] [to:+15129524384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:54 ip-10-0-64-11 mdr: 2016-02-01 11:36:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863862] [to:15082943471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852592922] [to:+14043412642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122200032] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607053651] [to:+12604077431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132122692] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293155472] [to:+12134783849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148392567] [to:+14388096924] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189770875] [to:+12132959694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566493284] [to:+18563125997] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189470023] [to:+19173834919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096835493] [to:+17097019082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234942452] [to:+13017786535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623236231] [to:+12628884471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127012443] [to:+18127777108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788305860] [to:+16784345881] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183323655] [to:+15189305345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569867539] [to:+16095434271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170049] [to:+19027042890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145947025] [to:+16466999671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785808176] [to:+14704446258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782070165] [to:+14706735163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196034397] [to:+19199161249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055037551] [to:+15102548975] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-20 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816421] [to:18122293179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-10 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370160] [to:13305926941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:55 ip-10-0-64-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412757] [to:16783823085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:55 ip-10-0-0-11 mdr: 2016-02-01 11:36:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349043488] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:14232412191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387776618] [to:+13436001576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309077781] [to:+13479542804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316729174] [to:+15087884893] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15135606303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19795870994] [to:+19798885046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-10 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-10 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639534] [to:15593207201] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:56 ip-10-0-0-11 mdr: 2016-02-01 11:36:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:56 ip-10-0-64-11 mdr: 2016-02-01 11:36:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082466] [to:16032338520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475078505] [to:+19177905877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14708390944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-20 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262310479] [to:+12264570457] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336790] [to:18013884353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231710] [to:16039913741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707809157] [to:+16785867480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-10 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109785145] [to:+15104555492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-10 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:57 ip-10-0-64-11 mdr: 2016-02-01 11:36:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14163011864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:57 ip-10-0-0-11 mdr: 2016-02-01 11:36:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049517655] [to:+12342315713] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178165807] [to:+13476672563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048638988] [to:+17188069733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258246] [to:12178833599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358252] [to:13309870950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317123661] [to:18765721059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292912266] [to:+14353391493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-10 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:58 ip-10-0-0-10 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:58 ip-10-0-64-11 mdr: 2016-02-01 11:36:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792340304] [to:+17133735896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535840] [to:12245880995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024104325] [to:+19027062593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188693742] [to:18188615021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022296972] [to:+14402528110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402430096] [to:+12604077042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177906180] [to:+13059014094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-11 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19023048632] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:36:59 ip-10-0-64-10 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:36:59 ip-10-0-0-21 mdr: 2016-02-01 11:36:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-10 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407796023] [to:+12405538974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263463710] [to:+12262418419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022451276] [to:+17123825849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830718] [to:13614553874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375958] [to:19739304695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-10 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:00 ip-10-0-64-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:00 ip-10-0-0-11 mdr: 2016-02-01 11:37:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-11 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17638529142] [to:17632600441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001673] [to:12498788642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075171956] [to:+19783649224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102545138] [to:+15068041844] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:18434190502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135859483] [to:+19027046441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-11 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198905520] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196041310] [to:+19513095201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348214398] [to:17346787708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:01 ip-10-0-0-10 mdr: 2016-02-01 11:37:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:01 ip-10-0-64-10 mdr: 2016-02-01 11:37:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083314687] [to:+13052037143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243972] [to:18049093532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773503] [to:15618898568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897098] [to:17174142753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302406] [to:17734995675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-10 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12766204045] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-20 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447788212505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088433964] [to:+17077507919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968551] [to:17066188449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-10 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19029680938] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:02 ip-10-0-0-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:02 ip-10-0-64-11 mdr: 2016-02-01 11:37:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404590227] [to:+13302370835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263463710] [to:+12262418419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-20 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221289] [to:+447936996807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145693] [to:19392240490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+12048130590] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024032073] [to:+18108527078] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143181483] [to:+19142061277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-10 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19122200032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-10 mdr: 2016-02-01 11:37:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782583770] [to:+19172595370] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:03 ip-10-0-0-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:03 ip-10-0-64-11 mdr: 2016-02-01 11:37:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075096] [to:14508814375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:14155259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405304] [to:15307379050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123122978] [to:+18572405070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043769] [to:19198009515] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-11 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:17018710762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137235940] [to:13138292191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-21 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473059321] [to:+12138068568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-21 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520629899] [to:+447806095884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053047682] [to:+18637347395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:17018710762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:04 ip-10-0-64-10 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:17018710762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:04 ip-10-0-0-11 mdr: 2016-02-01 11:37:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15047027250] [to:13179872924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185901097] [to:+15817014683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317123661] [to:18765721059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093988] [to:12047206745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135859483] [to:+19027046441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18624009356] [to:+14426007067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068498281] [to:+12085010363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064105578] [to:+14706735651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802810448] [to:+15873322555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-11 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:05 ip-10-0-0-10 mdr: 2016-02-01 11:37:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:05 ip-10-0-64-10 mdr: 2016-02-01 11:37:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:14044412023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863862] [to:15082943471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:14034657712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14438252749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005580] [to:17064078715] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127012443] [to:+18127777108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146390963] [to:+14144006691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:06 ip-10-0-0-11 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593429] [to:15635068716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:06 ip-10-0-64-10 mdr: 2016-02-01 11:37:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16185991576] [to:+18724008819] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170013] [to:+19027021775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779688] [to:12345174740] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550224] [to:14696616514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476671816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028131165] [to:+19149798977] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147934] [to:18143926470] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:17789037352] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348980] [to:13186582541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183325915] [to:+16465137056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973326] [to:15702696110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419024] [to:14238382417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404388] [to:19802264762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:07 ip-10-0-0-11 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673665] [to:13523605895] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-10 mdr: 2016-02-01 11:37:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19204204349] [to:+17204637414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:07 ip-10-0-64-11 mdr: 2016-02-01 11:37:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032649] [to:12094169976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013451158] [to:+14017214221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671509] [to:19144140565] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075006] [to:16138067971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868311] [to:13369444729] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-20 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209779092] [to:+19725251847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-11 mdr: 2016-02-01 11:37:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:08 ip-10-0-64-10 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:08 ip-10-0-0-11 mdr: 2016-02-01 11:37:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042334919] [to:+15169269207] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183259504] [to:+13052036821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003BE0201] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802630089] [to:+15204338732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127356792] [to:+12679232337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024935] [to:19193641429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102033388] [to:+14845485117] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:17792452178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603887523] [to:+19543235790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408216738] [to:+17408796722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396132] [to:12162689638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097142] [to:18433728215] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035031] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16132625639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593655358] [to:+12135876369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403103022] [to:+15406286587] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042334919] [to:+15169269207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-10 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087528] [to:15875948887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:09 ip-10-0-64-10 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183259504] [to:+13052036821] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BE0202] -Feb 1 11:37:09 ip-10-0-64-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044613] [to:17572376475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:09 ip-10-0-0-11 mdr: 2016-02-01 11:37:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179034867] [to:+17273624805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202925515] [to:+19717328549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13179690828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:1929285235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-11 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:14344144369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-11 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:16013238691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-10 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-11 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:10 ip-10-0-0-11 mdr: 2016-02-01 11:37:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:10 ip-10-0-64-10 mdr: 2016-02-01 11:37:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003300301] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300704] [to:+14158537742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19314944429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302574249] [to:+12604071409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513919797] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003300302] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183304697] [to:+16465648160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-21 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215973] [to:+447784241180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-20 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737911] [to:16109724813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134974376] [to:+14198777085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736391729] [to:+12135760115] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:11 ip-10-0-0-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-10 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157651795] [to:+17206236857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:11 ip-10-0-64-11 mdr: 2016-02-01 11:37:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429207] [to:16092318917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048096030] [to:+18133207720] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+12262411756] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387776618] [to:+13436001576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124576] [to:13619356924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-20 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329641] [to:+447599835354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182720] [to:17024723477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:12 ip-10-0-64-10 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:12 ip-10-0-0-11 mdr: 2016-02-01 11:37:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034868433] [to:15039678377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171826] [to:16313364013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194807138] [to:+15672506106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537742] [to:16062300704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-21 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003300303] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720594] [to:18433154511] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-10 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:13 ip-10-0-64-11 mdr: 2016-02-01 11:37:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:13 ip-10-0-0-10 mdr: 2016-02-01 11:37:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185808392] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377113] [to:13305416159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145766343] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13148998538] [to:12699939412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543933194] [to:+19543142739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17197663181] [to:+17206232348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167281477] [to:+16474941891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17748040141] [to:+14017214220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:17325137710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053214055] [to:+12264557635] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335323] [to:13019967093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-21 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154278257] [to:+19177739830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-10 mdr: 2016-02-01 11:37:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774086] [to:14147398199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837576] [to:13305570446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818715] [to:13309496270] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-10 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:14 ip-10-0-64-11 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:18329921282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:14 ip-10-0-0-21 mdr: 2016-02-01 11:37:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736500943] [to:+19738462404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045760090] [to:+16784345236] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196041310] [to:+19513095201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14438252749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-10 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-10 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412033632] [to:+18133202054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314787780] [to:+16315723861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:15 ip-10-0-64-10 mdr: 2016-02-01 11:37:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:15 ip-10-0-0-11 mdr: 2016-02-01 11:37:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:15037916506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146146] [to:12182050908] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749341] [to:12039829375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035031] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074032649] [to:12094169976] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163191708] [to:+16475567571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-11 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046356] [to:17096879129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267002199] [to:+12262411688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-11 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:16 ip-10-0-0-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:16 ip-10-0-64-10 mdr: 2016-02-01 11:37:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042775297] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200726] [to:18608188664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198309939] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154250422] [to:+12672732137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634190252] [to:+15633167329] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003230201] -Feb 1 11:37:17 ip-10-0-0-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438616] [to:16038457642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033208903] [to:+12138026042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-11 mdr: 2016-02-01 11:37:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:17 ip-10-0-64-10 mdr: 2016-02-01 11:37:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634190252] [to:+15633167329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003230202] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247875691] [to:+17248035791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478377] [to:+12536422250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-20 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337388] [to:+447950329267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044613] [to:17572376475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557884] [to:17605355322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241982] [to:+12262437181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387776618] [to:+13436001576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17203586509] [to:12262032940] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-21 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:13134652282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108296397] [to:+13025852137] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:18 ip-10-0-0-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023170013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-10 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:18 ip-10-0-64-11 mdr: 2016-02-01 11:37:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173488088] [to:+15172586952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599922247] [to:+13024398795] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065947994] [to:+14706734456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974576] [to:17047701956] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181112] [to:16147331997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709725976] [to:+19172751229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-20 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025213] [to:17059302389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025213] [to:17059302389] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477999724] [to:15144736560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784669039] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+16139122415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969821] [to:12312882607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B80201] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-11 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753023229] [to:+15755879297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B80202] -Feb 1 11:37:19 ip-10-0-0-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:12143643911] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:19 ip-10-0-64-10 mdr: 2016-02-01 11:37:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-21 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:19178684272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-20 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F60402] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F60403] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003F60401] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375664] [to:12488200543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:15513330927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862596] [to:+18639491773] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188210795] [to:+15186155460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432666582] [to:+14433453880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349043488] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:20 ip-10-0-0-10 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-10 mdr: 2016-02-01 11:37:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:20 ip-10-0-64-11 mdr: 2016-02-01 11:37:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137698183] [to:13234566670] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023765834] [to:+19292201815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542022232] [to:+12262415897] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033892780] [to:+17077507197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043895663] [to:+15107756997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026902725] [to:+12065196235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164763] [to:17174684392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799887] [to:15705292481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-10 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-21 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315421] [to:12515046935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:21 ip-10-0-64-11 mdr: 2016-02-01 11:37:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:21 ip-10-0-0-11 mdr: 2016-02-01 11:37:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069518326] [to:+13219265319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783633942] [to:+13475086739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179872924] [to:+15047027250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731447] [to:15599722129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-21 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044392423] [to:+13479971989] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572180428] [to:+14695324619] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484568871] [to:+13025850234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-10 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176760049] [to:+13479805812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-10 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:22 ip-10-0-0-11 mdr: 2016-02-01 11:37:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:22 ip-10-0-64-11 mdr: 2016-02-01 11:37:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381124] [to:13365834320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437894249] [to:+14437204336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889979] [to:13308092969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808509100] [to:+16042594978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332724] [to:19185132184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17854921089] [to:+18458181446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-0-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946963] [to:19044030473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-10 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779649] [to:13302084495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:23 ip-10-0-64-11 mdr: 2016-02-01 11:37:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063805565] [to:+13176881205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16829909176] [to:+16136048235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076003943] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876093] [to:18434098199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266406] [to:17205034117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644373539] [to:+14073371617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17022499152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073547745] [to:+19172669376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:24 ip-10-0-0-10 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:24 ip-10-0-64-11 mdr: 2016-02-01 11:37:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197737703] [to:+16139125711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076003943] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069492102] [to:+14706734546] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742747971] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517477447] [to:+18575764456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-21 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447518062150] [to:+447451239856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062472305] [to:+14706734996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603558969] [to:+12604076485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17786798072] [to:+17784024596] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014446] [to:14439390147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15082711868] [to:12605702998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17347966657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326161] [to:18595539711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19132047662] [to:+12139353727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:25 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:25 ip-10-0-64-10 mdr: 2016-02-01 11:37:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009235] [to:13014733859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439796793] [to:+14437202258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174877235] [to:+15104477848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12084574703] [to:12192268464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659680] [to:14253452414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303903] [to:12075055883] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772934] [to:+19149089954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:26 ip-10-0-64-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042292005] [to:+16465648476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14803863190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-10 mdr: 2016-02-01 11:37:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:26 ip-10-0-0-11 mdr: 2016-02-01 11:37:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175280751] [to:+19492814691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154552] [to:+15109482802] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527276] [to:18109085205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15594700660] [to:15599011635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849471] [to:15127443799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:27 ip-10-0-0-10 mdr: 2016-02-01 11:37:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:27 ip-10-0-64-11 mdr: 2016-02-01 11:37:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735163] [to:14782070165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016037351] [to:+18046244135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790285] [to:17164997543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-20 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817001303] [to:14189515997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188660195] [to:+14072162425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413166002] [to:16412245582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805350037] [to:+15624735028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143181483] [to:+19142061277] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-20 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959694] [to:15189770875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853122] [to:17409941505] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:13045493860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048456563] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-11 mdr: 2016-02-01 11:37:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:28 ip-10-0-64-10 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:28 ip-10-0-0-11 mdr: 2016-02-01 11:37:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892281164] [to:+12262413357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134652677] [to:+16464179408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193271] [to:17404032202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853122] [to:17409941505] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347395] [to:13053047682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:29 ip-10-0-0-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-0-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842191455] [to:+13479808463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-0-11 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:15138851468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-11 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599750002] [to:+14156493943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019398] [to:19029996287] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:29 ip-10-0-64-10 mdr: 2016-02-01 11:37:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:13862629323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057213631] [to:+13477966838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022785] [to:+17077507709] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609669] [to:12072057152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653604] [to:17787880454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137327] [to:17709120135] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137327] [to:17709120135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026331458] [to:+14155494141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455743] [to:18323183843] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797314] [to:17047701200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455743] [to:18323183843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549848] [to:12524691532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-11 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:30 ip-10-0-64-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123890779] [to:+14156308364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:30 ip-10-0-0-10 mdr: 2016-02-01 11:37:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13606383149] [to:15037916506] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739830] [to:13154278257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033353] [to:17246012964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713371099] [to:+15406286716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086467404] [to:+17029016601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845972801] [to:+14844207905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-0-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437342609] [to:+14436812793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-11 mdr: 2016-02-01 11:37:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282974573] [to:15202738162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:31 ip-10-0-64-10 mdr: 2016-02-01 11:37:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195048729] [to:+16474980554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305758951] [to:+13309708850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036900177] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086467404] [to:+17029016601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453106] [to:17147529815] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063483261] [to:+15308631780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199186] [to:12109884695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449676] [to:19015306885] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-10 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449676] [to:19015306885] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-10 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16472356000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-0-11 mdr: 2016-02-01 11:37:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:32 ip-10-0-64-11 mdr: 2016-02-01 11:37:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853780369] [to:+13473438496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455383705] [to:+18455797200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500036E0201] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673386529] [to:+19175808233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586952] [to:15173488088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362283] [to:+12138026586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660440] [to:19195485301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500036E0202] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18453009656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635068716] [to:+15635593429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:33 ip-10-0-64-10 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808022297] [to:+15873323049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:33 ip-10-0-0-11 mdr: 2016-02-01 11:37:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785371] [to:+19148468592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14847979685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156902369] [to:+17162792216] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:19198309939] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993017] [to:14077054831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852008744] [to:+15852824319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-21 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653604] [to:17787880454] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-20 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12547356220] [to:15407184453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-11 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-11 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:34 ip-10-0-64-10 mdr: 2016-02-01 11:37:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044758365] [to:+18046244955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:34 ip-10-0-0-10 mdr: 2016-02-01 11:37:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293363] [to:19727427754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162067179] [to:+19165339738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809038] [to:16785060424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082943471] [to:+17817863862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291904] [to:13179129657] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439394206] [to:+17196292144] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414511147] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690179] [to:19058098525] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737477] [to:12404592022] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-10 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-11 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163504] [to:19194825295] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:35 ip-10-0-64-11 mdr: 2016-02-01 11:37:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:35 ip-10-0-0-20 mdr: 2016-02-01 11:37:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941907] [to:18198060986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:12146769897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033860423] [to:+13476303932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370411] [to:13305196869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393573] [to:16024722644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193641429] [to:+16614024935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:36 ip-10-0-0-11 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:36 ip-10-0-64-10 mdr: 2016-02-01 11:37:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016968013] [to:+14092205959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102534743] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-20 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447526654441] [to:+447451236738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044961987] [to:+14049001074] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016968013] [to:+14092205959] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482220288] [to:+18484824360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412409] [to:18723035752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-0-10 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-10 mdr: 2016-02-01 11:37:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491152] [to:15857649568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:37 ip-10-0-64-11 mdr: 2016-02-01 11:37:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269230052] [to:+12262408420] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061277] [to:19143181483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19548037399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749589] [to:19195593339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332724] [to:19185132184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182050908] [to:+18583146146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063999] [to:15149289566] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063999] [to:15149289566] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218189] [to:19107292554] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-11 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305035376] [to:+15103405586] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-20 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-10 mdr: 2016-02-01 11:37:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:38 ip-10-0-64-11 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188571666] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:38 ip-10-0-0-21 mdr: 2016-02-01 11:37:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198276823] [to:+19199166501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082943471] [to:+17817863862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:19059624221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17787757217] [to:+16136046954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153157534] [to:+13479379614] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808022] [to:17572568302] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803863190] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19288971168] [to:+19282976411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-11 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-10 mdr: 2016-02-01 11:37:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:39 ip-10-0-0-10 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:39 ip-10-0-64-11 mdr: 2016-02-01 11:37:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17024098639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-21 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672970] [to:+447974053322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053593014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023170013] [to:+19027021775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585899] [to:15172909623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435189394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773130] [to:18439179780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868404] [to:18144945908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632069] [to:13868379635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085562379] [to:15712476992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961540] [to:12763409051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587809] [to:13019790382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024978207] [to:+16024295193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:40 ip-10-0-0-10 mdr: 2016-02-01 11:37:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106063310] [to:+17073007799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:40 ip-10-0-64-11 mdr: 2016-02-01 11:37:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629124] [to:17173000411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608352] [to:14343901020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228996] [to:16068723020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19314345818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021514] [to:19023296866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-20 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235973] [to:+447956527123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235790] [to:12603887523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132439721] [to:+16136044032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315661] [to:15125688514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18584284891] [to:+17026748682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-10 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:41 ip-10-0-64-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:41 ip-10-0-0-11 mdr: 2016-02-01 11:37:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:19404428291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024596015] [to:+19177954138] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168776633] [to:+12693325692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896890382] [to:+12262418503] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734127790] [to:+18637347092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672354] [to:+18194141041] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024430119] [to:+17029016625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-64-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13619356924] [to:+19715124576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916102] [to:19084513423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052347] [to:14692458558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-11 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010363] [to:12068498281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:42 ip-10-0-0-10 mdr: 2016-02-01 11:37:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178621765] [to:+16412432636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12048815303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259036515] [to:+12138027847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602705556] [to:+13606383149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004021] [to:16787606441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17073827343] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134334179] [to:+16139093331] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993032] [to:+14706734025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:43 ip-10-0-0-11 mdr: 2016-02-01 11:37:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-11 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:43 ip-10-0-64-10 mdr: 2016-02-01 11:37:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612466182] [to:+16465688500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-21 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447808077042] [to:+447418329567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527330] [to:15174556825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181446] [to:17854921089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789141725] [to:+13478083050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525149093] [to:+13866284171] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19852735969] [to:12252885168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:44 ip-10-0-0-11 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095977030] [to:+19027003915] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:44 ip-10-0-64-10 mdr: 2016-02-01 11:37:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309870950] [to:+13309358252] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862629323] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701200] [to:+14242797314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450399] [to:18622004288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993032] [to:+14706734025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-21 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333360] [to:+447572598118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627326] [to:16073424038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039470613] [to:+19172835170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054104581] [to:+12136324918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-21 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333360] [to:+447572598118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:45 ip-10-0-0-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-10 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:45 ip-10-0-64-11 mdr: 2016-02-01 11:37:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422491] [to:14233779529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792254267] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109167381] [to:+19175809312] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735670502] [to:+19739102905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144364657] [to:+14387945190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665528] [to:+14437201409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084414205] [to:14137997975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314109] [to:18505439641] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082026499] [to:+19083824775] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779737] [to:13304323241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:46 ip-10-0-64-10 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:46 ip-10-0-0-11 mdr: 2016-02-01 11:37:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-10 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834919] [to:15189470023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343333695] [to:+12136946793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404167550] [to:+17408797954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-21 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451223509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-20 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208480] [to:+447710134432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341398] [to:15083538028] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042225607] [to:+12139217519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-11 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15097397100] [to:15098513968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869524] [to:13857430334] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:47 ip-10-0-64-11 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313166148] [to:+19318967315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:47 ip-10-0-0-10 mdr: 2016-02-01 11:37:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562940537] [to:+18572194615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182908241] [to:+15817009575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124419] [to:16107632993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079470430] [to:+19172592230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960195] [to:17195699596] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:17089829053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096527208] [to:+14088778638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-11 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803713] [to:18607710725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:48 ip-10-0-64-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:48 ip-10-0-0-10 mdr: 2016-02-01 11:37:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809821773] [to:+15874004806] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026976749] [to:+12406857149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702441347] [to:+13053400936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947704] [to:19042946085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364099669] [to:+13366450604] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148627364] [to:+12029991133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19317434857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703694609] [to:+17279986949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799856381] [to:+12602327080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789186789] [to:+19782384414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-10 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:49 ip-10-0-0-10 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183156552] [to:+18108527731] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402662368] [to:+13478085742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:49 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17708824527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536917074] [to:+12532480110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049817859] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042983500] [to:+19802092946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699212] [to:12027023978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797920] [to:17407941397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:14437981616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021160] [to:13177193349] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368676] [to:15305101774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196292144] [to:14439394206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059343930] [to:+13054175905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-11 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922065] [to:15147540090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:50 ip-10-0-64-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364424] [to:+13473898461] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:50 ip-10-0-0-10 mdr: 2016-02-01 11:37:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387108] [to:13234826936] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522017715] [to:+19046946223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747702] [to:13046632350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-20 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232197] [to:+447932456870] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445831] [to:19152070133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450647] [to:13364017242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14439951764] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-11 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809556] [to:18648047820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-64-10 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126740808] [to:+16465135490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-11 mdr: 2016-02-01 11:37:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:51 ip-10-0-0-10 mdr: 2016-02-01 11:37:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632802] [to:17577712603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044151814] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17064964060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345236] [to:14045760090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973566] [to:16105686799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808751742] [to:+14694147126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472510592] [to:+19149098270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12535170241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:52 ip-10-0-0-11 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132226723] [to:+12137978757] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:52 ip-10-0-64-10 mdr: 2016-02-01 11:37:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12036900177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12266887436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968146] [to:19312529990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163515] [to:19199996585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356411] [to:12105567515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350530] [to:14048630349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15859782876] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:17722091497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166660830] [to:+16474910452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-11 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-10 mdr: 2016-02-01 11:37:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:53 ip-10-0-64-10 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:53 ip-10-0-0-11 mdr: 2016-02-01 11:37:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743778019] [to:+12606337493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605199688] [to:+19199163205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404032202] [to:+13479193271] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734996] [to:17062472305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863437488] [to:+17863471390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008398] [to:14186161004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743605405] [to:+18572195907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-11 mdr: 2016-02-01 11:37:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971989] [to:18044392423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:54 ip-10-0-0-11 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614743136] [to:+15103228075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:54 ip-10-0-64-10 mdr: 2016-02-01 11:37:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437903577] [to:+13024398714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037341] [to:13472511468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239186] [to:18313197848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038431] [to:19294654271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267002199] [to:+12262411688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482206790] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063437595] [to:+14706732605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145328599] [to:+19172668957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143642505] [to:+12628886392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074504184] [to:+14072162782] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196687336] [to:+18194141002] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313989674] [to:+13475188012] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F60404] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042246663] [to:+13479569746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478922471] [to:+12262405594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048632] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188571666] [to:+18506314025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063990900] [to:+14703335249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604247870] [to:+15152034488] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249317470] [to:+14128193461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743504355] [to:+13478683520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624400204] [to:+19142796553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-64-11 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165790338] [to:+17162790995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404095716] [to:+12404084757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046970517] [to:+19046947195] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-10 mdr: 2016-02-01 11:37:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127443799] [to:+12709849471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:55 ip-10-0-0-11 mdr: 2016-02-01 11:37:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132941338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128457] [to:19712036962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069939032] [to:12506131451] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022282501] [to:+14803008793] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796722] [to:17408216738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15807047902] [to:+13369383203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12295483894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-10 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:56 ip-10-0-64-11 mdr: 2016-02-01 11:37:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:56 ip-10-0-0-11 mdr: 2016-02-01 11:37:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144736560] [to:+16477999724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:447451225788] [to:17738753200] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326997] [to:15802365629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773130] [to:18438582714] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106063310] [to:+17073007799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:447451225788] [to:17738753200] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642469] [to:19412646874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142424498] [to:+14387920514] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188580253] [to:+15817009285] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440164] [to:15182315414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023001331] [to:+17053003109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118562096737118] [to:+16129305884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-10 mdr: 2016-02-01 11:37:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:57 ip-10-0-64-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:15797653176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:57 ip-10-0-0-11 mdr: 2016-02-01 11:37:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308717] [to:13218050473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062244134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374680] [to:13304124383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286716] [to:15713371099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028155444] [to:+19027040198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064003158] [to:17802740448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473154] [to:12673562217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162480008] [to:+16177067158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514680999] [to:+19512281079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134715422] [to:+12132896979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474867374] [to:+16474916410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809686] [to:12524552834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168322258] [to:+14074424746] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967756] [to:17035856068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-10 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:58 ip-10-0-64-11 mdr: 2016-02-01 11:37:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18472074515] [to:+13126145667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:58 ip-10-0-0-11 mdr: 2016-02-01 11:37:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004981] [to:14046109658] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375958] [to:19738614031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266406] [to:17192998768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:14437981616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-21 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447585330790] [to:+447451207440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365391] [to:16074258094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062232004] [to:+17727668917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336953] [to:15147429374] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559264] [to:12525674296] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-10 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364482] [to:+16503001289] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857560] [to:+13479803761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255654406] [to:+15102548464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:37:59 ip-10-0-64-10 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-11 mdr: 2016-02-01 11:37:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:37:59 ip-10-0-0-20 mdr: 2016-02-01 11:37:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-10 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477974624] [to:12292895502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-21 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447974562790] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:19162385109] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-11 mdr: 2016-02-01 11:38:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:00 ip-10-0-64-10 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:00 ip-10-0-0-11 mdr: 2016-02-01 11:38:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-21 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602260209] [to:+13478993807] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086890] [to:18609313254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13479676633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305035376] [to:+15103405586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195485301] [to:+19172660440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15798888927] [to:+16477991209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018764214] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:01 ip-10-0-0-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337335] [to:12602249673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-11 mdr: 2016-02-01 11:38:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18018764214] [to:+19142060826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:01 ip-10-0-64-10 mdr: 2016-02-01 11:38:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172665760] [to:+19734466473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-21 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336765] [to:+44772940880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603887523] [to:+19543235790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656026003] [to:+17728004207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812510] [to:14015782472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418419] [to:12263463710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312374558] [to:+13366452635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564799022] [to:+17184812208] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177247] [to:17724943546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:17166034883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-64-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-11 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042100329] [to:+16465037017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:02 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:13474892152] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124576] [to:13619356924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:17166034883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450402] [to:18082096560] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177177160] [to:+15183440103] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046983856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803713] [to:18607710725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-10 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139259125] [to:+15107799580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099402] [to:16133620404] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619176069] [to:+16615334281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092041148] [to:18454231076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-64-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12014231321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819487] [to:14195590544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-10 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18023765834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:03 ip-10-0-0-11 mdr: 2016-02-01 11:38:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18562916292] [to:18562296469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097878091] [to:+19176635497] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491750] [to:13614630566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-21 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-11 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-11 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-21 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447936996807] [to:+447451221289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-11 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195649842] [to:+12135295275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065848] [to:19802486566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-64-11 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048960] [to:17017200700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16473815664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965527] [to:19102319614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-11 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15416567336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-11 mdr: 2016-02-01 11:38:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:04 ip-10-0-0-10 mdr: 2016-02-01 11:38:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157421] [to:19044831686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15416567336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15416567336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653513544] [to:+16466691170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147805829] [to:+19706010046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-21 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-21 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118562096737118] [to:+16129305884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231922] [to:12675304029] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323428517] [to:+12819421913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194039668] [to:+12262404818] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256225528] [to:+12062588297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055002670] [to:+17053001759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12395290605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17064095938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645597536] [to:+18649997083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189489823] [to:+15103135331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:05 ip-10-0-64-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12395290605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13106278533] [to:17144792388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-11 mdr: 2016-02-01 11:38:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:05 ip-10-0-0-10 mdr: 2016-02-01 11:38:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764402] [to:18035076398] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037134625] [to:+12134547738] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059234300] [to:+15817003582] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187090361] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555747] [to:15193201760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875856885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-21 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511078] [to:+19027042891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185102205] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14353391920] [to:13362446122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-10 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:06 ip-10-0-0-11 mdr: 2016-02-01 11:38:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605355322] [to:+18638557884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:06 ip-10-0-64-11 mdr: 2016-02-01 11:38:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593632] [to:18128211831] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:13045416469] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049627724] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015852556] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882875] [to:13236749829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14437846129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:17174952879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305241955] [to:+12027179687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179913266] [to:+15399999076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179913266] [to:+15399999076] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602755327] [to:12608041125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129834491] [to:+17812621969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:07 ip-10-0-0-11 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:07 ip-10-0-64-10 mdr: 2016-02-01 11:38:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702441347] [to:+13053400936] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225870] [to:12293769233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225870] [to:12293769233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999268] [to:12295392366] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197919117] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17084928301] [to:19857100945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225870] [to:12293769233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168646735] [to:+17162792660] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929469] [to:13068812825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15853091811] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:08 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152132158] [to:+18724008386] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313552378] [to:+15169082620] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:08 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701308] [to:12342447644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092828933] [to:15092017058] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644911447] [to:+13309157314] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701308] [to:12342447644] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14429992721] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323856856] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069684125] [to:+17063959462] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507919] [to:14084712668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:18325497056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899538] [to:19073889895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:18325497056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177732552] [to:+18506315065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19014517803] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173537258] [to:+18188772617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569851] [to:18023709387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:09 ip-10-0-64-10 mdr: 2016-02-01 11:38:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137997975] [to:+15084414205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:09 ip-10-0-0-11 mdr: 2016-02-01 11:38:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029960621] [to:17028597460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206640060] [to:+19203933443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437266] [to:14422228074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349235] [to:13377181612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19014517803] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018427922] [to:19014517803] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188693742] [to:12132944739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155259086] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024197150] [to:+19047587528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:10 ip-10-0-0-10 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-10 mdr: 2016-02-01 11:38:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:10 ip-10-0-64-11 mdr: 2016-02-01 11:38:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033120989] [to:+17256661224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195699596] [to:+17194960195] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803358966] [to:+19802093554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132941338] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066174385] [to:+13477974551] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065184456] [to:+15092040816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477818532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705302750] [to:+19148818665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232854719] [to:+12136163484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971058] [to:18039335417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-11 mdr: 2016-02-01 11:38:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569826] [to:15085255395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:11 ip-10-0-64-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066174385] [to:+13477974551] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:11 ip-10-0-0-10 mdr: 2016-02-01 11:38:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16629980826] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16316141287] [to:16318735216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182085399] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660038] [to:13022429061] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559837] [to:19172920898] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144673613] [to:+14387927488] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725251541] [to:12146040960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966317] [to:12562761539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19788958786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309685] [to:13477179666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:12488500767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19788958786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019790382] [to:+12405587809] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024911040] [to:+19142812754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:12 ip-10-0-64-10 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164269] [to:17322282492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:12 ip-10-0-0-11 mdr: 2016-02-01 11:38:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705515847] [to:+16513184718] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955806] [to:14026016859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14165203276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:13474654570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475231173] [to:+12048137291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036675909] [to:+19172318733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13303013590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106587699] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437202] [to:12896847646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-0-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-10 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014272] [to:13043761268] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:13 ip-10-0-64-11 mdr: 2016-02-01 11:38:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617632032] [to:+18572401422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500435] [to:18017126583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168357802] [to:+16476911901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038431] [to:19294654271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204256319] [to:+17204637858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347962914] [to:+17279165053] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19364147593] [to:+18329877811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053308397] [to:+12138227002] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183156552] [to:+18108527731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-11 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:14 ip-10-0-64-10 mdr: 2016-02-01 11:38:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053022789] [to:19059034091] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:14 ip-10-0-0-10 mdr: 2016-02-01 11:38:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19563553401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053308397] [to:+12138227002] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:12402858025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022971847] [to:+15068038942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023596267] [to:+15183032250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199996585] [to:+19199163515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13346256512] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053308397] [to:+12138227002] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053507258] [to:+17547774767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549182028] [to:+19172610967] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162782] [to:14074504184] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053022789] [to:19059034091] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865385111] [to:+19175808950] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195916721] [to:+12085012552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606178318] [to:+19172595939] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:15 ip-10-0-64-10 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053057947] [to:+14159889423] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:15 ip-10-0-0-11 mdr: 2016-02-01 11:38:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702771378] [to:+14044811147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557227] [to:14435615833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-21 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239856] [to:+447518062150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14172806695] [to:+14158538733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-21 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447784241180] [to:+447451215973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046984949] [to:+12048093291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203584163] [to:+17185042876] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12483282524] [to:14233162014] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17723607654] [to:+17726177197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17126428430] [to:15407596482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407149] [to:18452629650] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308364] [to:17123890779] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411970] [to:12269883544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054411264] [to:+17053026943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:16 ip-10-0-0-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-11 mdr: 2016-02-01 11:38:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785808176] [to:+14704446258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:16 ip-10-0-64-10 mdr: 2016-02-01 11:38:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286268] [to:14076199350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019297] [to:19022988006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185650397] [to:+19035277491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411688] [to:12267002199] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15302903224] [to:+19177375960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735604] [to:17138261564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16394805323] [to:+16474963550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043078615] [to:+19785334082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473269] [to:16025297492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502747777] [to:+18508950634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528839924] [to:+14157876723] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186161004] [to:+15817008398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787238751] [to:+13479067600] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052407611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-20 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447957083004] [to:+447451247976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804623] [to:12398222453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-11 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:13474892152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:17 ip-10-0-64-10 mdr: 2016-02-01 11:38:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:17 ip-10-0-0-10 mdr: 2016-02-01 11:38:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174684392] [to:+14848164763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047171966] [to:+12138733520] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056103687] [to:+15058004277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169189307] [to:+12264550389] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179945502] [to:+13478023719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872046521] [to:+19173911223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784847253] [to:+14242797071] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808370] [to:12693651230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179690828] [to:+16413165184] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546245942] [to:+13053405607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415905648] [to:+15416341331] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:18 ip-10-0-0-11 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:18 ip-10-0-64-10 mdr: 2016-02-01 11:38:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462404] [to:19736500943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-20 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776698] [to:12163070620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611663] [to:13474357207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404592022] [to:+14439737477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028170094] [to:+19027021326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-64-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-11 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685041] [to:13043088973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144935824] [to:+13477735010] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-11 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194807978] [to:17192044711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937035] [to:17803949309] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:19 ip-10-0-0-10 mdr: 2016-02-01 11:38:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168556917] [to:+17186755876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137377] [to:15103618197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048992774] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207390] [to:17657026681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072970317] [to:+19172594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359768] [to:15084156096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359768] [to:15084156096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16133153236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799580] [to:18139259125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262486404] [to:+18185401738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:20 ip-10-0-0-10 mdr: 2016-02-01 11:38:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720761] [to:19419323140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:20 ip-10-0-64-11 mdr: 2016-02-01 11:38:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19055188135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058794898] [to:+17864803932] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023139998] [to:+19493921699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731927] [to:17063055319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+14153227988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308700] [to:12139240553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:16175996264] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440164] [to:15182315414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960195] [to:17195699596] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029776] [to:19024141951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:21 ip-10-0-0-11 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:21 ip-10-0-64-10 mdr: 2016-02-01 11:38:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898500] [to:19197572850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165465] [to:12523052841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392361302] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123478731] [to:+16233839616] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695678378] [to:+12692244182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164661604] [to:+16163190153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305187736] [to:+13052036132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473815664] [to:+16474940511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-10 mdr: 2016-02-01 11:38:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:22 ip-10-0-64-10 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18567453116] [to:+13476674413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:22 ip-10-0-0-11 mdr: 2016-02-01 11:38:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132941338] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062602893] [to:+13477145133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001759] [to:17055002670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142671509] [to:13474198258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027541061] [to:+19028018416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069146696] [to:+13143842657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595939] [to:18606178318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449076] [to:19013140997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-0-11 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:23 ip-10-0-64-10 mdr: 2016-02-01 11:38:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008386] [to:18152132158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022083075] [to:+12342314005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:14025948991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969821] [to:12318307529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099327910] [to:+14097771148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068412086] [to:+12069469067] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784851844] [to:+19196516978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403887653] [to:+12405457903] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029863] [to:12523619277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750839] [to:17722039373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:15708469784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244098] [to:14348485782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:16788917492] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-0-10 mdr: 2016-02-01 11:38:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049221719] [to:+12048179589] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-11 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:24 ip-10-0-64-10 mdr: 2016-02-01 11:38:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321508] [to:15875913036] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:15144164179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188686951] [to:+15817021984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176029901] [to:+12132953375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183155929] [to:+15103404745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16123526362] [to:+15209997026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476566099] [to:+12897808771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193201760] [to:+12264555747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545015952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015852556] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801272] [to:16469307710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164763] [to:17174684392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-11 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053017609] [to:18052858250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:14025948991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:25 ip-10-0-64-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328177901] [to:+18328045567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158685] [to:17025924782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:25 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055993] [to:15852877409] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760721] [to:12185766947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059754520] [to:+17053004988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314787780] [to:+16315723861] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19032654521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874641141] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19153050090] [to:+14693096784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004193] [to:19194389444] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081889] [to:17325584827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14164328583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302892] [to:14123392880] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387108] [to:13234826936] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085201857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513387108] [to:13234826936] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992553] [to:19084257771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:26 ip-10-0-64-10 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062330629] [to:+19148818065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:26 ip-10-0-0-11 mdr: 2016-02-01 11:38:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179388] [to:+12342313930] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12564578259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208788947] [to:+15084168734] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783656] [to:17577693324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805445] [to:12894562314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653019] [to:17788722429] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688843] [to:13473035026] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824257] [to:15856230545] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-10 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:27 ip-10-0-64-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004207] [to:17656026003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:27 ip-10-0-0-11 mdr: 2016-02-01 11:38:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188686951] [to:+15817021984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190027] [to:12673931874] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592577650] [to:+15592239417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-11 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:28 ip-10-0-0-10 mdr: 2016-02-01 11:38:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:28 ip-10-0-64-10 mdr: 2016-02-01 11:38:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-10 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143181483] [to:+19142061277] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17207090525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-21 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239077] [to:+447711865468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365124844] [to:+15103225785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-10 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-11 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893905180] [to:+19895334289] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19039412572] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-11 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:19039412572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:29 ip-10-0-64-10 mdr: 2016-02-01 11:38:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:29 ip-10-0-0-10 mdr: 2016-02-01 11:38:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965138] [to:16179018023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549182028] [to:+19172610967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524694972] [to:+19196517078] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-10 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306054509] [to:+14158530473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286268] [to:14076199350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-10 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16472980707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196322681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992553] [to:19084257771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:30 ip-10-0-64-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:30 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889260] [to:17656674460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-10 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-10 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-10 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15163134589] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:31 ip-10-0-0-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145479183] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445831] [to:19152051251] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:31 ip-10-0-64-11 mdr: 2016-02-01 11:38:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406226173] [to:+13476670361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-20 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D50501] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908991] [to:18604494080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812754] [to:12024911040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134175835] [to:+13437001445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455383705] [to:+18455797200] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364609131] [to:+13366452483] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502323392] [to:17097708576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755666] [to:17709106797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134752864] [to:+18133087256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733032269] [to:17736981541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:32 ip-10-0-64-11 mdr: 2016-02-01 11:38:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:32 ip-10-0-0-10 mdr: 2016-02-01 11:38:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049911793] [to:+14242769725] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019297] [to:19022988006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062472305] [to:+14706734996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104930] [to:12243816660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+16475567087] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862645] [to:+19298411267] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031531] [to:12183085196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-10 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036900177] [to:+12039904401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005813] [to:17709120475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018605] [to:15062591993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14164764106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-10 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179687] [to:15305241955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19542542177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-64-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:33 ip-10-0-0-11 mdr: 2016-02-01 11:38:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026943] [to:17054411264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261478] [to:50372228895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164661604] [to:+16163190153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17782406187] [to:+16042652812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133347550] [to:+15874108077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784000395] [to:16047546039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:34 ip-10-0-0-11 mdr: 2016-02-01 11:38:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:34 ip-10-0-64-10 mdr: 2016-02-01 11:38:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041009] [to:15025534936] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543172194] [to:+14695321599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054925320] [to:+17723601634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032310711] [to:+19032130669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086827831] [to:+12678444493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-11 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-11 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402350948] [to:+16172193265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139329] [to:17742655470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-21 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447875097527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792082238] [to:+19172751493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:35 ip-10-0-64-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175204081] [to:13174602421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844207905] [to:14845972801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:35 ip-10-0-0-10 mdr: 2016-02-01 11:38:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14148377645] [to:+13478993297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132941338] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-20 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447918991633] [to:+447451213885] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-20 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418330988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248824292] [to:+17248033707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-10 mdr: 2016-02-01 11:38:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:36 ip-10-0-0-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:36 ip-10-0-64-11 mdr: 2016-02-01 11:38:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D50502] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353898] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-21 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930364229] [to:+447451201674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676945386] [to:+12677988803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558445] [to:18034008297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967246] [to:18503639195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879005745] [to:+17408797999] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:13033247296] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007067] [to:18624009356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:37 ip-10-0-64-10 mdr: 2016-02-01 11:38:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718933] [to:12106082885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:37 ip-10-0-0-11 mdr: 2016-02-01 11:38:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396451393] [to:+17865673639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:13033247296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-21 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003110301] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159264783] [to:+12148147848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-11 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:38 ip-10-0-64-10 mdr: 2016-02-01 11:38:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:38 ip-10-0-0-10 mdr: 2016-02-01 11:38:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524694972] [to:+19196517078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16106999413] [to:14848858597] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043085429] [to:+18285486092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548326020] [to:+17542003113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195279700] [to:+19193240575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072138353] [to:13072541656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554747] [to:17198216159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039090571] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:39 ip-10-0-64-10 mdr: 2016-02-01 11:38:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133614523] [to:+18438720566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:39 ip-10-0-0-11 mdr: 2016-02-01 11:38:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16053919223] [to:+18638552671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104593302] [to:+16467380987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976411] [to:19288971168] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608041125] [to:+12602755327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003D50503] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046713005] [to:+17194960348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-21 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003110302] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074258094] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-11 mdr: 2016-02-01 11:38:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:40 ip-10-0-0-10 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:40 ip-10-0-64-11 mdr: 2016-02-01 11:38:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128211831] [to:+12135593632] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951667] [to:14234437701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606177465] [to:+13479131061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:17063300054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996373] [to:12315997415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022362995] [to:+13025958971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534719] [to:14048397175] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044539011] [to:+14693096945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031277] [to:19022102429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16473815664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073424038] [to:+17189627326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137618] [to:15127507820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158148] [to:17808210088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702263000] [to:+19033789006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-10 mdr: 2016-02-01 11:38:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:41 ip-10-0-64-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:41 ip-10-0-0-11 mdr: 2016-02-01 11:38:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:16813133017] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283941804] [to:+14243361757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16132008433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:15193172026] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15163134589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-21 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447411409468] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110303] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018715] [to:15064270288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049911793] [to:+14242769725] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043088973] [to:+13478685041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437846129] [to:+17745498325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638554747] [to:17198216159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479791] [to:15134106887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:17174952879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142424498] [to:+14387920514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966592] [to:18025571197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:42 ip-10-0-0-10 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:42 ip-10-0-64-11 mdr: 2016-02-01 11:38:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162722231] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857789496] [to:+15168285436] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455918] [to:13236325057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340254] [to:12105645372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038431] [to:19294654271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092040816] [to:12065184456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305426] [to:15185278518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-20 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362625881] [to:+18582237512] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473045379] [to:+18582401961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003890301] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-0-10 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004249] [to:12893151734] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203978] [to:14438751662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:43 ip-10-0-64-11 mdr: 2016-02-01 11:38:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314787780] [to:+16315723861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003890302] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-20 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240745] [to:+447949317709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847695938] [to:+16106999227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706559362] [to:+15072626231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470221] [to:18328904836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083146052] [to:+12627776684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003890303] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083477] [to:12703123904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940559] [to:14036185695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147429374] [to:+14502336953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:44 ip-10-0-64-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024179004] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-11 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:44 ip-10-0-0-10 mdr: 2016-02-01 11:38:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14124284216] [to:17247091324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563901778] [to:+13479569506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D50504] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653019] [to:17788722429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153452312] [to:+19015042445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059263129] [to:+15612403113] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815880508] [to:+15614916771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-10 mdr: 2016-02-01 11:38:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003CD0201] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:45 ip-10-0-64-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14349079790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:45 ip-10-0-0-11 mdr: 2016-02-01 11:38:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995918] [to:16462891637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348485782] [to:+18046244098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088183998] [to:+15087884877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003CD0202] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102797] [to:19074149400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676926] [to:19374890256] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12488127905] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815880508] [to:+15614916771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15059263129] [to:+15612403113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062591993] [to:+15068018605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329462] [to:19172161003] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12083062235] [to:17726729600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:18062908904] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:18062908904] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-10 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015744] [to:50372525553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:46 ip-10-0-0-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14168395152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:46 ip-10-0-64-11 mdr: 2016-02-01 11:38:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676959] [to:13308145236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302892] [to:14123392880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657511] [to:19152443636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013294] [to:12315703005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542685937] [to:+17864107329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:14047813665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389373568] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175152455] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-21 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18158141809] [to:+13123001979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018095] [to:13365809873] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755876] [to:12168556917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172692929] [to:+14706730685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784098] [to:13179006137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-10 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:47 ip-10-0-0-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797130] [to:16813130744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:47 ip-10-0-64-11 mdr: 2016-02-01 11:38:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610967] [to:19549182028] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136104109] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162185328] [to:+12085012019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152023148] [to:+16158075682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166245878] [to:+12894600762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13143842657] [to:17069146696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667388] [to:12154799754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018519] [to:13157179169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218253] [to:15132123417] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435615833] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683119] [to:14023070052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-20 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203813] [to:+447919522330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549855] [to:17807125668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886881] [to:+18133082946] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:13479927772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328025673] [to:12109297518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488813] [to:18189878251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348037126649] [to:+19177086467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D50505] -Feb 1 11:38:48 ip-10-0-64-10 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+18018903477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-10 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:48 ip-10-0-64-11 mdr: 2016-02-01 11:38:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:48 ip-10-0-0-11 mdr: 2016-02-01 11:38:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286906] [to:15404870328] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144171] [to:17326875325] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:13022563294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498163] [to:12405338295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869397] [to:19022188900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16479862558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295483894] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:12144898384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147919278] [to:+14388042662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197286] [to:13189964209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985200] [to:13022706189] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364017242] [to:+13366450647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868374394] [to:+14073374049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150245803079] [to:+14018677848] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BF0201] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316721540] [to:+12138737356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-11 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:49 ip-10-0-64-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045169] [to:14167685613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-10 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:49 ip-10-0-0-11 mdr: 2016-02-01 11:38:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045169] [to:14167685613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045169] [to:14167685613] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205908132] [to:12146093659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325584827] [to:+17329081889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16183170823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187299] [to:13473557827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096680939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255068] [to:+13364500364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606416129] [to:+19729470066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702358870] [to:+19142798168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178307837] [to:+16466328112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16208753416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809158] [to:18147900052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048748371] [to:+14025001856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911397] [to:17097710782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268669] [to:14022082859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145133] [to:16062602893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:50 ip-10-0-64-10 mdr: 2016-02-01 11:38:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:50 ip-10-0-0-10 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356149] [to:14792645435] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347996146] [to:+14353102411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295392366] [to:+13478999268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15747251945] [to:12192049933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653216545] [to:+13866012963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097700643] [to:+17097004811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096879129] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176814036] [to:+14073374830] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052858250] [to:+18053017609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:51 ip-10-0-64-10 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-10 mdr: 2016-02-01 11:38:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:51 ip-10-0-0-11 mdr: 2016-02-01 11:38:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495744] [to:14044381605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-20 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447448535162] [to:+447451220153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137767] [to:13375166600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288411] [to:18035976588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175280281] [to:13176284083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-11 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063611405] [to:+14153408720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:52 ip-10-0-0-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389033] [to:18608799864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:52 ip-10-0-64-10 mdr: 2016-02-01 11:38:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16473098250] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825532414] [to:+14692052149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133285333] [to:+12065827532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735544981] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835170] [to:12039470613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149220982] [to:17402778173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512002247] [to:+13479139854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507197] [to:18033892780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-20 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522901320] [to:+15612408971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184162588] [to:+14143863986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381156] [to:13362640709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218207] [to:12525441636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-11 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:53 ip-10-0-64-10 mdr: 2016-02-01 11:38:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:53 ip-10-0-0-10 mdr: 2016-02-01 11:38:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406444094] [to:+12342313941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:19563776922] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:18193292278] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176814036] [to:+14073374830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172424407] [to:+15082711750] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573271619] [to:+13477697736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:16615203359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:16615203359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632236] [to:16417802502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12512293310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136328] [to:12509383738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803811] [to:19856475755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163028049] [to:+16474989388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706531859] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:54 ip-10-0-0-10 mdr: 2016-02-01 11:38:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:54 ip-10-0-64-11 mdr: 2016-02-01 11:38:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463732577] [to:+13479130227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077928] [to:15144302676] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:15634841688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:15193172026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122783086] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134474385] [to:+18133085359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193044228] [to:+12264553257] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167359704] [to:+12894600917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189470023] [to:+19173834919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150245803079] [to:+14018677848] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BF0202] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466393141] [to:+16463494845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13052409610] [to:+14692057062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098940] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593605] [to:12502552674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192688032] [to:+18193076022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-64-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953175] [to:16625422549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474184] [to:17743033632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-10 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:55 ip-10-0-0-11 mdr: 2016-02-01 11:38:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348485782] [to:+18046244098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042264771] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159264783] [to:+12148147848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874901] [to:17856390625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159046] [to:13373715942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763411] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E30301] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E30302] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E30303] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261478] [to:50372228895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730510] [to:17579128873] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038799243] [to:+19034595742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046713005] [to:+17194960348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-11 mdr: 2016-02-01 11:38:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220438] [to:17138059907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-0-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-11 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:56 ip-10-0-64-10 mdr: 2016-02-01 11:38:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244207747] [to:+12138026870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103855] [to:19546913079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14029991717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602241572] [to:+12602327663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563553401] [to:+15122657511] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129807605] [to:+14125354756] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14124284216] [to:14127730879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028597460] [to:+17029960621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-10 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:57 ip-10-0-64-11 mdr: 2016-02-01 11:38:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329673] [to:13237105646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:57 ip-10-0-0-10 mdr: 2016-02-01 11:38:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602241572] [to:+12602777291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318103] [to:12314689397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239123699] [to:+12693366367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108091920] [to:+12674862868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162741438] [to:+17053001602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073547745] [to:+19172669376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:58 ip-10-0-64-10 mdr: 2016-02-01 11:38:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-10 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437458470] [to:+19172836909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:58 ip-10-0-0-11 mdr: 2016-02-01 11:38:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-10 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036532916] [to:+19703158262] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783589] [to:17044504153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606937] [to:15133747309] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673537407] [to:+13234865874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176760049] [to:+13479805812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:15102534743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320379] [to:13154019452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-10 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178098527] [to:+13475184643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-11 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272907582] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012442] [to:12089258369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:38:59 ip-10-0-0-11 mdr: 2016-02-01 11:38:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168479307] [to:+14157878784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:38:59 ip-10-0-64-10 mdr: 2016-02-01 11:38:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999805] [to:16065050752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434818] [to:14352100233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405368] [to:19096765584] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:12537541614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161412611962] [to:+15169082213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672014] [to:+15817005965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675174] [to:14345092727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695437647] [to:+18724003287] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454231076] [to:+15092041148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036332] [to:18196619082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12568560608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12568560608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-11 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785088193] [to:+14049001372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-21 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+93793215474] [to:+447451200839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:00 ip-10-0-64-10 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434299] [to:13143490405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:00 ip-10-0-0-10 mdr: 2016-02-01 11:39:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318892876] [to:+13475184780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715967] [to:14136937190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-10 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039217074] [to:+13475076339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965691] [to:17174952879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-10 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429207] [to:16092318917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:01 ip-10-0-64-11 mdr: 2016-02-01 11:39:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:01 ip-10-0-0-11 mdr: 2016-02-01 11:39:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785589964] [to:+16784348077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362370484] [to:15146605839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477991209] [to:15798888927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720761] [to:19419323140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17342715758] [to:+17348210348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845972801] [to:+14844207905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785088193] [to:+14049001372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313941] [to:17406444094] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19544594882] [to:19543910363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963857] [to:16472428275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-21 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447884373123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:02 ip-10-0-64-11 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:02 ip-10-0-0-10 mdr: 2016-02-01 11:39:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365391] [to:16074258094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527875] [to:14242060831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:14436940870] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16478929035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603094716] [to:+18609559400] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695329704] [to:+12694308243] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106799606] [to:+16108804590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-11 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-10 mdr: 2016-02-01 11:39:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-20 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:03 ip-10-0-64-11 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:03 ip-10-0-0-20 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314168098] [to:+15165443460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046713005] [to:+17194960348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14182085399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054925320] [to:+17723601634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991549] [to:12024913382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457903] [to:12403887653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14029991717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162350401] [to:+12167772174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17188094294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134175835] [to:+13437001445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12394054837] [to:+12392190430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:04 ip-10-0-0-11 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:04 ip-10-0-64-11 mdr: 2016-02-01 11:39:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954198] [to:19023030849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184407] [to:16512627401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139626] [to:17815000555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473238] [to:12763656590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493132] [to:15807476392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003689] [to:14052028682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+15874049963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14152956882] [to:+19108888197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189964209] [to:+15618197286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787918579] [to:+16783941364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162741438] [to:+17053001602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045217321] [to:+17185675354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:19015852556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569826] [to:14135220846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:05 ip-10-0-64-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-10 mdr: 2016-02-01 11:39:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148227] [to:+14155494189] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:05 ip-10-0-0-11 mdr: 2016-02-01 11:39:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16813130744] [to:+17408797130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144898384] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265051546] [to:+16475568706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164661604] [to:+16163190153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873754799] [to:+12138228530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069146696] [to:+13143842657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126984948] [to:+19712489348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868374394] [to:+14073374049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600647] [to:15026448616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468209] [to:12072334283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:16143988147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-11 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18633378385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:06 ip-10-0-0-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:06 ip-10-0-64-10 mdr: 2016-02-01 11:39:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:14192085000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489042918] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18158141809] [to:+13123001979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162722231] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040806] [to:12506448894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015721133] [to:+18623079671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:07 ip-10-0-0-10 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453828] [to:14437606655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-10 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:07 ip-10-0-64-11 mdr: 2016-02-01 11:39:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239035827] [to:+12134786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195322905] [to:+12267981016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021514] [to:19023296866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545103917] [to:13055422579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13036216006] [to:+17205021765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-11 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154867342] [to:+19298413024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:08 ip-10-0-0-11 mdr: 2016-02-01 11:39:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148198643] [to:14389881448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:08 ip-10-0-64-10 mdr: 2016-02-01 11:39:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038341190] [to:+13479789882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069660025] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177824] [to:13606248838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15595295873] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699212] [to:12406035512] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652917316] [to:+12134786163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18153157290] [to:+18722251431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020746] [to:15818860388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014733859] [to:+18724009235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020746] [to:15818860388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-10 mdr: 2016-02-01 11:39:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673585] [to:16062737939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:09 ip-10-0-0-10 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625826] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168282033] [to:+15162526035] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:09 ip-10-0-64-11 mdr: 2016-02-01 11:39:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974187] [to:15703574652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444335] [to:16097272760] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029879] [to:17174660910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:14155259086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694148005] [to:19035269868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:19702911119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:19702911119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450647] [to:13364017242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-21 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:10 ip-10-0-0-11 mdr: 2016-02-01 11:39:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-10 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:10 ip-10-0-64-11 mdr: 2016-02-01 11:39:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-11 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-10 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-11 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-11 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-11 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010557] [to:13062314968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-11 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16318892876] [to:+13475184780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-11 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131061] [to:18606177465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980169] [to:16138484530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:11 ip-10-0-64-10 mdr: 2016-02-01 11:39:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:11 ip-10-0-0-10 mdr: 2016-02-01 11:39:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137867897] [to:+19146897449] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105699887] [to:+19086625826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187051887] [to:+12148148640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437266] [to:13258647709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786193] [to:15014004034] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020746] [to:15818860388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174556825] [to:+15172527330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:12 ip-10-0-0-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014868253] [to:+19725348604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-11 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:12 ip-10-0-64-10 mdr: 2016-02-01 11:39:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383920215] [to:+14318003832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133734048] [to:+19174094111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652812] [to:17782406187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314168098] [to:+15165443460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653216545] [to:+13866012963] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084007273] [to:+18622278501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859676734] [to:+15852822695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024596056] [to:+18639491694] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807101] [to:13153989359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:13 ip-10-0-64-11 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132003129] [to:+12135295359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-10 mdr: 2016-02-01 11:39:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:13 ip-10-0-0-11 mdr: 2016-02-01 11:39:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981619] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845972801] [to:+14844207905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981619] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097441] [to:15145880598] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13157663928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699212] [to:12406035512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370805] [to:13302173550] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001480] [to:12812229919] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162801819] [to:+17162792433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889157] [to:16149351342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-11 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032268121] [to:+14706734306] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043755002] [to:+17786529971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:14 ip-10-0-0-10 mdr: 2016-02-01 11:39:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072190575] [to:+13866283895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-11 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:14 ip-10-0-64-10 mdr: 2016-02-01 11:39:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15712103507] [to:18042412234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166034883] [to:+12342314488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837576] [to:13305249529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652296] [to:15199658926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-10 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:17405840563] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-10 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661163] [to:15858159448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:15 ip-10-0-0-10 mdr: 2016-02-01 11:39:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022870263] [to:+18572329908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:15 ip-10-0-64-11 mdr: 2016-02-01 11:39:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470066] [to:17606416129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053249189] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924904] [to:12402041912] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018095] [to:13365809873] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102847062] [to:+16474918999] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862243] [to:18329449192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525664] [to:12675152897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364617] [to:+12342315321] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622989698] [to:+18185401976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042946085] [to:+19046947704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058477] [to:19028305624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095725] [to:15149946358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783343313] [to:+13479190294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-10 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681978] [to:14192907696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:16 ip-10-0-64-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736095] [to:14234401789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:16 ip-10-0-0-11 mdr: 2016-02-01 11:39:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652296] [to:15199658926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635888772] [to:+16034132542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600917] [to:14167359704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875895653] [to:+16474916023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17019898501] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040110] [to:14104302167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12892007806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-10 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572021875] [to:+13478120130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:17 ip-10-0-64-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:17 ip-10-0-0-11 mdr: 2016-02-01 11:39:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157152982] [to:+16158431476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748914] [to:12547024473] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980169] [to:16138484530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252885168] [to:+19852735969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16269050962] [to:+18188535871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003550201] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307507849] [to:+19298006007] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003550202] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925933] [to:15147912962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732605] [to:17063437595] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437002138] [to:15194366598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-11 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139098258] [to:16133304980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:18 ip-10-0-0-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:18 ip-10-0-64-10 mdr: 2016-02-01 11:39:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479979935] [to:17735124346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139668] [to:18142850736] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028399980] [to:+13475804812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756445] [to:14155259086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481361] [to:15629407435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163371348] [to:+16164200481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:19 ip-10-0-64-11 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:19 ip-10-0-0-10 mdr: 2016-02-01 11:39:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340254] [to:12105645372] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479809717] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061352] [to:18705573149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094811915] [to:+16096144116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:14049575745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-20 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083146052] [to:+12627776684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026230] [to:14847695180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-64-11 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862707] [to:+12344017383] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526789] [to:15406718699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216450] [to:15704198417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-11 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:20 ip-10-0-0-10 mdr: 2016-02-01 11:39:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245583] [to:13109993312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786730527] [to:+14706735242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147529] [to:12483085810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12564578259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181402] [to:13125889123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419861] [to:16019352106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:21 ip-10-0-0-10 mdr: 2016-02-01 11:39:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:12526651941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:21 ip-10-0-64-11 mdr: 2016-02-01 11:39:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084007273] [to:+18622278501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406842] [to:19057469763] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126520] [to:18565032364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993080] [to:12705668291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15714326046] [to:+17039967351] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353816] [to:16606352114] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064042729] [to:14068504855] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057132601] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-10 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:22 ip-10-0-64-10 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14847979685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15594160051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:22 ip-10-0-0-11 mdr: 2016-02-01 11:39:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479429832] [to:+19177374375] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489348] [to:18126984948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132109887] [to:+14158536525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-10 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024596] [to:17786798072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18038789195] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18038789195] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059064882] [to:+12898042204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-10 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:23 ip-10-0-0-11 mdr: 2016-02-01 11:39:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:23 ip-10-0-64-11 mdr: 2016-02-01 11:39:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15597240929] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216131555] [to:15094312831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287682259] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18158141809] [to:+13123001979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-20 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520628505] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487970011] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323146447] [to:+18638554062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132470] [to:18572516141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373369395] [to:+12134789496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070176] [to:+16477994659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513498073] [to:+17636849675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527916] [to:15175541328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017742] [to:17403022654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:24 ip-10-0-64-10 mdr: 2016-02-01 11:39:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685093] [to:+17727667444] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:12166403118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-10 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:24 ip-10-0-0-11 mdr: 2016-02-01 11:39:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334724] [to:15174490719] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024179004] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487970011] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126798908] [to:+15129524127] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494845] [to:16466393141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197191936] [to:+12262411901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:17048366514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-21 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243998] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328614082] [to:+14242795619] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:16046790048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-20 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447940740355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228801] [to:17346597133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-10 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-20 mdr: 2016-02-01 11:39:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451231082] [to:+447940740355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:25 ip-10-0-0-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:25 ip-10-0-64-11 mdr: 2016-02-01 11:39:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203154] [to:18043140672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137759] [to:17166387161] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214314512] [to:+13052036188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017012590] [to:12014210498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158262] [to:18036532916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126798908] [to:+15129524127] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392421991] [to:+16467691647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135503488] [to:+19148609508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405594] [to:16478922471] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:14124075427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405594] [to:16478922471] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:26 ip-10-0-0-10 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476781201] [to:+14072163507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-10 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001109] [to:14024179004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:26 ip-10-0-64-11 mdr: 2016-02-01 11:39:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037121] [to:15149788772] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159264783] [to:+12148147848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655324084] [to:+17659869072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168461882] [to:+16304892914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14174259543] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730322] [to:15188940612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126059112] [to:+13476673993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-10 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703539906] [to:+16784342767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404079] [to:17863165536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:27 ip-10-0-64-10 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17347966657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:27 ip-10-0-0-11 mdr: 2016-02-01 11:39:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404079] [to:17863165536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173818636] [to:+13479376158] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505120017] [to:+15148192130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109715481] [to:+13103470861] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404128542] [to:+14582025331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142796167] [to:13363947314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947704] [to:19042946085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092060172] [to:+17073008779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:28 ip-10-0-64-10 mdr: 2016-02-01 11:39:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:28 ip-10-0-0-11 mdr: 2016-02-01 11:39:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634332] [to:16179803713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405368] [to:19096765584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403364660] [to:+17402017786] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523978431] [to:+17866515237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-10 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:29 ip-10-0-64-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752683878] [to:+15058006635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:29 ip-10-0-0-10 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234587351] [to:+19252397176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043461] [to:19028123267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177095071] [to:+17408797871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362446122] [to:+14353391920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671595] [to:17176836477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:12087044062] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817032319] [to:+18326501064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675794194] [to:+13476908840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190554] [to:16167881312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063389428] [to:+16699007553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164076726] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:16789493238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-11 mdr: 2016-02-01 11:39:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703123904] [to:+15022083477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020435] [to:16037996854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:30 ip-10-0-0-11 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:30 ip-10-0-64-10 mdr: 2016-02-01 11:39:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057062] [to:13052409610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354756] [to:14129807605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165184] [to:13179690828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269884376] [to:+19027058273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013552497] [to:16462996248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085823] [to:14389893726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-11 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615077] [to:15177508757] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:31 ip-10-0-0-11 mdr: 2016-02-01 11:39:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:31 ip-10-0-64-10 mdr: 2016-02-01 11:39:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947704] [to:19042946085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026141400] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015721133] [to:+18623079671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132400153] [to:+16139098530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:15163766882] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001856] [to:15048748371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179345] [to:15106001047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049817859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0201] -Feb 1 11:39:32 ip-10-0-0-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-20 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:32 ip-10-0-64-11 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074124808] [to:+17862200484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:32 ip-10-0-0-10 mdr: 2016-02-01 11:39:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751229] [to:15709725976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957033] [to:14046929425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148147003] [to:14092381096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032D0202] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625422549] [to:+12132953175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065504538] [to:+14702963472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692280869] [to:+12533289635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:17736100502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172850486] [to:+13475184739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089743495] [to:+16172193898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:33 ip-10-0-0-10 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:33 ip-10-0-64-11 mdr: 2016-02-01 11:39:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-21 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470428051] [to:+447451212747] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193898] [to:15089743495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440294] [to:17573430490] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474020406] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593998294776] [to:+17182558101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-20 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406674367] [to:+12139927824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343333695] [to:+12136946793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478967234] [to:14195777214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108750303] [to:+14158916658] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-11 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-11 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:34 ip-10-0-64-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413370909] [to:+15413635175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126798908] [to:+15129524127] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:34 ip-10-0-0-10 mdr: 2016-02-01 11:39:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026705506] [to:+19027046477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164526] [to:19195230804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473269] [to:16025297492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033991800] [to:+19033076634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915304] [to:19894641691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174660910] [to:+12138029879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:35 ip-10-0-64-11 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192130] [to:14505120017] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-11 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13618774332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16094102373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:35 ip-10-0-0-10 mdr: 2016-02-01 11:39:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436055629] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142424498] [to:+14387920514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15627427677] [to:+16503008417] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105010204] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292895502] [to:+13477974624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017012590] [to:12014210498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889764] [to:13176929712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404389310] [to:+12029991052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092508028] [to:+16025721880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12049976994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041312] [to:15024756508] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:36 ip-10-0-64-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19207400428] [to:+12628886808] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-10 mdr: 2016-02-01 11:39:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018744312] [to:+19177086753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:36 ip-10-0-0-11 mdr: 2016-02-01 11:39:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342547] [to:14705147924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036023997] [to:18636056361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:7:06080423B40201] -Feb 1 11:39:37 ip-10-0-0-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-10 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058796909] [to:+17864801272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-20 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624105] [to:+447894871386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593528026] [to:+16613063650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-11 mdr: 2016-02-01 11:39:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:37 ip-10-0-64-10 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14012038482] [to:14015791909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:37 ip-10-0-0-11 mdr: 2016-02-01 11:39:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328518] [to:19715999910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500036F0201] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083177851] [to:+12087633812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500036F0202] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066392296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488969] [to:15412974725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047813665] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080423B40202] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185045172] [to:18645389981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513095201] [to:12196041310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626003745] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145094010] [to:+12627775272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-10 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:38 ip-10-0-0-11 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479956239] [to:+16474911307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:38 ip-10-0-64-10 mdr: 2016-02-01 11:39:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046390987] [to:+12134785261] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14059227401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14059227401] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822695] [to:15859676734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042264771] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053807274] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323183843] [to:+12135455743] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:19199127723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-10 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808933540] [to:+15873157893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731859] [to:14787374836] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:39 ip-10-0-0-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122783086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:39 ip-10-0-64-11 mdr: 2016-02-01 11:39:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132008433] [to:+16136048237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046390987] [to:+12134785261] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086347201] [to:+16413908391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063140544] [to:+13069932473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046390987] [to:+12134785261] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090404] [to:13479575772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-21 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-11 mdr: 2016-02-01 11:39:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:40 ip-10-0-64-10 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:40 ip-10-0-0-11 mdr: 2016-02-01 11:39:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192580933] [to:+17194265343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293083646] [to:+13072137532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784847253] [to:+14242797071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172397213] [to:+13476673757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294571560] [to:+14243364917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-20 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126318663] [to:+12138739728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892801555] [to:+19895334075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-11 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955001] [to:18194407196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495366] [to:13473755676] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356149] [to:14792645435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-10 mdr: 2016-02-01 11:39:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:41 ip-10-0-0-11 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:41 ip-10-0-64-10 mdr: 2016-02-01 11:39:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138061339] [to:+16139098455] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483085810] [to:+19893147529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288441] [to:13106546786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:15166593612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053807889] [to:+17053006350] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-21 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930053106] [to:+447451238236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12512293310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14389373568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502552674] [to:+16042593605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:42 ip-10-0-0-11 mdr: 2016-02-01 11:39:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177824] [to:13607714021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:42 ip-10-0-64-10 mdr: 2016-02-01 11:39:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804842836] [to:+14073372223] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068704668] [to:+14706734880] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808703252] [to:+13069929258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053096575] [to:+17053028687] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14155259086] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144425306] [to:+13475086580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102534743] [to:+15107756445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:43 ip-10-0-0-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327023193] [to:+14158908082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-11 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:43 ip-10-0-64-10 mdr: 2016-02-01 11:39:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615077] [to:12313502390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-20 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292727877] [to:+14155620997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364749] [to:12158265353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176435730] [to:+18572406056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:12503775655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:19015852556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242368081] [to:12406260319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475186288] [to:13232419052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007012] [to:14144849712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058406] [to:19027511076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15594700660] [to:15599011635] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-11 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:12087044062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19103546714] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605355322] [to:+18638557884] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594982] [to:16049962986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-11 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:44 ip-10-0-0-10 mdr: 2016-02-01 11:39:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:44 ip-10-0-64-10 mdr: 2016-02-01 11:39:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049795637] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306054509] [to:+14158530473] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733816] [to:18727777148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165090] [to:15614253596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745384550] [to:+18134301575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147369801] [to:+17408798858] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:19737237030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797595] [to:13479651294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-0-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126366987] [to:+16125023396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-11 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802740448] [to:+13064003158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:45 ip-10-0-64-10 mdr: 2016-02-01 11:39:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:14049748655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440294] [to:17737240739] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:14049748655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168078552] [to:+19166373923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898545838] [to:+17636849995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-20 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215973] [to:+447784241180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667905] [to:17654803139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193876237] [to:+15068039873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-11 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:46 ip-10-0-0-10 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-10 mdr: 2016-02-01 11:39:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:46 ip-10-0-64-11 mdr: 2016-02-01 11:39:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139177237] [to:+16139096612] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043461] [to:19022136006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13618774332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444503] [to:16095335183] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:12676084965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830005] [to:50230360825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830005] [to:50230360825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288034917] [to:+17604746883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096602489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-10 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-64-10 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:47 ip-10-0-0-11 mdr: 2016-02-01 11:39:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178278193] [to:+12132371656] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406408] [to:16266248591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857751218] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866243273] [to:+13866018789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133747309] [to:+18583606937] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124075427] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:18597072022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048181402] [to:18304617686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637313] [to:13173842806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-10 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751229] [to:15709725976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937865] [to:12702503921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-10 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319055718] [to:+16319802443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968061] [to:14707758922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:48 ip-10-0-64-11 mdr: 2016-02-01 11:39:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:48 ip-10-0-0-11 mdr: 2016-02-01 11:39:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139676] [to:15089040273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17788739747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036699520] [to:+15612407896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:18025829439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754055232] [to:+19252398420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016346] [to:13305188425] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444097] [to:12679082552] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630269] [to:12087044062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288441] [to:13106546786] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037B0202] -Feb 1 11:39:49 ip-10-0-0-10 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500037B0201] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:49 ip-10-0-0-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:49 ip-10-0-64-11 mdr: 2016-02-01 11:39:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473815664] [to:+16474940511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911764] [to:16134064935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465834346] [to:+19172318299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244098] [to:14348485782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526651941] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860435] [to:15136784078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-20 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236755] [to:+447983624870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:50 ip-10-0-0-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-10 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:50 ip-10-0-64-11 mdr: 2016-02-01 11:39:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017012590] [to:12014210498] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-21 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057681868] [to:+17053025754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088753] [to:14049662339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053249189] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145094010] [to:+12627775272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825611] [to:19135752241] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147529] [to:12483085810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195011470] [to:+12264551248] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:51 ip-10-0-64-11 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058616955] [to:+18572409189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274737] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:51 ip-10-0-0-10 mdr: 2016-02-01 11:39:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18164197261] [to:+16465139617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:17863622348] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593528026] [to:+16613063650] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361403] [to:15137879005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195011470] [to:+12264551248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-21 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608094] [to:+447849587161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015713] [to:16505927092] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873572855] [to:+15874090821] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16476861099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195011470] [to:+12264551248] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406718699] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344014113] [to:+14342340199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:19055179019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-10 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17193627961] [to:+17199990484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-21 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447852175418] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:52 ip-10-0-0-11 mdr: 2016-02-01 11:39:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288167] [to:15704398109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:52 ip-10-0-64-10 mdr: 2016-02-01 11:39:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064610354] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-20 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003630201] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325375883] [to:+15103131091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663749] [to:13046855458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-20 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220733] [to:+447952760887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127996] [to:12542286754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008301] [to:17049147843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904401] [to:12036900177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:19179827171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:53 ip-10-0-64-10 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14142022368] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087003] [to:17805173586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:53 ip-10-0-0-11 mdr: 2016-02-01 11:39:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303404873] [to:+13395459478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305764] [to:16187045446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17808509100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:13234073345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454127] [to:15715897111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383473401] [to:+14387940790] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-10 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003689] [to:14056644109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:54 ip-10-0-64-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473815664] [to:+16474940511] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:54 ip-10-0-0-11 mdr: 2016-02-01 11:39:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929258] [to:17808703252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153136417] [to:+12677939213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070176] [to:+16477994659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-21 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14143863986] [to:13184162588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156276538] [to:+16156147757] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192044711] [to:+17194807978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872046521] [to:+19173911223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438557015] [to:+17279353329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143643911] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174251157] [to:+13194099788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402350948] [to:+16172193265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172850486] [to:+13475184739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12102545138] [to:+15068041844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179700125] [to:+13866012007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196159130] [to:+14197768033] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674014225] [to:+12678444429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570094] [to:15195667713] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317039683] [to:+19173911215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493582804] [to:+18678883672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:17188098608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-10 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326504912] [to:13615714012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:55 ip-10-0-0-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055234] [to:18609421910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:55 ip-10-0-64-11 mdr: 2016-02-01 11:39:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708411772] [to:+17727745479] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365809873] [to:+13367018095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:13344984421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836743] [to:19893324379] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473283852] [to:+16474914033] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473035026] [to:+19292688843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024423176] [to:+13025958242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479575772] [to:+12026090404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438836] [to:15045091052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421675] [to:+13479130572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-10 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639298] [to:19082204408] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:56 ip-10-0-0-11 mdr: 2016-02-01 11:39:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:56 ip-10-0-64-11 mdr: 2016-02-01 11:39:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886869] [to:+17189628634] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17144792388] [to:+13106278533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506125946] [to:+12138733498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095403898] [to:+14097771073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165723173] [to:+17072427797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859676734] [to:+15852822695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184739] [to:19172850486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195699596] [to:+17194960195] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18304806101] [to:+12816033167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504055550] [to:+13053400809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-11 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349079790] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991508] [to:12405850128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:57 ip-10-0-64-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:57 ip-10-0-0-10 mdr: 2016-02-01 11:39:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504667974] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-20 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062611905] [to:+19148608471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-11 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133340815] [to:+17279986375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-11 mdr: 2016-02-01 11:39:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053909] [to:17272446776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:58 ip-10-0-64-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078680055] [to:+16042437092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:58 ip-10-0-0-10 mdr: 2016-02-01 11:39:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786085] [to:17135914808] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:15879906085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002206] [to:15404352624] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002206] [to:15404352624] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688316] [to:13156018966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195905387] [to:+14146006770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003070202] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003070201] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-11 mdr: 2016-02-01 11:39:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:39:59 ip-10-0-0-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18727777148] [to:+19732733816] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-11 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047701956] [to:+13477974576] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:39:59 ip-10-0-64-10 mdr: 2016-02-01 11:39:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273248952] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479927772] [to:+16463494458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038473106] [to:+18506314093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319237145] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105374303] [to:+12485375933] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507209] [to:18015294409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383595] [to:13365587509] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364017242] [to:+13366450647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897808771] [to:16476566099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-10 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:00 ip-10-0-64-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077507254] [to:18655663102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-11 mdr: 2016-02-01 11:40:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193627237] [to:16195777819] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:00 ip-10-0-0-21 mdr: 2016-02-01 11:40:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026485910] [to:+15865747895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137209039] [to:+19492453060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054740032] [to:+16503377592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672014] [to:+15817005965] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338899] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105275422] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-11 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022211050] [to:+15068039680] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:01 ip-10-0-0-10 mdr: 2016-02-01 11:40:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019094] [to:16105153027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-10 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:01 ip-10-0-64-11 mdr: 2016-02-01 11:40:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708715100] [to:+17278602358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089258369] [to:+12085012442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:16047651354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+19142793439] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783993389] [to:+19785334213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-11 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017605] [to:17064281208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:02 ip-10-0-0-10 mdr: 2016-02-01 11:40:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952667] [to:16478892452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:02 ip-10-0-64-10 mdr: 2016-02-01 11:40:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125090805] [to:+13478023674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004971] [to:17053580925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-20 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+2348084392871] [to:+447520623696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18593396464] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295459] [to:12164076726] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222337] [to:18458533628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-10 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483085810] [to:+19893147529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:03 ip-10-0-0-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:03 ip-10-0-64-11 mdr: 2016-02-01 11:40:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799194] [to:12059146819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582401961] [to:13473045379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084257771] [to:+19088992553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:04 ip-10-0-64-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19373292118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708950165] [to:+13216137599] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-20 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-11 mdr: 2016-02-01 11:40:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-11 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819905122] [to:+15817021025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:04 ip-10-0-0-10 mdr: 2016-02-01 11:40:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034275574] [to:+18033104557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874059758] [to:17808841248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144391701] [to:+13476677703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963904] [to:14435396746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134279192] [to:+14073371106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064078715] [to:+17702005580] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054740032] [to:+16503377592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122169380] [to:+14157879171] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305171333] [to:+14153404607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13618774332] [to:+18326502532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-11 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12812229919] [to:+17475001480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654803139] [to:+17736667905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:05 ip-10-0-64-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374731] [to:13308064775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-11 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874059758] [to:17808841248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:05 ip-10-0-0-10 mdr: 2016-02-01 11:40:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004464] [to:14049143567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592614] [to:12703319713] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691647] [to:19392421991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403229558] [to:+12346507731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135455581] [to:13234073345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375672684] [to:+17604746237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107258875] [to:+16177065562] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094169976] [to:+17074032649] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042640] [to:18192309902] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065915827] [to:+13477697873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799194] [to:12059146819] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702020788] [to:+13477962169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146155] [to:19805055307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302173550] [to:+13302370805] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-10 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035269868] [to:+14694148005] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-10 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:06 ip-10-0-64-11 mdr: 2016-02-01 11:40:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:06 ip-10-0-0-11 mdr: 2016-02-01 11:40:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173467694] [to:+16149228917] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564578259] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764193] [to:13475814222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976203] [to:19283038791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-11 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-10 mdr: 2016-02-01 11:40:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:07 ip-10-0-0-10 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:07 ip-10-0-64-11 mdr: 2016-02-01 11:40:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052438945] [to:+18053666511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742974623] [to:+17256660335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873889824] [to:+14088778579] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236619794] [to:+15703973125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-11 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-11 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:08 ip-10-0-64-10 mdr: 2016-02-01 11:40:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:08 ip-10-0-0-10 mdr: 2016-02-01 11:40:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:12269269118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15807476392] [to:+18639493132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797071] [to:14784847253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527779] [to:13344192834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-10 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:09 ip-10-0-0-11 mdr: 2016-02-01 11:40:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-11 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035682661] [to:+15617665231] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:09 ip-10-0-64-10 mdr: 2016-02-01 11:40:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014637390] [to:+12138028437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E40301] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+13064000458] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022771423] [to:+15068045192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708325220] [to:+15703974030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105567515] [to:+13057356411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124055] [to:14434931007] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062074] [to:19046006431] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16052318797] [to:16059063716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306103659] [to:+13479139459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+13064000458] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022402201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006029] [to:18435355357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-10 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083477] [to:12703123904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:10 ip-10-0-0-11 mdr: 2016-02-01 11:40:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:10 ip-10-0-64-10 mdr: 2016-02-01 11:40:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031E0301] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043613543] [to:+15109722166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:19053807274] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:19053807274] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:19053807274] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498949] [to:16194514605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968007] [to:14152400262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512293310] [to:+12138739754] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15852306478] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024704] [to:17409941199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031E0302] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278809] [to:16064162519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:11 ip-10-0-64-10 mdr: 2016-02-01 11:40:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105859] [to:16105743731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:11 ip-10-0-0-11 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031E0303] -Feb 1 11:40:11 ip-10-0-0-10 mdr: 2016-02-01 11:40:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194429865] [to:+14197316108] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019284] [to:17097716531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749162] [to:18127777864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12486131644] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14159479692] [to:+18583605409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608612886] [to:+15163625366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173722433] [to:+19142795409] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162355858] [to:+12169295459] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502552674] [to:+16042593605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878784] [to:19168479307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-10 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-11 mdr: 2016-02-01 11:40:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:12 ip-10-0-64-10 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074985845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:12 ip-10-0-0-11 mdr: 2016-02-01 11:40:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074985845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824417] [to:15853638595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024173872] [to:+13072753763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825016] [to:15856890672] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E40302] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332813] [to:15807131823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439863196] [to:+12405538345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-11 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-11 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:13 ip-10-0-64-10 mdr: 2016-02-01 11:40:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:19059998491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:13 ip-10-0-0-10 mdr: 2016-02-01 11:40:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704859430] [to:+16106999845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500035F0201] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624738379] [to:15625843405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849514218] [to:+12148149351] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602356809] [to:+16465037844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493389] [to:18137773879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500035F0202] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550451] [to:19899441219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177756] [to:17726344515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433793007] [to:+14436812673] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607710725] [to:+13479803713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402654405] [to:+12174889163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797151390] [to:+19177376248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-64-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-11 mdr: 2016-02-01 11:40:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407481] [to:13157675003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:14 ip-10-0-0-10 mdr: 2016-02-01 11:40:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587809] [to:13019790382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375161187] [to:+12133550686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15203376719] [to:15207040639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068290774] [to:+13479568526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007670] [to:17049741164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478394821] [to:+13476191458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17066993032] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077975237] [to:+19542993895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-10 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162672] [to:19102828933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-10 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563752956] [to:+12342314093] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015413810] [to:+12139352877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:15 ip-10-0-64-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:15 ip-10-0-0-11 mdr: 2016-02-01 11:40:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897152] [to:15103447931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147962954] [to:+14388077253] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:15182385413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-11 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162648951] [to:+16162390235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13054925320] [to:+17723601634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003E40303] -Feb 1 11:40:16 ip-10-0-64-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408290880] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:16 ip-10-0-0-11 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:16 ip-10-0-64-10 mdr: 2016-02-01 11:40:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16473815664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068290774] [to:+13479568526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573769963] [to:+12138064390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182955135] [to:+12134547584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196100083] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212119] [to:19292397210] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955955] [to:14183789717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12105714563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-10 mdr: 2016-02-01 11:40:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889163] [to:17402654405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:17 ip-10-0-0-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:17 ip-10-0-64-11 mdr: 2016-02-01 11:40:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130045] [to:+14344736493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134785261] [to:13046390987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-20 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139259125] [to:+15107799580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614972488] [to:+16614418253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784053957] [to:12052462468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784053957] [to:12052462468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746883] [to:18288034917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433978168] [to:+14437205955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:18 ip-10-0-64-11 mdr: 2016-02-01 11:40:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-10 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:18 ip-10-0-0-11 mdr: 2016-02-01 11:40:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556968] [to:18132417402] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:17405840563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066392296] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:16042029173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16139177593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-20 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202883] [to:+447851032355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-20 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202883] [to:+447851032355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175517] [to:18286781304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726729600] [to:+12083062235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088341059] [to:17819291800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161012] [to:19196303050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161012] [to:19196303050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:19 ip-10-0-64-11 mdr: 2016-02-01 11:40:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164160577] [to:+16476998388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:19 ip-10-0-0-10 mdr: 2016-02-01 11:40:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939159] [to:17249895491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784513] [to:18032007055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142149] [to:13129983038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338893] [to:13343066139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102472261] [to:+14156493541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745317] [to:17723336972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:20 ip-10-0-0-10 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:20 ip-10-0-64-11 mdr: 2016-02-01 11:40:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746237] [to:19375672684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14028803315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076925108] [to:+13214065729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789003257] [to:+14706734430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109060254] [to:+16109105199] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19102971614] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-10 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:21 ip-10-0-64-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:21 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13052409610] [to:+14692057062] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:19542037726] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720853] [to:18432269168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303478931] [to:+13309358223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393166836] [to:+14842842351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376182400] [to:+12133550105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076925108] [to:+13214065729] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638014855] [to:+18637347466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:12898098940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159186033] [to:+15154438660] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863862] [to:15082943471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19102971614] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-11 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12269724475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029087] [to:12526262751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:22 ip-10-0-64-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102797] [to:19074149400] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390424] [to:12267897808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338532] [to:16517869237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077775] [to:16479834331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:22 ip-10-0-0-10 mdr: 2016-02-01 11:40:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140085] [to:15704521034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236090937] [to:+13479569073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053754262] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085012442] [to:12089258369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13618774332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126678] [to:18569821812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19854150257] [to:+12139212900] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545899168] [to:+19417256297] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-20 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125838408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624738379] [to:15625843405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655663102] [to:+17077507254] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032742974] [to:+12139926488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099402] [to:16133620404] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784854377] [to:+17277569843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:23 ip-10-0-0-10 mdr: 2016-02-01 11:40:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:23 ip-10-0-64-11 mdr: 2016-02-01 11:40:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787606441] [to:+14049004021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102472261] [to:+14156493541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433426] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477416899] [to:14233885448] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937576] [to:19057827915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:24 ip-10-0-0-10 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669493] [to:17186666668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208094818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689406] [to:17545813721] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-10 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:24 ip-10-0-64-11 mdr: 2016-02-01 11:40:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208094818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017479200] [to:+14056213263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029879] [to:17174660910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163134589] [to:+15165977957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102971664] [to:+14849869017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037514] [to:18285699063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622957420] [to:+14158535082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493389] [to:18135163595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223472] [to:19123900354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-21 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418337090] [to:+447873873197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988121] [to:18173501348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-10 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-10 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017126583] [to:+18018500435] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-64-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190029] [to:16162839064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023209] [to:14185648084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:25 ip-10-0-0-11 mdr: 2016-02-01 11:40:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14149141424] [to:+14146006480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+18173637313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938810] [to:12673990230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338263] [to:12055698936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990346] [to:13013886479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898904200] [to:+14158403993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862758139] [to:+15865746729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064003158] [to:17802740448] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782384414] [to:19789186789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991330] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148146] [to:+15082711371] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:26 ip-10-0-64-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-10 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404389310] [to:+12029991052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:26 ip-10-0-0-11 mdr: 2016-02-01 11:40:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458930770] [to:+18456222273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195667713] [to:+12264570094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305527452] [to:+15304882684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052469112] [to:+19492981033] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601634] [to:13054925320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246465] [to:12145098787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15064610354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037844] [to:18602356809] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800398] [to:15165823536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102472261] [to:+14156493541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17047508313] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-11 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478892452] [to:+16474952667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-11 mdr: 2016-02-01 11:40:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526789] [to:17173296833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:27 ip-10-0-64-10 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:27 ip-10-0-0-20 mdr: 2016-02-01 11:40:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812552] [to:13155708386] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139177237] [to:+16139096612] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192907696] [to:+13309681978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040310] [to:+15172585092] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958242] [to:13024423176] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135220846] [to:+15085569826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-10 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:28 ip-10-0-64-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:28 ip-10-0-0-11 mdr: 2016-02-01 11:40:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176219323] [to:+13312087409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242527404] [to:17575153105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824887] [to:15023315178] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:18453892970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438836] [to:15043314624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039470613] [to:+19172835170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12269776123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-21 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19724152044] [to:+13212700851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157020] [to:13306159829] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434163265] [to:+14438550884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:29 ip-10-0-0-11 mdr: 2016-02-01 11:40:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097716531] [to:+17097019284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:29 ip-10-0-64-10 mdr: 2016-02-01 11:40:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18183875136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:15155207041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568526] [to:17068290774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853758854] [to:+18178184630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503617191] [to:+12148149438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862868] [to:16108091920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16613063650] [to:15593528026] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354528] [to:14126527470] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041562] [to:13179036273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884760] [to:14439832454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356048] [to:15173926212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404467429] [to:+17034199163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771455] [to:18018360894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-10 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:30 ip-10-0-0-11 mdr: 2016-02-01 11:40:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:30 ip-10-0-64-11 mdr: 2016-02-01 11:40:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477120185] [to:+16474916097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797200] [to:18455383705] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478618189] [to:+16463497445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438252749] [to:+17745498325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026870] [to:17244207747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-10 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:31 ip-10-0-64-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767262] [to:14196121568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19135752241] [to:+17123825611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-10 mdr: 2016-02-01 11:40:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477168649] [to:+14503286393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:31 ip-10-0-0-11 mdr: 2016-02-01 11:40:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096384687] [to:+19027046487] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-20 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477787480] [to:+12897797983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374077] [to:19045378680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313576617] [to:+12312996347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012963] [to:18653216545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:17272551635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041312] [to:14043375495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:32 ip-10-0-0-11 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:32 ip-10-0-64-10 mdr: 2016-02-01 11:40:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946106] [to:13302241607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191134] [to:18635583809] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-21 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447511075565] [to:+447418336845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107632993] [to:+14844124419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742000288] [to:+13219998755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049991563] [to:+18046650257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161245] [to:19194491104] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218253] [to:15132123417] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253337739] [to:+14158907745] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-11 mdr: 2016-02-01 11:40:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:33 ip-10-0-64-11 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:33 ip-10-0-0-10 mdr: 2016-02-01 11:40:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805173586] [to:+15874087003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405122500] [to:+16149180195] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132123417] [to:+12139218253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193029] [to:18144961281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438252749] [to:+17745498325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358223] [to:13303478931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123390633] [to:+13479379774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863081529] [to:+13312086100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018782896] [to:+19014449167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003ED0201] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274737] [to:17326663056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547024473] [to:+17604748914] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446516] [to:+12267983336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042141366] [to:+17273332348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18708266190] [to:+14242836323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158142] [to:17024124140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-11 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802810448] [to:+15873322555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:34 ip-10-0-0-11 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:34 ip-10-0-64-10 mdr: 2016-02-01 11:40:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050437] [to:19729469004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003ED0202] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992553] [to:19084257771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176219323] [to:+13312087409] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015696703] [to:+13476568257] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152365659] [to:+13477699324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:12344105575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166245878] [to:+12894600762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594637] [to:17788478782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-10 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-10 mdr: 2016-02-01 11:40:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015306885] [to:+19014449676] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:35 ip-10-0-64-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082076] [to:13155161265] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:35 ip-10-0-0-11 mdr: 2016-02-01 11:40:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17185067069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134276869] [to:+12138739393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065133] [to:17042583160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137721] [to:19105275422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189770875] [to:+12132959694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046606562] [to:+13369382199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15595295873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640895] [to:19513809880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407082411] [to:+17408798448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526262751] [to:+12138029087] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015565298] [to:+14242846184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139081] [to:14702094272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095665270] [to:+19093405860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:36 ip-10-0-64-11 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:36 ip-10-0-0-10 mdr: 2016-02-01 11:40:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176929712] [to:+13176889764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093520887] [to:+18563126073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015249767] [to:+13012311167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833658] [to:17022018705] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585909] [to:15097315499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255068] [to:+13364500364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313294531] [to:+15124007190] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063501295] [to:17064665363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344192834] [to:+16025527779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815872] [to:15137959741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:37 ip-10-0-0-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404370] [to:13305180312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504912089] [to:+13866017680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-10 mdr: 2016-02-01 11:40:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:37 ip-10-0-64-11 mdr: 2016-02-01 11:40:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148065657] [to:+14387942039] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016757512] [to:+14018677509] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187510338] [to:16462876977] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-64-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477812697] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-11 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:38 ip-10-0-0-10 mdr: 2016-02-01 11:40:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132597798] [to:+18133316673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024498554] [to:+17027794166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15167257290] [to:+19176634753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035628899] [to:+16034138121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193567558] [to:+18484828998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12155314615] [to:+19177329334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320468] [to:13157260152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783053006] [to:+14695323996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450647] [to:13364017242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13073924435] [to:+14072161884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-11 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014521853] [to:+14157878982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:39 ip-10-0-64-10 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-11 mdr: 2016-02-01 11:40:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:39 ip-10-0-0-21 mdr: 2016-02-01 11:40:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451225729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414087] [to:12486671411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384984686] [to:+14387945342] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187767342] [to:+19177730322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024037469] [to:+19027003988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473533547] [to:+13475185492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523706772] [to:+12138068778] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18169201381] [to:+16513184804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032040145] [to:+14308088315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-10 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012885827] [to:+18133086540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:40 ip-10-0-0-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:40 ip-10-0-64-11 mdr: 2016-02-01 11:40:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407665] [to:15612944177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302406] [to:17089264835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854659343] [to:+17162792216] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15082711868] [to:12602409317] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-21 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003800201] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-10 mdr: 2016-02-01 11:40:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188785364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-10 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039192858] [to:+15873280388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:41 ip-10-0-0-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767331020] [to:+19142795827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:41 ip-10-0-64-11 mdr: 2016-02-01 11:40:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563322335] [to:+19599999565] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896988870] [to:+12262418246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619002973] [to:+16612285702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:15145180451] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983065] [to:12263123561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878311] [to:19362014822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236393607] [to:+12138614120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139353816] [to:16606352114] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836909] [to:14437458470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981139] [to:15105937641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005652] [to:14043543755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349254943] [to:+18108528357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640230] [to:18027519119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060740] [to:14026864842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053909] [to:17272446776] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620997] [to:12292727877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625676664] [to:+16465472246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-20 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475272720] [to:+16474965198] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808245] [to:13477190919] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:42 ip-10-0-64-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856892245] [to:+19142812178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565032364] [to:+18563126520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:14012271456] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:42 ip-10-0-0-11 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869572581] [to:+17277679349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419727] [to:14084896037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17149473429] [to:+17145927167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994820] [to:19856878604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361403] [to:15133495831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109723240] [to:+12678676873] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364017242] [to:+13366450647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407227141] [to:+15072626621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-10 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819291800] [to:+15088341059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-0-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349254943] [to:+18108528357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:43 ip-10-0-64-11 mdr: 2016-02-01 11:40:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13073924435] [to:+14072161884] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137773879] [to:+18639493389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13607428651] [to:+13606027125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162428893] [to:+12162396084] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615182] [to:15179458778] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168255786] [to:+18077880178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158257862] [to:16362848341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15012313955] [to:+16467691310] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-0-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092031] [to:17047426608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-11 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:44 ip-10-0-64-10 mdr: 2016-02-01 11:40:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-20 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-21 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315647] [to:18503540817] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082943471] [to:+17817863862] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419752] [to:12693488083] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052340195] [to:+15592232463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064281208] [to:+13866017605] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-11 mdr: 2016-02-01 11:40:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375421] [to:14235050342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:45 ip-10-0-0-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-10 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684260] [to:18652106083] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:45 ip-10-0-64-11 mdr: 2016-02-01 11:40:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408139] [to:13528167172] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532367741] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783053006] [to:+14695323996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063614820] [to:+14703335576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406674367] [to:+12139927824] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800786] [to:15089697763] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896988870] [to:+12262418246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18502263564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631650] [to:17752356247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179413] [to:14782787801] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372395003] [to:+16465478265] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476094924] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745384550] [to:+18107725285] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864430342] [to:+12048093485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152443636] [to:+15122657511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287682259] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-21 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:46 ip-10-0-64-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-21 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447913467969] [to:+447451211261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-10 mdr: 2016-02-01 11:40:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:46 ip-10-0-0-11 mdr: 2016-02-01 11:40:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916097] [to:16477120185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657483] [to:18134100921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991052] [to:12404389310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809821773] [to:+15874004806] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864430342] [to:+12048093485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126527470] [to:+14125354528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305355] [to:16186042842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099331] [to:16103605040] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334483] [to:17067677526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107292554] [to:+18102218189] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175155532] [to:+13479190671] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069096310] [to:+13479067867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-10 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17185064718] [to:+15169341911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:47 ip-10-0-64-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792452178] [to:+18724008386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-11 mdr: 2016-02-01 11:40:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485535] [to:12149713809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:47 ip-10-0-0-10 mdr: 2016-02-01 11:40:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049311654] [to:+15109482643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432634185] [to:+18438720560] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958694] [to:12256630515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086827831] [to:+12672777535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-11 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796017342] [to:+15103227863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-10 mdr: 2016-02-01 11:40:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042635211] [to:+18133084211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:48 ip-10-0-0-11 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:48 ip-10-0-64-10 mdr: 2016-02-01 11:40:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022429061] [to:+19172660038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312336115] [to:+16314907373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18475218629] [to:+17203586378] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198247849] [to:+13478967078] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:16015203796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587461] [to:14406547192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896988870] [to:+12262418246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502293866] [to:+14158253075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227079] [to:12298157523] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605223392] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-20 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205322] [to:+447469705468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-64-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-11 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:14323856856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057908066] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:49 ip-10-0-0-10 mdr: 2016-02-01 11:40:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:19734335187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122761578] [to:+16158075990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18129634314] [to:+19177905426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918976] [to:16048189815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052737108] [to:+13479478436] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044961310] [to:+13057355979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134276869] [to:+12138739393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026339066] [to:+16233837835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204953] [to:14434096150] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-11 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614253596] [to:+15613165090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146266] [to:19735178162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-11 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137721] [to:19105991330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:50 ip-10-0-0-10 mdr: 2016-02-01 11:40:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:50 ip-10-0-64-10 mdr: 2016-02-01 11:40:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-20 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238982449] [to:+12627775221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973860] [to:15707306517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:12292720365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592879] [to:16785700121] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17146570664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788842599] [to:+19783619091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099751199] [to:+15209996186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083104729] [to:+12087574526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-10 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334751] [to:19894942990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981139] [to:18156213157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802886] [to:16024029790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:51 ip-10-0-64-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:51 ip-10-0-0-10 mdr: 2016-02-01 11:40:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739754] [to:12512293310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062023648] [to:+13064000398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18185401976] [to:15622989698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138443] [to:12522135148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174380380] [to:+13072759034] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286061] [to:12769528338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14349079790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237148364] [to:+17733132642] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12362373471] [to:19024031469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-21 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627186] [to:+447960748497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822695] [to:15859676734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567424] [to:12487597172] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022208944] [to:+19027062464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:17349043488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612013530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:52 ip-10-0-64-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:16783537433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-11 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:12403672433] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:52 ip-10-0-0-10 mdr: 2016-02-01 11:40:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148231] [to:+17073007464] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066819389] [to:+13069928092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800458] [to:15167432146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004021] [to:16787606441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-11 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562391199] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-10 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189672014] [to:+15817005965] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:53 ip-10-0-64-11 mdr: 2016-02-01 11:40:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493389] [to:18638088654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:53 ip-10-0-0-20 mdr: 2016-02-01 11:40:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955503] [to:16476085144] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721202] [to:15042989185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248035031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:18454016037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-0-11 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068751] [to:12292555658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305390] [to:18034048847] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18059465006] [to:+18053941845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-11 mdr: 2016-02-01 11:40:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892934364] [to:+14242867432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:54 ip-10-0-64-10 mdr: 2016-02-01 11:40:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865030340] [to:13528070483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:12344105575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138363] [to:17708371223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198795427] [to:+19166371549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168851385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204336] [to:14437894249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068778] [to:12523706772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176961779] [to:+12017428793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148246324] [to:+14388072408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146093659] [to:+17205908132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122783086] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174142753] [to:+13473897098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043034146] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178284120] [to:+14158536261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12503775655] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329315609] [to:+12105718194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067161817] [to:+14703336645] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292060574] [to:+12139212522] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189068425] [to:+15817014960] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15749039878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065265279] [to:+13479979525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867173156] [to:+13866013220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132597798] [to:+18133316673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19132673655] [to:+17323287740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993032] [to:+14706734025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168040043] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-10 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198906002] [to:+12267982255] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478173] [to:15404507957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084634847] [to:+13478023371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:55 ip-10-0-64-11 mdr: 2016-02-01 11:40:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354881] [to:15737070271] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:55 ip-10-0-0-11 mdr: 2016-02-01 11:40:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084634847] [to:+13478023371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065371886] [to:+16784968802] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139854] [to:15512002247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174753332] [to:+12679077716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836964] [to:18605753288] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033673039] [to:+18133208737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193037745] [to:16133225096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559836] [to:15193006368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264559836] [to:15193006368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12087915382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393837] [to:13092645177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-64-10 mdr: 2016-02-01 11:40:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326505529] [to:18329680040] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-11 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123455] [to:16785991331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123990] [to:16787698846] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:56 ip-10-0-0-10 mdr: 2016-02-01 11:40:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-20 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968813] [to:16023203978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430947] [to:16203886004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431580] [to:12269806097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015306885] [to:+19014449676] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18502263564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17348589070] [to:+12136036303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994820] [to:13377356193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513919797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053039277] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19805055307] [to:+18583146155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-11 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:57 ip-10-0-64-10 mdr: 2016-02-01 11:40:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:57 ip-10-0-0-10 mdr: 2016-02-01 11:40:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016041005] [to:+17206235720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003070201] -Feb 1 11:40:58 ip-10-0-0-20 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447771591716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898545838] [to:+17636849995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478265] [to:19372395003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029317651] [to:+17027181108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047651354] [to:+16474954070] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034774307] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17348589070] [to:+12136036303] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176150553] [to:+16515608164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12489781172] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:58 ip-10-0-0-11 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:58 ip-10-0-64-10 mdr: 2016-02-01 11:40:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550884] [to:14434163265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077890257] [to:12042944132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237148364] [to:+17733132642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771455] [to:18018360894] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178278193] [to:+12135596538] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+13478029229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493132] [to:15807476392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223472] [to:19122863554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139665170] [to:+18133201485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-10 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-10 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:40:59 ip-10-0-64-11 mdr: 2016-02-01 11:40:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:40:59 ip-10-0-0-11 mdr: 2016-02-01 11:40:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049795637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132927510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095373] [to:15145739298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14846339152] [to:13475892018] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176284083] [to:+13175280281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105233] [to:19148302579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001032] [to:18643478865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-10 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-0-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019682119] [to:+15733623367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:00 ip-10-0-64-11 mdr: 2016-02-01 11:41:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436938] [to:15198172328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342005] [to:14044545266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265983633] [to:+17323624355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17042546241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12627483219] [to:+19176634497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627548] [to:18456493568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-21 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792166739] [to:+447520607931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759034] [to:14174380380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13477856607] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:01 ip-10-0-0-11 mdr: 2016-02-01 11:41:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:01 ip-10-0-64-10 mdr: 2016-02-01 11:41:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338504] [to:19145364234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073539021] [to:+14044811581] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138070353] [to:+13015699687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023025] [to:14187205306] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-64-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106903098] [to:+13203737521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-11 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14436531995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19122711763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:02 ip-10-0-0-10 mdr: 2016-02-01 11:41:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047842917] [to:+12132957246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190029] [to:16162839064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036196136] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18629558112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477046128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-10 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865030340] [to:13528070483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873270614] [to:15875759078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-10 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-11 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:03 ip-10-0-0-10 mdr: 2016-02-01 11:41:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742138660] [to:+15617666916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:03 ip-10-0-64-11 mdr: 2016-02-01 11:41:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17146570664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-20 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156918952] [to:15024351842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326501578] [to:15129633372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16024737420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329967] [to:18048373858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-20 mdr: 2016-02-01 11:41:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930053106] [to:+447451238236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-10 mdr: 2016-02-01 11:41:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035868245] [to:+17036466838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749162] [to:16185991268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087003] [to:17805173586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-10 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431580] [to:12269806097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:04 ip-10-0-64-11 mdr: 2016-02-01 11:41:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:04 ip-10-0-0-21 mdr: 2016-02-01 11:41:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502552674] [to:+16042593605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809527] [to:15703770381] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739490375] [to:+17736690296] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+15874084459] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17073827343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163414221] [to:13365148747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725582] [to:18105774599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703123904] [to:+15022083477] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336782] [to:13474600877] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336782] [to:13474600877] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570094] [to:15195667713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502336782] [to:13474600877] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804237] [to:18143319115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149690879] [to:+14503286092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153736093] [to:+19142795727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579285183] [to:+19142062460] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315797] [to:15862318800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-10 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:05 ip-10-0-64-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:05 ip-10-0-0-11 mdr: 2016-02-01 11:41:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061366] [to:18038073907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039990788] [to:+15713500640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196165877] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034773] [to:12819011414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102653513] [to:+18103393940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072854738] [to:+14146004325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18702736100] [to:+19015042897] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148989901] [to:+14388088266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739490375] [to:+17736690296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053754262] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12103654167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998506] [to:17049050577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129335157] [to:+17736666015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998209] [to:14507509545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127507820] [to:+15103137618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096362758] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025090222] [to:+13478086415] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196165877] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797546] [to:13474376206] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076702512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196165877] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518707543] [to:+16178634852] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185132184] [to:+17273332724] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-11 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:06 ip-10-0-0-10 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-11 mdr: 2016-02-01 11:41:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:06 ip-10-0-64-10 mdr: 2016-02-01 11:41:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448067] [to:17639134213] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-21 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447813623769] [to:+447520673964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:19514566955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286061] [to:15404938810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035776] [to:13057809061] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611428] [to:18594961749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-20 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237148364] [to:+17733132642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642213651] [to:+16475569075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463628] [to:12817615079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163205] [to:18605199688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403887653] [to:+12405457903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:07 ip-10-0-64-10 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:07 ip-10-0-0-11 mdr: 2016-02-01 11:41:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376267] [to:17175869438] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366622111] [to:+14243364981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316242032] [to:+12312663129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734892989] [to:+13479808547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212180] [to:12815715489] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328950331] [to:+15165977875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731352] [to:15015742802] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127579] [to:527711528745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028437] [to:15014637390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-0-10 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635388223] [to:15635647569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-10 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896576] [to:14422626596] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:08 ip-10-0-64-11 mdr: 2016-02-01 11:41:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742655470] [to:+16172139329] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-11 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323049] [to:15879906085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088778579] [to:17873889824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421913] [to:18323428517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802886] [to:13214024139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006975] [to:17058081229] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144814] [to:19548257501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577693324] [to:+12134783656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222273] [to:18458930770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305428] [to:18593291603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-10 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:14135305937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:19514566955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163717] [to:14043951831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:09 ip-10-0-0-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-11 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:09 ip-10-0-64-10 mdr: 2016-02-01 11:41:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951269] [to:19045637759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-21 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520620332] [to:+447766345123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14233226427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869572581] [to:+17277679349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162425] [to:15188660195] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148136] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071423] [to:15148920786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605465] [to:15056862016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075413] [to:15145015061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370805] [to:13302173550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:10 ip-10-0-64-11 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:10 ip-10-0-0-10 mdr: 2016-02-01 11:41:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286293] [to:15402938727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992537] [to:14092232665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558116] [to:12182770095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473045379] [to:+18582401961] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053754262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378238] [to:17068778145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611322] [to:13602701837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629316] [to:12673485804] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993173] [to:16106538923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12625984655] [to:+12627776116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068607882] [to:+13065004263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124760] [to:14842418245] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:11 ip-10-0-0-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245955473] [to:+13125099763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-10 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:11 ip-10-0-64-11 mdr: 2016-02-01 11:41:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474072231] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737070271] [to:+14845354881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157179169] [to:+16467018519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026835973] [to:+19292201815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164309122] [to:+16162390386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857757662] [to:+16464751219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468698] [to:17736786099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026230] [to:14847695180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:12 ip-10-0-64-10 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043981843] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612543] [to:19514566955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:12 ip-10-0-0-11 mdr: 2016-02-01 11:41:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-20 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447437817788] [to:+447451241882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338899] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449167] [to:19018782896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003740301] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857734605] [to:+13477966672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942127] [to:15143476271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479862246] [to:19292316010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608471] [to:16062611905] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213263] [to:16017479200] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133568194] [to:+16178619678] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856878604] [to:+19542994820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328614082] [to:+14242795619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:14046947405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742138660] [to:+15617666916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134072605] [to:+16136041988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-10 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-64-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526242153569] [to:+17813862838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:13 ip-10-0-0-11 mdr: 2016-02-01 11:41:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735771] [to:15048120439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704198417] [to:+15705216450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-10 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862816] [to:16108095698] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735344] [to:17068255619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615226] [to:13236439744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-10 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-20 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447502732995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-10 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:14 ip-10-0-0-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:14 ip-10-0-64-11 mdr: 2016-02-01 11:41:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12156068019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14429001931] [to:13176278220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188940612] [to:+19177730322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097272760] [to:+12678444335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-11 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402350948] [to:+16172193265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:15 ip-10-0-64-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:15 ip-10-0-0-10 mdr: 2016-02-01 11:41:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581337] [to:16787793896] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-21 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451207362] [to:+447979471671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166245878] [to:+12894600762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+15874084459] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375642208] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788017982] [to:+14025001629] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148678] [to:12404317279] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165246] [to:14698316675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17066993032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:16 ip-10-0-64-10 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534548] [to:13232396096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:16 ip-10-0-0-11 mdr: 2016-02-01 11:41:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19025992885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026149266] [to:+13478968426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569271] [to:14798836437] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802094] [to:16314168646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802094] [to:16314168646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19789186789] [to:+19782384414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139488] [to:14785503257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168479307] [to:+14157878784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046984949] [to:+12048093291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123041537] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032906155] [to:+19142967515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032638] [to:15157299855] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193037745] [to:16133225096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196340341] [to:+12267792991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:17 ip-10-0-64-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-11 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072970] [to:18063409384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:17 ip-10-0-0-10 mdr: 2016-02-01 11:41:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524691532] [to:+15102549848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15012607926] [to:+14148824989] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546622656] [to:+19543144368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802886] [to:13214024139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057062] [to:13052409610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281079] [to:19517969752] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548999794] [to:+16784342383] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249317470] [to:+14128193461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190180] [to:13473674623] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373292118] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15612915140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466875718] [to:12039531596] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-20 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447943410006] [to:+447451246220] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991330] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-11 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17185067069] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:18 ip-10-0-0-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:18 ip-10-0-64-10 mdr: 2016-02-01 11:41:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-21 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-10 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:527861001682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-10 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716867460] [to:+14158538753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-10 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:15712640967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-10 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018598364] [to:+13017786538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863363098] [to:+13866016659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003740302] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393716] [to:16192884468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:19 ip-10-0-0-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:19 ip-10-0-64-11 mdr: 2016-02-01 11:41:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347022] [to:18637096783] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16266651966] [to:+18583146049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150256015870] [to:+14043411026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817246] [to:15704859613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819967437] [to:+15817023425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:17244751047] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109087789] [to:+14023874028] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-11 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123226819] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:20 ip-10-0-0-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:20 ip-10-0-64-10 mdr: 2016-02-01 11:41:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334085] [to:12519797535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691800] [to:13372449727] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083477] [to:12703123904] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039673] [to:15064800258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139148] [to:19083616202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031653] [to:19027542344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817016187] [to:15813183044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062244134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094232] [to:12406028613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154443] [to:+19725348714] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033104548] [to:18035143296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540879] [to:16502012287] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-10 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-64-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-10 mdr: 2016-02-01 11:41:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:21 ip-10-0-0-21 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605209] [to:+447908662033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899465] [to:13136037751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144466] [to:16014339126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042501370] [to:+19196516584] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143797109] [to:+14144006547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-21 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195667713] [to:+12264570094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478088] [to:15169650645] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041286] [to:16139030067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292688219] [to:16463276090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435614007] [to:+14435299748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712833721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142615] [to:13053230063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039890019] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:22 ip-10-0-0-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:22 ip-10-0-64-10 mdr: 2016-02-01 11:41:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603415162] [to:+13479809779] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136579083] [to:+13479804016] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472246] [to:16625676664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185648084] [to:+15817023209] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126520] [to:18565032364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609106206] [to:+13478022773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195663586] [to:+13309358252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927824] [to:14406674367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669296] [to:16074445258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474953358] [to:+19176366827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743611683] [to:+12602327565] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:23 ip-10-0-0-11 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-11 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:23 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282287470] [to:+14692055414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152179465] [to:+18456220981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403557290] [to:+13015699231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188471439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793533708] [to:+14155698309] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:16789737082] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:16789737082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147529] [to:12483085810] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288396] [to:12316226271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-11 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056046941] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19164963348] [to:+12092511148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-10 mdr: 2016-02-01 11:41:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-11 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:24 ip-10-0-64-10 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:24 ip-10-0-0-20 mdr: 2016-02-01 11:41:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213885] [to:+447918991633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:13867173156] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693488083] [to:+17073419752] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-21 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447788212505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027719324] [to:+17027475637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762356] [to:13605400052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-21 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563483097] [to:+12547356478] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-21 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624532] [to:+447789778722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349043488] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014637390] [to:+12138028437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063089597] [to:+17279166773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-11 mdr: 2016-02-01 11:41:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:25 ip-10-0-64-11 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123873051] [to:+12134786873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:25 ip-10-0-0-10 mdr: 2016-02-01 11:41:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023443512] [to:+13025957430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092516440] [to:14356409539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789368281] [to:+16784342477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696154394] [to:+15748578975] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003740303] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14438630307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402436096] [to:+12342313880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12049976994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-11 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053754262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077602] [to:15147920174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:26 ip-10-0-64-10 mdr: 2016-02-01 11:41:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12344105575] [to:+13053400830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-11 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046171335] [to:+17784032997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:26 ip-10-0-0-10 mdr: 2016-02-01 11:41:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209529] [to:18134315699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043142168] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053134135] [to:+15056007549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603186] [to:18702093290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038073907] [to:+14694061366] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:12493582804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:16032096760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196504587] [to:18609856432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017605] [to:17064281208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:27 ip-10-0-0-11 mdr: 2016-02-01 11:41:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-11 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:27 ip-10-0-64-10 mdr: 2016-02-01 11:41:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13193837212] [to:17346427556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178777177] [to:+12404077804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13072598488] [to:+13072138389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13166804610] [to:+14157995573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12103654167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196340341] [to:+12267792991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084627] [to:18132704187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:16465525925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108282679] [to:+17248033019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105869538] [to:+15103228698] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:28 ip-10-0-64-11 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-21 mdr: 2016-02-01 11:41:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:28 ip-10-0-0-10 mdr: 2016-02-01 11:41:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-20 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748531336] [to:+447418332648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003BA0202] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15158640828] [to:15155776883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12136337790] [to:+16162755248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163554741] [to:+16467018036] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192427989] [to:+15104474940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765941664] [to:+12135297733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349079790] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779860556142] [to:+15092623399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:15876790399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-11 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19057836587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-11 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:29 ip-10-0-0-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894641691] [to:+12486915304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:29 ip-10-0-64-10 mdr: 2016-02-01 11:41:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862243] [to:18329449192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306417725] [to:+14158909052] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13376802182] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028401486] [to:+19027021544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404745] [to:13183155929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606019738] [to:+14259478723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019893] [to:16047818900] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029211] [to:13166892897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14023070052] [to:+13478683119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-21 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242937] [to:+447946297227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:30 ip-10-0-0-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326865] [to:14696727922] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-10 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128278] [to:15033677126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:30 ip-10-0-64-11 mdr: 2016-02-01 11:41:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018782896] [to:+19014449167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143255] [to:12515509761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047426608] [to:+19802092031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454159] [to:14344142097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102653513] [to:+18103393940] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:12293310606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006975] [to:17058081229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017481096] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570094] [to:15195667713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-20 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447584034325] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:31 ip-10-0-64-10 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:31 ip-10-0-0-11 mdr: 2016-02-01 11:41:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014010769] [to:+17607014528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412033632] [to:+18133202054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433072967] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-11 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094232] [to:12406028613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737140] [to:14439962519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612013530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-11 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872986866] [to:+15125597512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:32 ip-10-0-64-10 mdr: 2016-02-01 11:41:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:32 ip-10-0-0-10 mdr: 2016-02-01 11:41:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018639] [to:19026290767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15039890019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049136120] [to:+18585199132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088975] [to:17062049565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138035460] [to:+16139092530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875891660] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157673199] [to:+19177374530] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-10 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197329230] [to:+12262418030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-64-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868379635] [to:+18453632069] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-11 mdr: 2016-02-01 11:41:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:33 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144466] [to:16014339126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894942990] [to:+19895334751] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14438630307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19374672208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13072541656] [to:+13072138353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196992] [to:12703700148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:18127014630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849343] [to:12706191234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093547310] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:13045493860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433050] [to:16155784326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486602] [to:17579275943] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035976588] [to:+17747288411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992984] [to:16476871881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139329] [to:17742655470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:34 ip-10-0-0-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-10 mdr: 2016-02-01 11:41:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:34 ip-10-0-64-11 mdr: 2016-02-01 11:41:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182770095] [to:+16122558116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-10 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373424] [to:13214398941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369050] [to:14028927729] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14047969865] [to:18018575198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:13013053800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-10 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183868394] [to:+13478303673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-11 mdr: 2016-02-01 11:41:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14793065705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-10 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477856607] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:35 ip-10-0-0-10 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12424240545] [to:+15172585792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16518006100] [to:+18134300325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:35 ip-10-0-64-11 mdr: 2016-02-01 11:41:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12424240545] [to:+15172585792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16606352114] [to:+12139353816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302173550] [to:+13302370805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12149713809] [to:+19038485535] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15419808669] [to:+15417900432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292555658] [to:+13214068751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661210] [to:17166501279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934459] [to:19053761423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:18656583095] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:36 ip-10-0-64-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-11 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:19053997098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:36 ip-10-0-0-10 mdr: 2016-02-01 11:41:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548220560] [to:+19046947910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748649] [to:12294158102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783341905] [to:+12138029590] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372149009] [to:+19172610837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13097408338] [to:+13479569841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090360] [to:+13479804016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326865] [to:14696727922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587756] [to:15138074764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572669112] [to:+19177370423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-20 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-10 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059021066] [to:+19172751767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449167] [to:19018782896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-10 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:37 ip-10-0-0-11 mdr: 2016-02-01 11:41:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702897395] [to:+13479713797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:37 ip-10-0-64-11 mdr: 2016-02-01 11:41:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137090360] [to:+13479804016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157179169] [to:+16467018519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096602489] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961966] [to:15713599159] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007548] [to:14502043417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136302831] [to:+15617666340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546706740] [to:+18133081520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021775] [to:19023220179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287774901] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347473797] [to:+17348228546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-10 mdr: 2016-02-01 11:41:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:38 ip-10-0-0-11 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158265353] [to:+14243364749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:38 ip-10-0-64-10 mdr: 2016-02-01 11:41:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403297018] [to:+12672777605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004462] [to:14046219591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632802451] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163507] [to:13476781201] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474020406] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869162303] [to:+13866012319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16477925318] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536525] [to:14132109887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178089967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178089967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-10 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:39 ip-10-0-64-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158909052] [to:13306417725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:39 ip-10-0-0-11 mdr: 2016-02-01 11:41:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604491941] [to:+12602327543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404732] [to:13057854264] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767644] [to:14197097860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409257655] [to:+12406857736] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049157640] [to:+12048086764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303237325] [to:+13302374954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063240443] [to:+15874101578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647122351] [to:+17636560125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-20 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676084965] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403981777] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:40 ip-10-0-64-10 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:40 ip-10-0-0-11 mdr: 2016-02-01 11:41:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344366401] [to:17345459366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19523885066] [to:12032405470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167939845] [to:+15109480058] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714448234] [to:18434722266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142068776] [to:18027292391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266520] [to:17745405906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049318274] [to:+13474863548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042426649] [to:+12026015717] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078500017] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022740712] [to:+12404926970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817199] [to:12703669434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15807476392] [to:+18639493132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968915] [to:17708236616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163414221] [to:13366930772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634450608] [to:+18638557497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994820] [to:19856878604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364144] [to:+13477989802] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694613214] [to:+13479478103] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:41 ip-10-0-0-11 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347997129] [to:+17344365127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:41 ip-10-0-64-10 mdr: 2016-02-01 11:41:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12548337646] [to:+13479804010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313634415] [to:+17315744227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024200816] [to:+15714454358] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281313] [to:14806691429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13376802182] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677509] [to:14016757512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392421991] [to:+16467691647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007756] [to:16476331128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-21 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447428156536] [to:+447418325112] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:42 ip-10-0-64-11 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175996264] [to:+13478082456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:42 ip-10-0-0-10 mdr: 2016-02-01 11:41:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336144] [to:18126554507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167891551] [to:+14406587753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262169825] [to:+16264278554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137959741] [to:+19142815872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061366] [to:18038073907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195866] [to:14045439998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405860] [to:19095665270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152006926] [to:+15852822374] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028535795] [to:+12405587796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010201] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049157640] [to:+12048086764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156701914] [to:+13476762599] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968802] [to:17065371886] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17872986866] [to:+15125597512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-11 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028535795] [to:+12405587796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010202] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:43 ip-10-0-0-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:43 ip-10-0-64-10 mdr: 2016-02-01 11:41:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097977834] [to:16063364556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:13013053800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476311812] [to:+16474911631] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796194] [to:12702509778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062244134] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-20 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784847253] [to:+14242797071] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809821773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735985023] [to:+17073418824] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477388388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457903] [to:12403887653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027519119] [to:+16465640230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426107] [to:19012120512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569073] [to:14236090937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14166483466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863363] [to:19183047007] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776116] [to:12625984655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-64-10 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14693179796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003700201] -Feb 1 11:41:44 ip-10-0-0-11 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:18138987247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:44 ip-10-0-0-20 mdr: 2016-02-01 11:41:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-21 mdr: 2016-02-01 11:41:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320991] [to:+447971136440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464395339] [to:+19173911776] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163999138] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862830] [to:12154313161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594961749] [to:+12694611428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103654167] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042911] [to:19027016139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134064935] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072449142] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749039878] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921699] [to:16023139998] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000398] [to:13062023648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480895] [to:17165367498] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328276] [to:15135356668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454590] [to:12182308692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-10 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:45 ip-10-0-0-11 mdr: 2016-02-01 11:41:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:45 ip-10-0-64-11 mdr: 2016-02-01 11:41:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213171797] [to:+13217309541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16047675847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+14153671979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968055] [to:12286976131] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968055] [to:12286976131] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968055] [to:12286976131] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626218152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785256240] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245416] [to:17576477468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739747] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698316675] [to:+17279165246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168479307] [to:+14157878784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:46 ip-10-0-64-10 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676718488] [to:+12138023206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:46 ip-10-0-0-11 mdr: 2016-02-01 11:41:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671927] [to:+13479862076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159183748] [to:+16467019472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660335] [to:15742974623] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:16099035175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:16099035175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14693179796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003700202] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:47 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313337106] [to:+13024991974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-10 mdr: 2016-02-01 11:41:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:47 ip-10-0-0-11 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673492] [to:17173713372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17037855957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:16043439575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034196400] [to:+16465641653] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474020406] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612818046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086458] [to:15025283892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328950331] [to:+15165977875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525841819] [to:+19199163818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672308266] [to:+12674377072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528070483] [to:+17865030340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-10 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:48 ip-10-0-0-11 mdr: 2016-02-01 11:41:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:48 ip-10-0-64-11 mdr: 2016-02-01 11:41:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884101] [to:14344296154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844260438] [to:+14843979247] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-20 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17343085065] [to:+15172527492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025992885] [to:+19027058374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13198990300] [to:+19172661348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068255619] [to:+14706735344] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160591] [to:18632417044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147920174] [to:+14388077602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-11 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473831302] [to:+17472237475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:49 ip-10-0-0-10 mdr: 2016-02-01 11:41:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-11 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:49 ip-10-0-64-10 mdr: 2016-02-01 11:41:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478305] [to:17024235341] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384044133] [to:+14388095876] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075915] [to:15148042873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169690816] [to:+14158532430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745731] [to:18176093678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123455] [to:16785991331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064281208] [to:+13866017605] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-10 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:50 ip-10-0-0-20 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-10 mdr: 2016-02-01 11:41:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12548337646] [to:+13479804010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:50 ip-10-0-64-11 mdr: 2016-02-01 11:41:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196992] [to:12707343520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185699892] [to:+15817009370] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622414530] [to:+19492981941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233201243] [to:+14156696911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022779] [to:17097437314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12489042918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-11 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-11 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819681] [to:14195713245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:51 ip-10-0-64-10 mdr: 2016-02-01 11:41:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:51 ip-10-0-0-10 mdr: 2016-02-01 11:41:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148168415] [to:+16467691308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001673] [to:12498788642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165246] [to:13185339180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477046128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:52 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605465] [to:15056862016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-10 mdr: 2016-02-01 11:41:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:52 ip-10-0-64-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011524774658285] [to:+16193592156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124183382] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538526] [to:13344704245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-20 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548591] [to:13853336737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010815] [to:12087868669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-0-11 mdr: 2016-02-01 11:41:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-10 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:53 ip-10-0-64-11 mdr: 2016-02-01 11:41:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822023327] [to:+19365878100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028620093] [to:+13852657536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432318089] [to:+12132896001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405410707] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187180142] [to:+19259574733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17074985845] [to:+17074034264] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033019] [to:15108282679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023425] [to:15819967437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647810] [to:+19717328525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010983] [to:12086601300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125688514] [to:+18506315661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037072791] [to:+19148988455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469199011] [to:+19177731550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316108] [to:14194429865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-10 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:54 ip-10-0-64-11 mdr: 2016-02-01 11:41:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:54 ip-10-0-0-10 mdr: 2016-02-01 11:41:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439832454] [to:+14108884760] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035976588] [to:+17747288411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632288280] [to:+17636346823] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179397726] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064415056] [to:+19027056328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:17735931522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177588834] [to:+14242866497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712833721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199132] [to:17049136120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560125] [to:18647122351] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046006431] [to:+19142062074] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003070202] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028095639] [to:+19027058553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103201592] [to:+17049700893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154019452] [to:+19177320379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149666308] [to:+16466289789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267470474] [to:+15874042249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192386784] [to:+18193036926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177952149] [to:+15103227354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025509651] [to:+12135297933] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306103659] [to:+13479139459] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059121525] [to:+12894601551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699413164] [to:+12695755494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672308266] [to:+12674377072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436682114] [to:+14435299721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562766986] [to:+13478993244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312238837] [to:+18312188963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+14153671979] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314018241] [to:+19018421575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315713] [to:13049517655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137437411] [to:+15022083297] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605199688] [to:+19199163205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-0-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946963] [to:19042948679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-10 mdr: 2016-02-01 11:41:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:55 ip-10-0-64-11 mdr: 2016-02-01 11:41:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817864421] [to:14019990197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703610104] [to:+17702005926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782783283] [to:+14156850906] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314018241] [to:+19018421575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155271410] [to:+15109487546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817003403] [to:15819988854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965132] [to:12139440733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165246] [to:14698316675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474020406] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13197599316] [to:+15155057855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740442] [to:+13477361968] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-11 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:56 ip-10-0-0-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136858444] [to:+16163266360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-10 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:56 ip-10-0-64-11 mdr: 2016-02-01 11:41:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215360432] [to:+14256789311] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958694] [to:12256630515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159398057] [to:+13479806844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349319] [to:17192326725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313048] [to:18502416173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077598576] [to:+19172751996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215360432] [to:+14256789311] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:18282012763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784942] [to:17405629343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:57 ip-10-0-64-10 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:57 ip-10-0-0-11 mdr: 2016-02-01 11:41:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087003] [to:17805173586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274477] [to:+14706735615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314441189] [to:+18312228941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173867291] [to:+12138228103] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175261335] [to:+18173637605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137619] [to:15702399347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:19072059643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566527066] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281313] [to:18078532765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-10 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344366401] [to:17345459366] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:58 ip-10-0-64-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:58 ip-10-0-0-11 mdr: 2016-02-01 11:41:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085010983] [to:12086601300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062164573] [to:+13069928081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176836477] [to:+13476671595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698554931] [to:+15104478356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077816336] [to:+14072681678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977710] [to:15704927232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286065] [to:15407608418] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13197599316] [to:+15155057855] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939035] [to:17246309321] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348747] [to:16784294122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-11 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733598440] [to:+12138736178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:41:59 ip-10-0-0-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:41:59 ip-10-0-64-11 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:41:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621900] [to:17865368408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515509761] [to:+16572143255] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125927982] [to:+13866018901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479069972] [to:14349079790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038378875] [to:+12626483956] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185699892] [to:+15817009370] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805308] [to:18102883718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001304] [to:14043956745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022779] [to:17097634218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077816336] [to:+14072681678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:15152504598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021890] [to:16477812697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123226819] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19729575111] [to:+14694157143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-20 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679050420] [to:+12679669832] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:00 ip-10-0-64-10 mdr: 2016-02-01 11:42:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:00 ip-10-0-0-11 mdr: 2016-02-01 11:42:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667819] [to:15742133382] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336581] [to:16175135824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336581] [to:16175135824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608471] [to:16065210769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500110] [to:14344715385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304157765] [to:+14159687265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15853318205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097441] [to:14388251288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063072705] [to:+16465135954] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-21 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003810201] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:01 ip-10-0-0-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022185097] [to:+19027030637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-11 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:19053291018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454590] [to:12182982645] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:01 ip-10-0-64-10 mdr: 2016-02-01 11:42:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046487] [to:17096384687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242387834] [to:16782088416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053754262] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506912049] [to:+13214067606] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19157305242] [to:+17194266789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286606] [to:19032926464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046954] [to:17787757217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986752] [to:16165584348] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152942464] [to:+16465138227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023634] [to:13344921175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022402201] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15134856805] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:02 ip-10-0-0-10 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775272] [to:14145094010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:02 ip-10-0-64-11 mdr: 2016-02-01 11:42:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077804] [to:17178777177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538526] [to:13344750876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BF0202] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003BF0201] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701097] [to:17879750226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:14697671420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048302281] [to:+17248030930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184804] [to:18169201381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856878604] [to:+19542994820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17145927167] [to:17149473429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374055266] [to:+14155706189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577348] [to:19312161136] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328950331] [to:+15165977875] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209280] [to:14109774735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17877091425] [to:+19172668837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149724698] [to:+18133081384] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:14697671420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:14697671420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063364556] [to:+14097977834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034196400] [to:+16465641653] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:03 ip-10-0-64-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954151] [to:13123308217] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-10 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474936560] [to:12266220964] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:03 ip-10-0-0-11 mdr: 2016-02-01 11:42:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143786953] [to:+16149228692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-20 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-11 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-11 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046696850] [to:+17604745133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-10 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-11 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-10 mdr: 2016-02-01 11:42:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572143255] [to:12515509761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:04 ip-10-0-64-11 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-11 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:04 ip-10-0-0-21 mdr: 2016-02-01 11:42:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035143296] [to:+18033104548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039400033] [to:+13476672011] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479200] [to:12565571419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12073912386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077323175] [to:+14076336962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015802469] [to:+14242769008] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204777461] [to:+15204338024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145066032] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477046128] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183590180] [to:+14694157255] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314220] [to:13303400233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405658184] [to:+15712103689] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-11 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:05 ip-10-0-64-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046985290] [to:+12048132929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062163] [to:17192012086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:05 ip-10-0-0-10 mdr: 2016-02-01 11:42:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479092277] [to:+16476911999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133896065] [to:19795752997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:13475987360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13852657536] [to:17028620093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027662698] [to:+14049004497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044552887] [to:+14043412617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173531778] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058553] [to:19028095639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-20 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447834465450] [to:+447418338903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125087039] [to:+18583603381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:19045081108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-0-10 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075958204] [to:+17187479075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:06 ip-10-0-64-11 mdr: 2016-02-01 11:42:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557497] [to:18634450608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084259245] [to:+15089668681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006547] [to:14143797109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742138660] [to:+15617666916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658838] [to:13476666411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:14843369384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139219797] [to:15136173633] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175280281] [to:13176284083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287682259] [to:+12138028122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587834] [to:19542548811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:07 ip-10-0-0-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622414530] [to:+19492981941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-11 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173713372] [to:+13476673492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:07 ip-10-0-64-10 mdr: 2016-02-01 11:42:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455575] [to:12316705241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12049514864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003A80201] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039261149] [to:+14692054976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783823085] [to:+14043412757] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044986726] [to:+12135455428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-20 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796898243] [to:+17323774752] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-11 mdr: 2016-02-01 11:42:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:08 ip-10-0-64-10 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136173633] [to:+12139219797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:08 ip-10-0-0-11 mdr: 2016-02-01 11:42:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705899009] [to:+15028041359] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669770] [to:13153166592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132704187] [to:+18133084627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173634801] [to:18178416647] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-20 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Argos] [to:+447451243998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047570] [to:14352298521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023209] [to:14185648084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677704646] [to:+12672732210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787516302] [to:+16784345445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790324] [to:17166278724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044129594] [to:+14242835857] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300847] [to:17657171409] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:18033797446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:09 ip-10-0-64-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-10 mdr: 2016-02-01 11:42:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:09 ip-10-0-0-11 mdr: 2016-02-01 11:42:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743271119] [to:+19142812515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009789] [to:17736570432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198490610] [to:+17199990780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862164805] [to:+13866015979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705405057] [to:+16784338466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740364] [to:+18107725109] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287774901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053807889] [to:+17053006350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015294409] [to:+17077507209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-10 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364671] [to:+19282325249] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746178] [to:18608195881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746178] [to:18608195881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-11 mdr: 2016-02-01 11:42:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805945] [to:12012057231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488127905] [to:+12482068499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:10 ip-10-0-0-11 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:10 ip-10-0-64-10 mdr: 2016-02-01 11:42:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044129594] [to:+14242835857] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079749072] [to:+13476191367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259331497] [to:+13478029416] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434722266] [to:+19714448234] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195713245] [to:+15672819681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:12344105575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132149816] [to:+14137289330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164761434] [to:+16463495960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096602489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297451] [to:13176791832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003A80202] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:11 ip-10-0-64-10 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043439575] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-10 mdr: 2016-02-01 11:42:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629316] [to:12673485804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:11 ip-10-0-0-11 mdr: 2016-02-01 11:42:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027230900] [to:+13025958569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407409] [to:16463729025] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009230] [to:18452838352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312919179] [to:16813133017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360651] [to:15733210463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708236616] [to:+16784968915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:15599170769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156182927] [to:12153597973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-10 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057809061] [to:+13052035776] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:12 ip-10-0-64-11 mdr: 2016-02-01 11:42:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:12 ip-10-0-0-11 mdr: 2016-02-01 11:42:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055391] [to:16013355493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405658184] [to:+15712103689] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053006975] [to:17058081229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038799243] [to:+19034595789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17033471962] [to:+12406857318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107782] [to:18506722698] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372388287] [to:+12139353547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755494] [to:12699413164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15869806689] [to:13472865088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-21 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838684] [to:14807986664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569841] [to:13097408338] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347527791] [to:+13137690636] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649615] [to:12079076686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:13 ip-10-0-64-10 mdr: 2016-02-01 11:42:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165330715] [to:+17162791539] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:13 ip-10-0-0-11 mdr: 2016-02-01 11:42:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255068] [to:+13364500364] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19184707903] [to:+18133208973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026485910] [to:+15865747895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152944865] [to:+19148609891] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673639] [to:12396451393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017446978] [to:+14018677237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193461] [to:17249317470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163677] [to:12489781172] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124671967] [to:+16465135490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812491359] [to:+17817863441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-11 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048189815] [to:+16474918976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:14 ip-10-0-0-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897798094] [to:15198353358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836143] [to:12157836203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253075] [to:16502293866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:14 ip-10-0-64-10 mdr: 2016-02-01 11:42:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:18649234759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-21 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206592] [to:18136100802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022853611] [to:12622374200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034927364] [to:+15873327226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002815] [to:18064484730] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-20 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523606717] [to:+15406286292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640602] [to:+17184166726] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207289] [to:12695695718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-10 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:12898792490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:15 ip-10-0-0-11 mdr: 2016-02-01 11:42:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:15 ip-10-0-64-11 mdr: 2016-02-01 11:42:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15069660025] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:16202382762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049050577] [to:+13219998506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021514] [to:19023296866] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009148] [to:16134380298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:16 ip-10-0-64-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433159357] [to:+18438720754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-11 mdr: 2016-02-01 11:42:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:16 ip-10-0-0-10 mdr: 2016-02-01 11:42:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-10 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049607761] [to:+19802094650] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12103719407] [to:+13053400200] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-0-11 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576477468] [to:+18046245416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16479862416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-10 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:17 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697515064] [to:15872252716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:19739437567] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473521057] [to:+16467381873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524800] [to:19402240967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:16155564957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052056196] [to:+15068040211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197586695] [to:+19199166005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103605040] [to:+17074099331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474969122] [to:14168380980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474714854] [to:+16475038816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063072705] [to:+16465135954] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329315609] [to:+19172592205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328297234] [to:+17323774532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-10 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12548337646] [to:+13479804010] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782787801] [to:+17726179413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-10 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199186] [to:12109884695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:18 ip-10-0-0-11 mdr: 2016-02-01 11:42:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:18 ip-10-0-64-11 mdr: 2016-02-01 11:42:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172736978] [to:+12174889141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407409] [to:16463729025] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816139] [to:13179656773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-11 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-11 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012301429] [to:+17743570465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:19 ip-10-0-0-11 mdr: 2016-02-01 11:42:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:19 ip-10-0-64-10 mdr: 2016-02-01 11:42:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392240490] [to:+13477145693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053761423] [to:+16474934459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14847979685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041324] [to:19022122441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475496363] [to:+15164724390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637096783] [to:+18637347022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528167172] [to:+15612408139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:20 ip-10-0-0-10 mdr: 2016-02-01 11:42:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199950584] [to:+18193035456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:20 ip-10-0-64-11 mdr: 2016-02-01 11:42:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142666688] [to:+16149964316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606398513] [to:+19783280081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137274644] [to:+14132715949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205518897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17205518897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547091594] [to:+13052037693] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740358] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450481] [to:15126325506] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-11 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698316675] [to:+17279165246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:21 ip-10-0-64-11 mdr: 2016-02-01 11:42:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:21 ip-10-0-0-10 mdr: 2016-02-01 11:42:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303090] [to:15708770580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475496363] [to:+15164724390] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294158102] [to:+17604748649] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-20 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447717782862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-20 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096788494] [to:+15873151764] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924760] [to:15404467349] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340233] [to:17578120807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:22 ip-10-0-64-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968135] [to:19199065439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-11 mdr: 2016-02-01 11:42:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622414530] [to:+19492981941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:22 ip-10-0-0-10 mdr: 2016-02-01 11:42:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454590] [to:12188411490] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345445] [to:16787516302] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868454] [to:12076360644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413913664] [to:+15415392867] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-21 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447766345123] [to:+447520620332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12403533331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641141] [to:16063105974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709357127] [to:+12543347318] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627808] [to:14057193413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:14047696882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268544] [to:13157307831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045738752] [to:+18133209005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074627790] [to:+14072681644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086622462] [to:+13479372396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-0-11 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-10 mdr: 2016-02-01 11:42:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:23 ip-10-0-64-11 mdr: 2016-02-01 11:42:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045108800] [to:+13126311474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643478865] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142553677] [to:+19715121585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327543] [to:12604491941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928081] [to:13062164573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671913] [to:+18572329035] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244855] [to:17576794591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144961281] [to:+13479193029] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082901378] [to:+19083824933] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548591] [to:13853336737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13376802182] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445131] [to:190183134047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696772] [to:19372107223] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:24 ip-10-0-64-10 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:24 ip-10-0-0-11 mdr: 2016-02-01 11:42:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16167106452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173531778] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-10 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-10 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736821] [to:12692174002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078595] [to:15142505276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902277] [to:12604450102] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-10 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-0-11 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12259210728] [to:+12139926405] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-10 mdr: 2016-02-01 11:42:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702399347] [to:+16465137619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:25 ip-10-0-64-11 mdr: 2016-02-01 11:42:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337493] [to:15743778019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704416168] [to:+15703977349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:12038333493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785954183] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19418704301] [to:19412683966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529615] [to:+14153408972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023206] [to:12676718488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787698846] [to:+16784123990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022711741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807714711] [to:+14694061017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348417] [to:14703314915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166005] [to:19197586695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370408] [to:18454898503] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849084081] [to:+18729995999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049514864] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849353] [to:12526196095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502789988] [to:+14249996713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038046358] [to:+19176635891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023442502] [to:+13024398953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15168282027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069621126] [to:+14706732979] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-10 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:26 ip-10-0-64-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029648] [to:15065430730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:26 ip-10-0-0-11 mdr: 2016-02-01 11:42:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599170769] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610496] [to:15058041546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016881709] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252458250] [to:+14692053102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094776624] [to:+16095434564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899710511] [to:+19894557043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:17737326547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082901378] [to:+19083824933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142665583] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144301575] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805173586] [to:+15874087003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528040806] [to:+16825007350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162185329] [to:+13134688705] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:14087848721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043098] [to:16138980936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:27 ip-10-0-0-10 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:27 ip-10-0-64-11 mdr: 2016-02-01 11:42:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563839351] [to:+13478999164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12168040043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029211] [to:13162072718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:16394718042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168235498] [to:+12138068567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517869237] [to:+16513338532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246309321] [to:+17249939035] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17074985845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:28 ip-10-0-64-10 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102840665] [to:+17186755809] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:28 ip-10-0-0-11 mdr: 2016-02-01 11:42:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679669832] [to:12679050420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:19173463619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867598637] [to:+17274937471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013443667] [to:+12016214639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477046128] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028942887] [to:+12133752245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:19374232067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:19374232067] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-64-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809181] [to:19375646044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-11 mdr: 2016-02-01 11:42:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212674] [to:13049941532] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:29 ip-10-0-0-10 mdr: 2016-02-01 11:42:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188590788] [to:+19172669077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916182] [to:14782861539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853318205] [to:+15852824194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:17577766542] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409732] [to:19059282776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371820] [to:17692323691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:14087848721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438505645] [to:+12136036349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286292] [to:12523606717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013614450] [to:+17133896673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192642290] [to:+15617664348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:30 ip-10-0-0-10 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:30 ip-10-0-64-11 mdr: 2016-02-01 11:42:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181108] [to:17029317651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504439242] [to:+17277568024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466838] [to:17035868245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-20 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402041912] [to:+12408924904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762072620] [to:+17604748400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:31 ip-10-0-0-10 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188536414] [to:18184739207] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041324] [to:19022120859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-11 mdr: 2016-02-01 11:42:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:31 ip-10-0-64-10 mdr: 2016-02-01 11:42:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808142] [to:18104937147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805168] [to:12703000482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215969] [to:14174996390] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17862359082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AE0201] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-10 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523364] [to:12706013187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-10 mdr: 2016-02-01 11:42:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477037596] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:32 ip-10-0-0-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18144751047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:32 ip-10-0-64-11 mdr: 2016-02-01 11:42:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429207] [to:16092318917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698316675] [to:+17279165246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237766815] [to:+14144096106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762024578] [to:+13202897846] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803713] [to:18607710725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137661518] [to:+18133082146] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281313] [to:19736870594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19564593464] [to:+13015699274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056328982] [to:+13218328096] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926668] [to:19123419378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-10 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952550] [to:16475882854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:33 ip-10-0-64-11 mdr: 2016-02-01 11:42:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838666] [to:19014882839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-11 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:33 ip-10-0-0-10 mdr: 2016-02-01 11:42:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000796] [to:15142675031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048124922] [to:+13473799320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141825] [to:18192100085] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:19893190095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817041445] [to:17807187255] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194414320] [to:+12897681340] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802782996] [to:+13479190910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497435] [to:19062505675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916182] [to:14782861539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704416168] [to:+15703977349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999425] [to:12287120384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853870474] [to:+17605898373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:34 ip-10-0-64-10 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17862359082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003AE0202] -Feb 1 11:42:34 ip-10-0-0-11 mdr: 2016-02-01 11:42:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:34 ip-10-0-0-10 mdr: 2016-02-01 11:42:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996231] [to:12313424954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601672] [to:17729406961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183389256] [to:+13473438491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014860131] [to:+13392305000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287382936] [to:+12536422956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287382936] [to:+12536422956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346427556] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760874] [to:17654371439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176284083] [to:+13175280281] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360104] [to:16304845593] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-20 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147787591] [to:+18133083334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194910914] [to:+17193561022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14355139348] [to:+14842842572] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:35 ip-10-0-0-11 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:35 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030930] [to:13048302281] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038509230] [to:+12134784829] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155706189] [to:19374055266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019001577] [to:+19014448791] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046389156] [to:+17726177470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-10 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:36 ip-10-0-0-10 mdr: 2016-02-01 11:42:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:36 ip-10-0-64-11 mdr: 2016-02-01 11:42:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167730302] [to:+16163266122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927018] [to:12403544403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212674] [to:13049941532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038509230] [to:+12134784829] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484487] [to:+13024398063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176815198] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069944387] [to:+14703335820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192121344] [to:+14197767486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:37 ip-10-0-0-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-11 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106092219] [to:+16784345377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:37 ip-10-0-64-10 mdr: 2016-02-01 11:42:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416003529] [to:+19412642471] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507827] [to:12253283230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702805192] [to:+19142812809] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507827] [to:12253283230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783633] [to:18508438473] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515509761] [to:+16572143255] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670501] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165584348] [to:+17279986752] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:14015480747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12029044955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138046003] [to:+13476304492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389033] [to:18608799864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195649842] [to:+12135295275] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-21 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432618144] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-11 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336581] [to:17816545212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384660] [to:14803277294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:38 ip-10-0-64-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:38 ip-10-0-0-10 mdr: 2016-02-01 11:42:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066070637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262700999] [to:+12264559394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13302065238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647122351] [to:+17636560125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303897474] [to:+15308631786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154815063] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874093635] [to:15877789009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-11 mdr: 2016-02-01 11:42:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-20 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:39 ip-10-0-64-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:39 ip-10-0-0-10 mdr: 2016-02-01 11:42:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003670503] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201211] [to:+19715129502] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109993519] [to:+17029565560] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028122] [to:18287682259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797151390] [to:+19177376248] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208083328] [to:+15103136376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107141627] [to:+14842842883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15714454159] [to:14344142097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472865088] [to:+15869806689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15307188470] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003670504] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050649] [to:19026311089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018782896] [to:+19014449167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819681] [to:14195713245] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:40 ip-10-0-64-10 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-10 mdr: 2016-02-01 11:42:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:40 ip-10-0-0-11 mdr: 2016-02-01 11:42:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722697] [to:13046739808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-20 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447784135481] [to:+447451230405] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754953176] [to:+15754497605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003670505] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032833] [to:17246222973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19367761364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013355493] [to:+13477055391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025359078] [to:+19149089284] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072766] [to:15144428148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609326] [to:16205109827] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402601628] [to:+15406286191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136266] [to:12296696108] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177998110] [to:+14433453821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-0-10 mdr: 2016-02-01 11:42:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139122835] [to:12049976994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-10 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:41 ip-10-0-64-11 mdr: 2016-02-01 11:42:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736474300] [to:+13126142617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737491159] [to:+13126310350] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168380980] [to:+16474969122] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175280281] [to:13176284083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996231] [to:12313424954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055380] [to:12146623179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047265298] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168355524] [to:+12167990702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-20 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182105146] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869196] [to:17325673479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13218050473] [to:+13217308717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-10 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345174740] [to:+13305779688] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:42 ip-10-0-64-11 mdr: 2016-02-01 11:42:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:42 ip-10-0-0-11 mdr: 2016-02-01 11:42:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184162588] [to:+14143863986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19203443458] [to:+19202217075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109884695] [to:+13479199186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029893708] [to:+19027062829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164811] [to:19197501012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432636] [to:19178621765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579210174] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-21 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875501052] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:43 ip-10-0-0-11 mdr: 2016-02-01 11:42:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245416] [to:17576477468] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:43 ip-10-0-64-10 mdr: 2016-02-01 11:42:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016918972] [to:+19015042897] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:13014376809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228692] [to:16143786953] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12566527066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143319115] [to:+13479804237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143037349] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17162085991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035103] [to:18198173777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-10 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974372] [to:15858131127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-64-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-11 mdr: 2016-02-01 11:42:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974372] [to:15858131127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:44 ip-10-0-0-10 mdr: 2016-02-01 11:42:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024979487] [to:+16233839692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-21 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241882] [to:+447437817788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064216187] [to:+14706731927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17276449068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852304331] [to:+15852823468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204139] [to:17165724987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-20 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447771591716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-11 mdr: 2016-02-01 11:42:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:45 ip-10-0-64-11 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794166] [to:17024498554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:45 ip-10-0-0-10 mdr: 2016-02-01 11:42:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045450] [to:19024329419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192386784] [to:+18193036926] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433233] [to:14845749822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868279] [to:16068138691] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868279] [to:16068138691] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632802451] [to:+18638553405] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077253] [to:15147962954] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272146] [to:+18133243011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899711] [to:19803190991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006256] [to:13169280224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038073907] [to:+14694061366] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138292191] [to:+13137235940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006256] [to:13169280224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:46 ip-10-0-64-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-11 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15145716108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203934] [to:14102699162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:46 ip-10-0-0-10 mdr: 2016-02-01 11:42:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18023455609] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-10 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774752] [to:14796898243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237766819] [to:+12243103325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058041546] [to:+19172610496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874093635] [to:15877789009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:47 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:47 ip-10-0-0-10 mdr: 2016-02-01 11:42:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103858115] [to:+15103407408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239364] [to:16166101611] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-21 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473792] [to:12676704753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884877] [to:15088183998] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-21 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451239471] [to:+447502638785] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033797446] [to:+13477962771] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072626798] [to:15072027409] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-20 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940740355] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314915] [to:+16784348417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12093547310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515384] [to:12087498161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16367758222] [to:+13479788088] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-11 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199486019] [to:+19498771485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17029177090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:48 ip-10-0-64-10 mdr: 2016-02-01 11:42:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17029177090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:48 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17029177090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797442] [to:17404072380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632414887] [to:+18639493307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555265] [to:17206867545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19038011880] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:12035728166] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132977316] [to:+17097000514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001032] [to:18643478865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068031100] [to:15063218850] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440454] [to:15185246372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157020] [to:13306159829] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17472339012] [to:18122905873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514566955] [to:+17142612543] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939213] [to:12153136417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372107223] [to:+14156696772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:49 ip-10-0-0-11 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12537223860] [to:+13478684528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:49 ip-10-0-64-10 mdr: 2016-02-01 11:42:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746502] [to:13153551335] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:18034047312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:18034047312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:18034047312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911764] [to:16134064935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045453] [to:14164337947] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007572] [to:18595768865] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356149] [to:14792645435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354528] [to:14126527470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664348] [to:19192642290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:19072059643] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196060331] [to:+19199161771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499766] [to:19893928503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-64-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-21 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447971136440] [to:+447418320991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12245880995] [to:+18722535840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-10 mdr: 2016-02-01 11:42:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:50 ip-10-0-0-11 mdr: 2016-02-01 11:42:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000796] [to:15142675031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248739] [to:17042777718] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135356668] [to:+19177328276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19026907580] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345473539] [to:+13477982344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572566262] [to:+16149964591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-10 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929302] [to:13063708066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:51 ip-10-0-0-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046340208] [to:+17194264993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-11 mdr: 2016-02-01 11:42:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:51 ip-10-0-64-10 mdr: 2016-02-01 11:42:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12408010041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653277796] [to:+19142815124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748084] [to:18594818527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074627790] [to:+14072681644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16517476320] [to:+16129305928] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370805] [to:13302173550] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576752990] [to:+13369383792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104302167] [to:+16099040110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19525002369] [to:+18584804721] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177576253] [to:+14694237772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748649] [to:12294158102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086866] [to:12522992321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12408010041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12013005417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-20 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802839989] [to:+447418336473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-10 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845508663] [to:+14844165808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:17055001026] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-10 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:52 ip-10-0-0-11 mdr: 2016-02-01 11:42:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:52 ip-10-0-64-11 mdr: 2016-02-01 11:42:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086156275] [to:+13025851148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220928] [to:18457647100] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154605] [to:+19703158397] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053006517] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292463599] [to:+16463490288] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-64-11 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927018] [to:15713592896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-11 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141825] [to:18192100085] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-10 mdr: 2016-02-01 11:42:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183156552] [to:+18108527731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:53 ip-10-0-0-20 mdr: 2016-02-01 11:42:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627312] [to:+447592317570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-21 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704234841] [to:+15703974591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668623] [to:13603531209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342213193] [to:+12138225769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009908] [to:14183917532] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199486019] [to:+19498771485] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473792] [to:12674016124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438630307] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001032] [to:17047265298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:54 ip-10-0-0-10 mdr: 2016-02-01 11:42:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:54 ip-10-0-64-11 mdr: 2016-02-01 11:42:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680704] [to:16477060906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023237021] [to:+16467018982] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049976994] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16307859982] [to:15743471036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059063716] [to:+16052318797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639343415] [to:+17748557080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197901535] [to:+18193036977] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041874] [to:+19543141918] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015904424] [to:19734186591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148899634] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198072] [to:+19175630241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186327169] [to:+14698740317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048803196] [to:+17248032407] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894194] [to:+17744255046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640602] [to:+17184166726] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523704970] [to:+18046242498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049514864] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309494914] [to:+13302374276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562260174] [to:+12132958488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654079256] [to:+12135593889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640602] [to:+17184166726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19037871897] [to:+19034592263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073912386] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613054804] [to:+12816433491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604061918] [to:+13609727116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003670502] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176599000] [to:+13477988918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022475063] [to:+19028018663] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076868] [to:17316959678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027453] [to:16139869445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19367761364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198173777] [to:+18193035103] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163856] [to:19195204534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560125] [to:18647122351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-11 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:55 ip-10-0-0-11 mdr: 2016-02-01 11:42:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747258662] [to:+15102774005] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:55 ip-10-0-64-10 mdr: 2016-02-01 11:42:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952550] [to:16472923006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048030690] [to:+15817023437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009935] [to:14185545799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19177418522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672968594] [to:+16503001215] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805308] [to:19178037638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17867978887] [to:+17736668818] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-10 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526647] [to:19187044731] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-0-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15853095346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:56 ip-10-0-64-11 mdr: 2016-02-01 11:42:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734077] [to:17064425932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-20 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245258125] [to:+17248035761] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-20 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447763748690] [to:+447451240616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153100560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14057193413] [to:+18452627808] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699413164] [to:+12695755494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-10 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:57 ip-10-0-64-10 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-21 mdr: 2016-02-01 11:42:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:57 ip-10-0-0-11 mdr: 2016-02-01 11:42:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076360644] [to:+13477868454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977303] [to:15707060350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656359379] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023296866] [to:+19027021514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:14136487476] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13068806758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:18156441840] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651548] [to:12507184742] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056109303] [to:+14088683413] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500033B0301] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609447] [to:12027047728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286130] [to:15403925015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133634204] [to:+16139099260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-11 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154892639] [to:+13475087679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:58 ip-10-0-0-10 mdr: 2016-02-01 11:42:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:58 ip-10-0-64-10 mdr: 2016-02-01 11:42:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168825125] [to:+12169297422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-21 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:18503261856] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314614669] [to:+17344366233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045453] [to:14164337947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460860] [to:17654079610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:18137935715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303187] [to:13473105952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12028440067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-0-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168282027] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733952] [to:19738689832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-11 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874704] [to:17656694418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199486019] [to:+19498771485] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:42:59 ip-10-0-64-10 mdr: 2016-02-01 11:42:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482643] [to:17049311654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732006] [to:17655132203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15853091811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897752297] [to:+12892756998] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161438] [to:19193564475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595835673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477046128] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:00 ip-10-0-64-11 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:00 ip-10-0-0-10 mdr: 2016-02-01 11:43:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499766] [to:19893928503] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242140336] [to:15409233599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126207633] [to:+13478022579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19417132944] [to:+13603138930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842455] [to:14848491695] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373012] [to:13252605306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637313] [to:13173842806] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187526877] [to:+16079687320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637313] [to:13173842806] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539385] [to:16785050109] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287385790] [to:+14806664660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993244] [to:12562766986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585047570] [to:14352298521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:01 ip-10-0-0-11 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:01 ip-10-0-64-10 mdr: 2016-02-01 11:43:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715123720] [to:15039135541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095415037] [to:+18583048201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127152993] [to:+15172586622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012885827] [to:+18133086540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099384850] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:02 ip-10-0-64-11 mdr: 2016-02-01 11:43:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:02 ip-10-0-0-10 mdr: 2016-02-01 11:43:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481329] [to:17623596566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809094707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19806898006] [to:+16172132686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158916482] [to:12525649037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:03 ip-10-0-64-10 mdr: 2016-02-01 11:43:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:03 ip-10-0-0-11 mdr: 2016-02-01 11:43:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19255654406] [to:+15102548464] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567505171] [to:+18328044413] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060132] [to:17856151794] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-10 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156775] [to:15672131582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-10 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:04 ip-10-0-0-11 mdr: 2016-02-01 11:43:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174812422] [to:+16178634097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325739] [to:15744040445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:04 ip-10-0-64-11 mdr: 2016-02-01 11:43:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674240776] [to:+12678676882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530731] [to:13183218385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968915] [to:17708236616] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187641] [to:19176269550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19363911351] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-20 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056109303] [to:+14088683413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033B0303] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653301185] [to:+13476568973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653301185] [to:+13476568973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12298157523] [to:+15103227079] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572006741] [to:+16178634251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065243740] [to:+14703334069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034568207] [to:+13479787931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18022467053] [to:+13477697617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077581565] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408479983] [to:+16233838794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047707689] [to:+13369383380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526196095] [to:+17636849353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:19088840790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-64-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-11 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:05 ip-10-0-0-10 mdr: 2016-02-01 11:43:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470286] [to:17096850923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999601] [to:14702199441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176503913] [to:+13475187149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973261] [to:15704990557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049817859] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022850301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037855957] [to:+15713273942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:14046431248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476331128] [to:+17053007756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195713245] [to:+15672819681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779688] [to:12345174740] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703041573] [to:+13479789334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:06 ip-10-0-0-10 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177481486] [to:+19172661315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:06 ip-10-0-64-11 mdr: 2016-02-01 11:43:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-10 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433233] [to:19313084869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185648084] [to:+15817023209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102971614] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193590555] [to:12514012185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-10 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988228] [to:528641003638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-10 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:07 ip-10-0-64-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19715635936] [to:+13052037700] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:07 ip-10-0-0-11 mdr: 2016-02-01 11:43:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729025] [to:+18459407409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014448280] [to:19019495703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482140] [to:17067689295] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974372] [to:15858131127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476693] [to:19544514652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174966339] [to:+13479192611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495778] [to:17709064464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163818] [to:19197501179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058374] [to:19025992885] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076702512] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477669415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:08 ip-10-0-0-11 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076702512] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:08 ip-10-0-64-10 mdr: 2016-02-01 11:43:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134856805] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516430905] [to:+17547774239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] jasna mason: perfect condition? |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862777220] [to:+15865748143] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632417044] [to:+14072160591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008758] [to:14803002892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874093635] [to:15877789009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612318742] [to:14144301575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12025203808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13303566625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076424] [to:12604100393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125250871] [to:+13055018381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-21 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001673] [to:12498788642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614972488] [to:+16614418253] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-11 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508438473] [to:+12134783633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-64-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:09 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-21 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-21 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520628480] [to:+447402280627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722679093] [to:+17723618250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991330] [to:+15103137721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893019] [to:15412808805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-64-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15405225957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024813700] [to:+14803008009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259717] [to:13137691984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-10 mdr: 2016-02-01 11:43:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15093182063] [to:19174102130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:10 ip-10-0-0-11 mdr: 2016-02-01 11:43:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874107948] [to:15879264039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086588] [to:15879840441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541871] [to:12503181888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500364] [to:13362255068] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13376802182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144428148] [to:+14388072766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192001436] [to:+12174889161] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536404031] [to:+12065196309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-10 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12269776123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:11 ip-10-0-0-10 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015802469] [to:+14242769008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:11 ip-10-0-64-11 mdr: 2016-02-01 11:43:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373055064] [to:+15103136226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546058770] [to:+18638555881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127152993] [to:+15172586622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035103] [to:18198173777] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194807978] [to:17192044711] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:13132122692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603333015] [to:+19172610730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017497004] [to:+14012038482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14438630307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048003813] [to:+14156498442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746761] [to:17726432968] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852274686] [to:+15852823884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097641170] [to:+12134785308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:12 ip-10-0-0-11 mdr: 2016-02-01 11:43:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403140890] [to:+17402017179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771073] [to:14095403898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528638] [to:14195775686] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:12 ip-10-0-64-10 mdr: 2016-02-01 11:43:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201996] [to:14102516934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201996] [to:14102516934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17545813721] [to:+19292689406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512038667] [to:+19093431028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194805677] [to:+12138027471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17162539227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543141396] [to:18646219173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14103702943] [to:+14437202243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-11 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155127072] [to:13173842806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-64-10 mdr: 2016-02-01 11:43:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15853318205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-11 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143348690] [to:+19142062698] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:13 ip-10-0-0-10 mdr: 2016-02-01 11:43:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13166804610] [to:+14157995573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787193942] [to:+12138610820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17135015445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17135015445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047265298] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072057152] [to:+19148609669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819988854] [to:+15817003403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142518834] [to:+17142153623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015621840] [to:19012817927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373087166] [to:+19177730129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:14 ip-10-0-64-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604027450] [to:+18582401880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-11 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:14 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708856453] [to:+16465130562] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691385] [to:18434786476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742048784] [to:15164992450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16173419583] [to:18436371247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684520] [to:17606009753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15405225957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155673869] [to:+15865748059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077255004] [to:+13473899167] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:15 ip-10-0-0-11 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:15 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437303613] [to:+19172669387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042204] [to:19059064882] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763453281] [to:+12139297141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239993174] [to:+18572407060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:13216848694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792648288] [to:+19794265196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168274491] [to:+17053025637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-21 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077323175] [to:+14076336962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483858] [to:15636634333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024895392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638014855] [to:+18637347466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315070365] [to:+13477736003] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329471186] [to:+17323774964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-11 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274477] [to:+14706735615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12542338153] [to:12547494846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:16 ip-10-0-64-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:17405840563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308994] [to:13216820929] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:16 ip-10-0-0-10 mdr: 2016-02-01 11:43:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106082885] [to:+12105718933] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047675847] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314677] [to:14044141099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842455] [to:14848491695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407720666] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708856453] [to:+16465130562] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173710401] [to:+18133316695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-21 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17199990780] [to:17198490610] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:13142978473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:17 ip-10-0-64-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12136337790] [to:+16162390329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168166307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485222] [to:19142075990] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-11 mdr: 2016-02-01 11:43:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:17 ip-10-0-0-10 mdr: 2016-02-01 11:43:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13477856607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252411696] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687674] [to:19512243691] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142675031] [to:+15817000796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402945258] [to:+14122301827] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752683878] [to:+15058006635] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026099] [to:17055289374] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362014822] [to:+19365878311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-11 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-21 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447788212505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-11 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708856453] [to:+16465130562] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:18 ip-10-0-0-10 mdr: 2016-02-01 11:43:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081774] [to:18642056698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:18 ip-10-0-64-10 mdr: 2016-02-01 11:43:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403090790] [to:+12169294494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102381] [to:17053622392] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:15144373555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042264771] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137398871] [to:+14097977835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109921774] [to:+16109105747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827532] [to:14133285333] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053302134] [to:+16474955627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:19 ip-10-0-0-10 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:19 ip-10-0-64-11 mdr: 2016-02-01 11:43:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321430] [to:19198856071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-20 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447474709739] [to:+447451232017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377035100] [to:+12138026518] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038F0201] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:19255654406] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870359] [to:17746349172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12017421209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302173550] [to:+13302370805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673606] [to:12299771178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514437871] [to:+17603145327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706959501] [to:+13478968737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038F0202] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764402] [to:18035076398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336362] [to:15208184539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327594592] [to:+17133099432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-10 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155207041] [to:+12267983065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-64-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:20 ip-10-0-0-11 mdr: 2016-02-01 11:43:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739040658] [to:+15169260618] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633262894] [to:+19417256412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14122302039] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003B70202] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704609196] [to:+15703977361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913174] [to:16478524668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143173246] [to:+18312887941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027453] [to:14137527028] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138227] [to:13152942464] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277886] [to:13146859829] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-10 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022796] [to:+19142060972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-10 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:21 ip-10-0-64-11 mdr: 2016-02-01 11:43:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047974513] [to:+16784338820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:21 ip-10-0-0-11 mdr: 2016-02-01 11:43:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777515] [to:18593242883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234539515] [to:+18572402015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496786] [to:19177368581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074464156] [to:+16474937630] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605735756] [to:17606412352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196658453] [to:+18193032234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607710725] [to:+13479803713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739168] [to:16087907762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516584] [to:19042501370] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493582804] [to:+18678883672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190634] [to:15172408299] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753612115] [to:+15758258609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096937176] [to:+17097019286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-10 mdr: 2016-02-01 11:43:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:22 ip-10-0-64-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:22 ip-10-0-0-11 mdr: 2016-02-01 11:43:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:17069790338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14146998126] [to:+14148887417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528709] [to:12164159542] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691385] [to:18433292693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787339012] [to:+12139297989] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122906189] [to:+14122301883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138761895] [to:+16136041863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17084462752] [to:+18722258017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-11 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:23 ip-10-0-64-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167641] [to:14099510716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237806] [to:19562263332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:23 ip-10-0-0-10 mdr: 2016-02-01 11:43:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697617] [to:18022467053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023209] [to:14185648084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377035100] [to:+12138026518] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803277294] [to:+16026384660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999339] [to:15416619185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19169559010] [to:+19162455935] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16314808059] [to:16318138327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553405] [to:18632802451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216634428] [to:+14072163400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472833173] [to:+13477691255] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896844] [to:14053522267] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-0-10 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18284900215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:24 ip-10-0-64-11 mdr: 2016-02-01 11:43:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069937943] [to:13064803280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12609092132] [to:+12604077012] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654079610] [to:+17659460860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15066070637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17037855957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-10 mdr: 2016-02-01 11:43:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:25 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:25 ip-10-0-0-11 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145669101] [to:+14387923817] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-21 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528430] [to:18109623410] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19048992774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864398021] [to:+18637347395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184563224] [to:+14387925654] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604015] [to:18583756156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602514470] [to:+12342517699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033120989] [to:+17256661224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126527470] [to:+14125354528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024724] [to:16138809727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13207610888] [to:+15632317298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:18033797446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930136] [to:13069990114] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12017421209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095403898] [to:+14097771073] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:26 ip-10-0-0-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-11 mdr: 2016-02-01 11:43:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708824527] [to:+19174094422] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:26 ip-10-0-64-10 mdr: 2016-02-01 11:43:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13126142079] [to:13312133446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-10 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-21 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335880] [to:+447808801416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027471] [to:17194805677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:27 ip-10-0-0-11 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176815198] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-10 mdr: 2016-02-01 11:43:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:27 ip-10-0-64-10 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097308650] [to:+16474916487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675152897] [to:+12679525664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+16474951179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145669101] [to:+14387923817] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16148002297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328984822] [to:+18326505514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017096] [to:17407279687] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002515] [to:17209894553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159829] [to:+13309157020] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865633032] [to:+13139607504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108598113] [to:+19292009028] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19036193309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746502] [to:13153551335] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783633] [to:18508438473] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852109] [to:13076963450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138555264] [to:+12139353883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:28 ip-10-0-0-10 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:28 ip-10-0-64-11 mdr: 2016-02-01 11:43:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787608692] [to:+16785867720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740370] [to:+14096833360] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] peiseubug injeungkodeu-ibnida https://fb.com/l/1LpP6ZylG96cRqs #fb] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:19022100037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121585] [to:19142553677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260433] [to:19177439513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-21 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624741] [to:+447532296679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:14047813665] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19363911351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19177418522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604015] [to:12402809900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053943010] [to:18052753043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049003661] [to:14042464764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-11 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026325430] [to:+13024991309] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:29 ip-10-0-64-10 mdr: 2016-02-01 11:43:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067038200] [to:+14158536166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:29 ip-10-0-0-11 mdr: 2016-02-01 11:43:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498788642] [to:+12497001673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787553486] [to:+14704446753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304566998] [to:+19542994578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193837358] [to:+18194122203] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159687944] [to:14152650610] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032207402] [to:+12135593172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058286954] [to:+12262409601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094868] [to:13476382809] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18183875136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18183875136] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-20 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132773462] [to:+16477994212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864398021] [to:+18637347395] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031725] [to:19025780762] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074124808] [to:+17862200484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:30 ip-10-0-64-11 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:30 ip-10-0-0-10 mdr: 2016-02-01 11:43:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:14153406100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074124808] [to:+17862200484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028620093] [to:+13852657536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063708066] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17028620093] [to:+13852657536] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:19736007159] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-21 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447402280627] [to:+447520628480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234946926] [to:+16233839155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046814229] [to:+12138064199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652024187] [to:+18653471497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062320410] [to:+15068040038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-11 mdr: 2016-02-01 11:43:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-11 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182243904] [to:+19033076673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:31 ip-10-0-64-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:31 ip-10-0-0-10 mdr: 2016-02-01 11:43:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732693] [to:12157306905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138040644] [to:+15862488189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049817859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392359154] [to:+13218328336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018599] [to:15044914939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412928] [to:18282151813] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025391] [to:19123320219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16475267078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803646879] [to:+13479372591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-10 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389264499] [to:+16474941247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-10 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:32 ip-10-0-0-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:32 ip-10-0-64-11 mdr: 2016-02-01 11:43:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477190423] [to:+12264559572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954504] [to:14434886828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037142936] [to:+13069928240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168040043] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14053522267] [to:+12132896844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17577485493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596639022] [to:16504416950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805189] [to:15183662834] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:18282012763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027453] [to:15164051759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163818] [to:19193955145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139212089] [to:15742612080] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973143] [to:15707289087] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093547310] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847958440] [to:+16109102832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015617] [to:16477948267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378609] [to:17312253441] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:33 ip-10-0-0-10 mdr: 2016-02-01 11:43:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483858] [to:15636634333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:33 ip-10-0-64-11 mdr: 2016-02-01 11:43:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076232] [to:14785954183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:14048201620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604282056] [to:+18609710327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193501043] [to:15593007069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081522] [to:12088719131] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202522] [to:18034102564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610305] [to:14349171025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042910] [to:17807929019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252532500] [to:+13475087081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836743] [to:19893324379] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522862692] [to:+14242868328] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868599] [to:13144580246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531341] [to:17652743328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137783156] [to:+13193837212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313880] [to:17402436096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482172618] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-21 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520621972] [to:+447773775324] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243945] [to:16624972491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630241] [to:17743198072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-11 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:34 ip-10-0-0-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:34 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540769] [to:16046006131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294158102] [to:+17604748649] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787606441] [to:+14049004021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061593] [to:13172583876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363667772] [to:+13369383863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17809094707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635891] [to:17865641400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868004] [to:17404240473] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:35 ip-10-0-64-11 mdr: 2016-02-01 11:43:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:35 ip-10-0-0-10 mdr: 2016-02-01 11:43:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814499] [to:16158533590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899383393] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734892989] [to:+13479808547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414681796] [to:+19417256138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364637] [to:16152034518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-21 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038024315] [to:+14697239506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019485] [to:19024100570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:36 ip-10-0-0-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:36 ip-10-0-64-10 mdr: 2016-02-01 11:43:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851148] [to:15086156275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562888864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047365420] [to:+12015805911] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12894893390] [to:+12897793277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17802007629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868941] [to:13132084540] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868316] [to:13145561837] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802322] [to:15169839781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:37 ip-10-0-64-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:37 ip-10-0-0-11 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742048784] [to:15164992450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306103659] [to:+13479139459] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803646879] [to:+13479372591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672131582] [to:+19703156775] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477037596] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314614669] [to:+17344366233] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398063] [to:15407484487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-64-10 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147900052] [to:+19175809158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17037855957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-10 mdr: 2016-02-01 11:43:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053807274] [to:+16474952941] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:38 ip-10-0-0-11 mdr: 2016-02-01 11:43:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017075644] [to:+14342340680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312238837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874952] [to:13157083699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062320410] [to:+15068040038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494110] [to:13137041490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19047623106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024092] [to:13085207301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677763411] [to:+12677533749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866497] [to:17177588834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162085991] [to:+17162790890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194630595] [to:+14197459574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233885448] [to:+13477416899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604282056] [to:+18609710327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142978473] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:39 ip-10-0-0-11 mdr: 2016-02-01 11:43:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19137250330] [to:+13479478192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506275] [to:15672316422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:39 ip-10-0-64-10 mdr: 2016-02-01 11:43:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072287] [to:12525323333] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-20 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003840401] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14509310154] [to:+14388075269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475517294] [to:+16474913896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691984] [to:+18722259717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179239] [to:12767320118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:40 ip-10-0-0-10 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987800] [to:17206921693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:40 ip-10-0-64-11 mdr: 2016-02-01 11:43:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314677] [to:14044141099] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-21 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003800202] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:16784850765] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043653320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-21 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599823537] [to:+19543142589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477721187] [to:+12264555781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:41 ip-10-0-64-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-20 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17608671380] [to:17605379866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-10 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-20 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:41 ip-10-0-0-11 mdr: 2016-02-01 11:43:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156498949] [to:16194514605] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-20 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232156] [to:+447938255320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593898] [to:16046140894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102725308] [to:+17633015909] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-11 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316702659] [to:+15109722684] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16198245807] [to:18582528360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853318205] [to:+15852824194] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:42 ip-10-0-0-10 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083510] [to:15026449163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-11 mdr: 2016-02-01 11:43:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:42 ip-10-0-64-10 mdr: 2016-02-01 11:43:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035942610] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018982] [to:18023237021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725202] [to:15593688234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-20 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036501318] [to:+19292689619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163818] [to:19193955145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-21 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003810202] -Feb 1 11:43:43 ip-10-0-64-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718933] [to:12106082885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-10 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-10 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:43 ip-10-0-64-11 mdr: 2016-02-01 11:43:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335576] [to:17063614820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:43 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125816462] [to:+17036466932] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103070507] [to:17066196237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787608692] [to:+16784123615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12674543353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12674543353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550106] [to:14439939162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546526983] [to:13365211379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064199] [to:17046814229] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177576253] [to:+14694237772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-0-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136100802] [to:+18133206592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135516737] [to:+12138064921] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-11 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:44 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018599] [to:15047620075] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126325506] [to:+16039450481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147550270] [to:+13149320402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023830] [to:13372401378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-21 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003840402] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046195] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383863] [to:13363667772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787599427] [to:+17702005021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037414913] [to:+15873289576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024895392] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896847646] [to:+12262437202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087907762] [to:+19177739168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062265799] [to:+12136349983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+12677939257] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003BD0201] -Feb 1 11:43:45 ip-10-0-64-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862541] [to:+13477866849] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13076963450] [to:+17205852109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-10 mdr: 2016-02-01 11:43:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:45 ip-10-0-0-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:45 ip-10-0-64-11 mdr: 2016-02-01 11:43:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166403118] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125800] [to:12253620448] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-20 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159731] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434786476] [to:+16466691385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17788739747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:15097653141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:46 ip-10-0-0-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169986673] [to:+17162791271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:46 ip-10-0-64-10 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216848694] [to:+19177731867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434308] [to:12027925970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13376802182] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042326682] [to:+13477972702] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14165870239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072668571] [to:+19172834264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857751218] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236379759] [to:+18102218267] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063990900] [to:+14703335249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:18156441840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523437073] [to:+14043900270] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077390] [to:14383994864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220566] [to:19547293495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-11 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712797528] [to:+17029565560] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-11 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19782736823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19782736823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16024711725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:47 ip-10-0-0-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:47 ip-10-0-64-10 mdr: 2016-02-01 11:43:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918489] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836048] [to:16628013894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643478865] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362544616] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12535170102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19377188678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-10 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:48 ip-10-0-64-11 mdr: 2016-02-01 11:43:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:48 ip-10-0-0-11 mdr: 2016-02-01 11:43:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061352] [to:18705573149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17135167180] [to:+17133526566] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678791548] [to:+12679525258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708325220] [to:+15703974030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204814489] [to:+12092511510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532724] [to:19367761364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15853318205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167418] [to:19364270328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18049318274] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-10 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:49 ip-10-0-64-11 mdr: 2016-02-01 11:43:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183852214] [to:+19142063189] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:49 ip-10-0-0-11 mdr: 2016-02-01 11:43:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13617012865] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072668571] [to:+19172834264] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055702721] [to:+17053005385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-20 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508020511] [to:+447451239815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175983842] [to:+19142795095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:13476707184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158540] [to:17246992020] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884784] [to:13606693181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008114] [to:15147964330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:50 ip-10-0-0-11 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785954183] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-11 mdr: 2016-02-01 11:43:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:50 ip-10-0-64-10 mdr: 2016-02-01 11:43:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064025492] [to:+14155944130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751873] [to:18143860185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797642] [to:18458260483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450538] [to:18083199901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387944842] [to:15149679298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17192370353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17192370353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305963215] [to:+13477146198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803388] [to:12178916417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+14695325581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165724987] [to:+18133204139] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384660] [to:14803277294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:14254349781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388036770] [to:+14387925763] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604217707] [to:+19783231682] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014376809] [to:+12026015235] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-11 mdr: 2016-02-01 11:43:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-11 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069990114] [to:+13069930136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:51 ip-10-0-64-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:51 ip-10-0-0-10 mdr: 2016-02-01 11:43:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027478306] [to:17752506227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039413775] [to:+13073702919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405607] [to:19546245942] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:13187455297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156775] [to:15672131582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:52 ip-10-0-0-10 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550106] [to:14439939162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:52 ip-10-0-64-11 mdr: 2016-02-01 11:43:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650458] [to:18049315841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676495] [to:12673702372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817544] [to:12073220828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266867] [to:17192092372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-21 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242937] [to:+447946297227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138761895] [to:+16136041863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599823537] [to:+19543142589] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-11 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609421910] [to:+13477055234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166403118] [to:+13853361920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:53 ip-10-0-0-10 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695085003] [to:+14243363122] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:53 ip-10-0-64-11 mdr: 2016-02-01 11:43:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496786] [to:13472572341] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644988014] [to:+15617666731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435717361] [to:+18638554160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168904364] [to:+14156494340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19565360900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-10 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186335020] [to:+12627774507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374899] [to:13302058130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:54 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:54 ip-10-0-64-10 mdr: 2016-02-01 11:43:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175269180] [to:+15103136559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663455] [to:12316299218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-21 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930364229] [to:+447451201674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316695] [to:12173710401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236325057] [to:+12135455918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137917002] [to:+13436001700] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635891] [to:17865641400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036057473] [to:+14144006100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365148747] [to:+15163414221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056109303] [to:+14088683413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033B0302] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107817097] [to:+17279165802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176815198] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13409980893] [to:+19177227198] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435627406] [to:+18435345601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+14122302039] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003B70201] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153551335] [to:+17604746502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095408286] [to:+15092622398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437078416] [to:+14695321100] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753185205] [to:+18316107668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502263564] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+12677939257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003BD0202] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794021041] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655132203] [to:+16317732006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088381232] [to:+19172610772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025890833] [to:+14387927406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402945258] [to:+14122301827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:55 ip-10-0-64-10 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:55 ip-10-0-0-11 mdr: 2016-02-01 11:43:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13064803280] [to:+13069937943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056991212] [to:+12894600819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326043328] [to:+17475001104] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516692] [to:13367829779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997186] [to:18646219173] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:56 ip-10-0-64-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19123226819] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:56 ip-10-0-0-10 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17343339096] [to:17347787974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146540792] [to:+14318003956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009021] [to:18155790334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284672535] [to:+13478969902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13192380159] [to:+15635622160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275036839] [to:+16475568671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092478299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478231867] [to:+16474950652] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942039] [to:15148065657] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-11 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022180266] [to:+18572406905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17474006026] [to:13134288043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:57 ip-10-0-0-10 mdr: 2016-02-01 11:43:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:15097653141] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:57 ip-10-0-64-11 mdr: 2016-02-01 11:43:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136005983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547933691] [to:+19172659940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15056046941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345319] [to:18437075181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16267333682] [to:+14158532240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029730] [to:15068711516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398953] [to:13023442502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066156906] [to:+17343339041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-0-11 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-10 mdr: 2016-02-01 11:43:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:58 ip-10-0-64-11 mdr: 2016-02-01 11:43:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:15673422545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146540792] [to:+14318003956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022850301] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859440211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875647541] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023006950] [to:+19027062656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466501540] [to:+13476908409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14124183382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14165243904] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406184] [to:15595563226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122203] [to:18193837358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253517] [to:15027440446] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018639] [to:19027867715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-64-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486915269] [to:19104787317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-10 mdr: 2016-02-01 11:43:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:43:59 ip-10-0-0-11 mdr: 2016-02-01 11:43:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641141] [to:16063105974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752245] [to:13028942887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174944043] [to:+17089468371] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19378308547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706013187] [to:+15129523364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143205] [to:18644193238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193864874] [to:+14197767449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691059] [to:15173982478] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-20 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+19172720239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-10 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676083413] [to:+17278601300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:00 ip-10-0-0-21 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247976] [to:+447957083004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-11 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746014] [to:12054964308] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:00 ip-10-0-64-10 mdr: 2016-02-01 11:44:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+14153671979] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:16206874425] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713374915] [to:+17039516953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921572] [to:15145132768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702939] [to:19495004581] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-11 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-64-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-21 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447472801546] [to:+447520624741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:01 ip-10-0-0-10 mdr: 2016-02-01 11:44:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-21 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086866] [to:12522992321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314677] [to:14044141099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12168040043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048380896] [to:+17604747913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234946926] [to:+16233839155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797642] [to:12015801773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282152136] [to:+18285486155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:14184358737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12293284541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910254] [to:13373879501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046814229] [to:+12138064199] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:02 ip-10-0-0-11 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578182309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:02 ip-10-0-64-10 mdr: 2016-02-01 11:44:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174458444] [to:+12604071480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387944842] [to:15149992254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024895392] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312981] [to:13307943378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043685882] [to:+19172720924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874107970] [to:15877390080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866278] [to:13045913246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477043452] [to:+16474912475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:12198051777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094647146] [to:+16474916835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:03 ip-10-0-0-10 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-11 mdr: 2016-02-01 11:44:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479138350] [to:19042354144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:03 ip-10-0-64-10 mdr: 2016-02-01 11:44:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895512166] [to:+19895697447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145925976] [to:+14387940783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809884] [to:12038331471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16024864671] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064321055] [to:+14045966536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528339392] [to:+13479379162] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043685882] [to:+19172720924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-20 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447512808184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068972802] [to:+15068039644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14697286868] [to:14326648291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130045] [to:+14344736493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:12188383449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:04 ip-10-0-64-11 mdr: 2016-02-01 11:44:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144165248] [to:+14388095331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:04 ip-10-0-0-10 mdr: 2016-02-01 11:44:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108009114] [to:+16106999596] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476670104] [to:15188191030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137935715] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893061074] [to:+19895334903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477995455] [to:17096326277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712562361] [to:+15036478242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043685882] [to:+19172720924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743198072] [to:+19175630241] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049665799] [to:+13052037931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387001078] [to:+15873289844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025780762] [to:+19027031725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066277599] [to:+16692252691] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-11 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179977428] [to:+16172132943] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:05 ip-10-0-64-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142191421] [to:+14388076243] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162722231] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:05 ip-10-0-0-10 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:14035942610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025346] [to:19283997769] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025346] [to:19283997769] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194264993] [to:17046340208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319274] [to:16155166403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474980148] [to:17735931522] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242498] [to:12523704970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072809489] [to:+19177320940] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-20 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447590203521] [to:+447451238369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018038] [to:13364255839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14257772066] [to:+15817020729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018038] [to:13364255839] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018038] [to:13364255839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817737973] [to:+18325216142] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013552573] [to:12503065985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694061366] [to:18038073907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:06 ip-10-0-64-11 mdr: 2016-02-01 11:44:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172583876] [to:+19142061593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:06 ip-10-0-0-10 mdr: 2016-02-01 11:44:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423110] [to:12708362193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471497] [to:18652024187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894131745] [to:+16465139967] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14434871862] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522727] [to:+13477988998] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519419] [to:18036249244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356958872] [to:+15168302815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:07 ip-10-0-64-11 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:16866539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-11 mdr: 2016-02-01 11:44:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:07 ip-10-0-0-10 mdr: 2016-02-01 11:44:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046855458] [to:+19785663749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496786] [to:16469386783] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262413357] [to:12892281164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177418522] [to:+13479068790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458008733] [to:+16466288429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749033683] [to:+12606337261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803389602] [to:+15204336838] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:08 ip-10-0-64-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-11 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:08 ip-10-0-0-10 mdr: 2016-02-01 11:44:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:16476094924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19375591571] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188628775] [to:+15817041407] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13073702939] [to:19495004581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942197] [to:14388891818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197097860] [to:+14197767644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762328] [to:19012838571] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538685] [to:19199854136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599790797] [to:+16264278041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065867] [to:13525190923] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:15108203887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:09 ip-10-0-64-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-11 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065867] [to:13525190923] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:09 ip-10-0-0-10 mdr: 2016-02-01 11:44:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628013894] [to:+14242836048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802268] [to:50375924728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193864874] [to:+14197767449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048302281] [to:+17248030930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022850301] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064199] [to:17046814229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423110] [to:12708755394] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065867] [to:13525190923] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649297] [to:14195665770] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879124] [to:14239946579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:10 ip-10-0-0-10 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:10 ip-10-0-64-11 mdr: 2016-02-01 11:44:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083423917] [to:+19734535433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405840563] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125695677] [to:+15124007046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010555] [to:14189972546] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041120] [to:15026021978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488567521] [to:12486366010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-10 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18105805324] [to:18103999239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797642] [to:16102487936] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546297839] [to:13375324717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-64-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285757663] [to:+16025528291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:11 ip-10-0-0-11 mdr: 2016-02-01 11:44:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156823] [to:18596409243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055802770] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-21 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003840403] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363667772] [to:+13369383863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924513] [to:15142334832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317062375] [to:16314048235] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032407] [to:13048803196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862578] [to:+16465130234] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041562] [to:13179036273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-21 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162621429] [to:+12169295373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-10 mdr: 2016-02-01 11:44:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:12 ip-10-0-64-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134597196] [to:+14132519443] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:12 ip-10-0-0-11 mdr: 2016-02-01 11:44:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848853956] [to:+16108804697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147550270] [to:+13149320402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372401378] [to:+12138023830] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046213392] [to:+19172668364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189775233] [to:+15186155153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022548] [to:+17279353525] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:14169109836] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015622874] [to:+12019956306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194027677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002515] [to:17203163602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672131582] [to:+19703156775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472320748] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068499] [to:12488127905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387944842] [to:16138528936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:14067975544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-11 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163161] [to:19198138735] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:13 ip-10-0-64-10 mdr: 2016-02-01 11:44:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:13 ip-10-0-0-10 mdr: 2016-02-01 11:44:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609856432] [to:+19196504587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329711929] [to:+18327807454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037895130] [to:+17274938612] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19099384850] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502263564] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006041] [to:18482405115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653472] [to:17782424004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327640120] [to:+18322847983] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991974] [to:12313337106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037895130] [to:+17274938612] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335842] [to:17402081597] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348300] [to:14046040900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:14 ip-10-0-0-11 mdr: 2016-02-01 11:44:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:14 ip-10-0-64-10 mdr: 2016-02-01 11:44:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140178] [to:19784763494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036977] [to:18197901535] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209995051] [to:+15207278026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266867] [to:17206096716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083164279] [to:+19738462300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030637] [to:19022185097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327640120] [to:+18322847983] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132417402] [to:+18638556968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147868599] [to:13143380042] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:15 ip-10-0-0-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786779] [to:50249855610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-11 mdr: 2016-02-01 11:44:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:15 ip-10-0-64-10 mdr: 2016-02-01 11:44:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407179782] [to:+17077507850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613834] [to:17027245709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661243] [to:17168030337] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203934] [to:14102699162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744978] [to:18638382241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278026] [to:15209995051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:16 ip-10-0-64-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042501370] [to:+19196516584] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:16 ip-10-0-0-10 mdr: 2016-02-01 11:44:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032604174] [to:+19172751985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248090033] [to:+17243200365] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194349682] [to:+19199163987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493307] [to:18632414887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019286] [to:17096937176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055702721] [to:+17053005385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-11 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715100] [to:13053945122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:13306159731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15134856805] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505126470] [to:+18506315531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-11 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:14408655619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:17 ip-10-0-64-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:17 ip-10-0-0-10 mdr: 2016-02-01 11:44:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083772088] [to:+16088568902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920990] [to:15174926711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338011] [to:16157614839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338011] [to:16157614839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18072512971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18072512971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16472009571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777515] [to:18593242883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379252304] [to:+14156538229] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:13609499679] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-21 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343127378] [to:+16785866766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055018381] [to:15125250871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144923] [to:19072059643] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594397] [to:17045244372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:18 ip-10-0-64-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806062] [to:18287020616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:18 ip-10-0-0-10 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459574] [to:14194630595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473105952] [to:+13478303187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027479760] [to:+17029015598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:12513001626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435403339] [to:+16106999588] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043245] [to:16786347625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105639614] [to:+16105718617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720848] [to:13525148715] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:17742873039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057940113] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195677285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968460] [to:15133004880] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189470961] [to:+18316107592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:19 ip-10-0-64-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:19 ip-10-0-0-10 mdr: 2016-02-01 11:44:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049080529] [to:+14844893346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973143] [to:15707289087] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301779] [to:14125832529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025780762] [to:+19027031725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:20 ip-10-0-0-11 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865596] [to:12036005675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:20 ip-10-0-64-10 mdr: 2016-02-01 11:44:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12516224595] [to:+12518887023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658055609] [to:+14158536286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424063] [to:13168218304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132523] [to:15087847616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716073] [to:+14388097045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475298995] [to:+16474955297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19094777335] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031F0202] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13473887473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165802] [to:16107817097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123226819] [to:+13476672879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703167946] [to:+13059013743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:17702669189] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799851105] [to:+13093069476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894550977] [to:12314688747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-10 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202438346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:21 ip-10-0-0-10 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067689295] [to:+15109482140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:21 ip-10-0-64-11 mdr: 2016-02-01 11:44:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202438346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052028682] [to:+17542003689] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672316422] [to:+15672506275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174458444] [to:+12604071480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877743355] [to:+15874097422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103931] [to:12242100098] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-21 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076232] [to:14785954183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181508] [to:17754194867] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404529180] [to:+14439737201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942197] [to:14388891818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015621840] [to:19016491370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027925970] [to:+16095434308] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-10 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054951393] [to:+15054445478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:22 ip-10-0-0-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-11 mdr: 2016-02-01 11:44:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:22 ip-10-0-64-10 mdr: 2016-02-01 11:44:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495400] [to:14043968043] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157307831] [to:+15169268544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15062327893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17577150488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233839155] [to:13234946926] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438874] [to:14845380014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032405470] [to:+19523885066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365493818] [to:12253331684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143797109] [to:+14144006547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-0-11 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069944387] [to:+14703335820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-10 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715973] [to:18598689046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:23 ip-10-0-64-11 mdr: 2016-02-01 11:44:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-21 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15163134589] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037931] [to:14049665799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043534] [to:12898878682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096787010] [to:+15103222429] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865596] [to:12036005675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15067216061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491815] [to:17138255109] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193503148] [to:+13199833857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316702659] [to:+15109722684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-11 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:24 ip-10-0-0-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223515] [to:19376615148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247686] [to:13132129557] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-11 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15144165248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:24 ip-10-0-64-10 mdr: 2016-02-01 11:44:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751985] [to:16032604174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015496] [to:13868552000] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663097] [to:12318183866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:16092502602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745400031] [to:+17343339165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19523346185] [to:+18133204118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057940113] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486074] [to:14347284753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364528] [to:+17727746542] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041359] [to:12705899009] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593688234] [to:+14088725202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:25 ip-10-0-0-11 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877743355] [to:+15874097422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:25 ip-10-0-64-10 mdr: 2016-02-01 11:44:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022977947] [to:+12406857764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182338847] [to:+14242847138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189865607] [to:+16465139465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447512109594] [to:+15865748015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221186] [to:12709855603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671912] [to:15306350582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-20 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447925335976] [to:+447451248629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671912] [to:15306350582] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14385808778] [to:+14388078836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096602489] [to:+19027021344] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439939162] [to:+14438550106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-10 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477687575] [to:+13478685397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:26 ip-10-0-0-11 mdr: 2016-02-01 11:44:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:26 ip-10-0-64-11 mdr: 2016-02-01 11:44:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041556] [to:+16474952202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195084976] [to:+12138612342] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904425] [to:17744170622] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286092] [to:15149690879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243221101] [to:+17248035799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069930136] [to:13069990114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17694872399] [to:+12135878095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-20 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022850301] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041120] [to:15026021978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-20 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418331054] [to:+447989484266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893324379] [to:+14242836743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19177418522] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:19374232067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502080477] [to:+12509007443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-64-11 mdr: 2016-02-01 11:44:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:27 ip-10-0-0-10 mdr: 2016-02-01 11:44:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062521] [to:19024885884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147754] [to:13477998102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671912] [to:15306350582] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697203436] [to:+12698838154] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108009114] [to:+16106999596] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527145857] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655461890] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802096571] [to:+12362373461] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156775] [to:15672131582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175135824] [to:+15204336581] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16024737420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072899187] [to:+15089668780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-10 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-10 mdr: 2016-02-01 11:44:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:28 ip-10-0-64-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:28 ip-10-0-0-11 mdr: 2016-02-01 11:44:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746502] [to:13153551335] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16477120185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316124796] [to:18316761656] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038073907] [to:+14694061366] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312887941] [to:17143173246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473484591] [to:+17182559325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077390] [to:14383994864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373879501] [to:+15612910254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17739433654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C60201] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602344617] [to:+13477368760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500033F0402] -Feb 1 11:44:29 ip-10-0-0-10 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033F0404] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033F0403] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033588] [to:16046541774] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:29 ip-10-0-0-11 mdr: 2016-02-01 11:44:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:29 ip-10-0-64-11 mdr: 2016-02-01 11:44:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788001707] [to:+13658002631] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482172618] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219454] [to:15738206239] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337606] [to:12396452397] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16043050556] [to:17786380097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663749] [to:13046855458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807929019] [to:+19027042910] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038668439] [to:+13477697654] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-11 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713929729] [to:18326871014] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-21 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950329267] [to:+447418337388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-64-11 mdr: 2016-02-01 11:44:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-20 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:30 ip-10-0-0-10 mdr: 2016-02-01 11:44:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068972802] [to:+15068039644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048093291] [to:12046984949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+14153260499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041359] [to:12705899009] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132927510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027042891] [to:19027511078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572568302] [to:+13479808022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556968] [to:18132417402] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:13014376809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347144] [to:19042506714] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783619731] [to:+16504860113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-11 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032073306] [to:+16466999416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:19043008062] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:31 ip-10-0-0-10 mdr: 2016-02-01 11:44:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016429] [to:13372900906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:31 ip-10-0-64-10 mdr: 2016-02-01 11:44:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+17739433654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C60202] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:13216848694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955313] [to:16084779789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478943] [to:16616758588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028942887] [to:+12133752245] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082254] [to:18436724412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246915536] [to:+17248034334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D50201] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931214] [to:15149618423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-10 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623722147] [to:+13479569739] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:32 ip-10-0-0-11 mdr: 2016-02-01 11:44:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011468] [to:18192904479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-10 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:32 ip-10-0-64-11 mdr: 2016-02-01 11:44:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:12145066032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193810468] [to:+12196559132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472170300] [to:+17053007506] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132219821] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797029] [to:13306393477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927406] [to:18025890833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797029] [to:13306393477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:15193622634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188383449] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991740] [to:16107647119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132943] [to:16179977428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626683669] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149690879] [to:+14503286092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:33 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367761364] [to:+14158532724] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712611110] [to:14045872792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:33 ip-10-0-0-10 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735931522] [to:+16474980148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040438] [to:+16413165876] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195665770] [to:+14199649297] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18708974786] [to:+19802095619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614394] [to:13523968754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794021041] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169297422] [to:12168825125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-21 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789493238] [to:+14043900800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135990] [to:18168253430] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-20 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808080233] [to:+16477994654] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:15083409463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174926711] [to:+15174920990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702509778] [to:+17408796194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-10 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-10 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215439535] [to:+13302377266] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:34 ip-10-0-0-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:34 ip-10-0-64-11 mdr: 2016-02-01 11:44:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011393318115352] [to:+17274936777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-20 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186827310] [to:+13477735521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263778023] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692252175] [to:19803184931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194429865] [to:+14197316108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045037] [to:15142479030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569025] [to:14016881709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692353807] [to:+15712103601] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:35 ip-10-0-0-11 mdr: 2016-02-01 11:44:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-11 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:35 ip-10-0-64-10 mdr: 2016-02-01 11:44:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087598234] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079034283] [to:+12532657109] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168556917] [to:+17186755876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12425333372] [to:+15058006661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147851088] [to:+15873323428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177069494] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364516] [to:+13479809681] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302974] [to:1412918930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:17742873039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157835531] [to:+16413165411] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242100098] [to:+12243103931] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:12295181879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001029] [to:13863157492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097771148] [to:14099327910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039005547] [to:19034933527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782159069] [to:+16785867522] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12407435909] [to:12407079606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:36 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:36 ip-10-0-0-11 mdr: 2016-02-01 11:44:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997765] [to:17204980091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18584804388] [to:17852153918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017936] [to:17407519482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434736890] [to:+14437203706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593242883] [to:+18597777515] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045516348] [to:+18506314349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957848] [to:18599409681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927406] [to:18025890833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034475642] [to:19712081383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155945408] [to:15306919781] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034475642] [to:19712081383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187690] [to:19143469031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-11 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373047945] [to:+19365878597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546526983] [to:13365211379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-11 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:37 ip-10-0-64-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007506] [to:16472170300] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:37 ip-10-0-0-10 mdr: 2016-02-01 11:44:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12093547310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17692323691] [to:+12132371820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383966305] [to:+14387927353] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513979117] [to:+19092933325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538685] [to:19199854136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334217] [to:17064610698] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19205741601] [to:+19202158108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125707971] [to:+12135455447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514012185] [to:+16193590555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349171025] [to:+19172610305] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-10 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982073] [to:19374074121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:38 ip-10-0-0-10 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193522333] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:38 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455809422] [to:+17077507643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172646434] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437184873] [to:+12174889282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600333] [to:12894899838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412431366] [to:15087285967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862216453] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:15199906338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674240776] [to:+12678676882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021210] [to:14188120222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598689046] [to:+14132715973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313383777] [to:+18572194980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085201857] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269356] [to:17077182431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036613946] [to:+16034138430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748892] [to:15865881077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:14168306288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444755] [to:12676305512] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218495] [to:18626007506] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-10 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-64-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:39 ip-10-0-0-11 mdr: 2016-02-01 11:44:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027629827] [to:+17029015605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047620075] [to:+13866018599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128358725] [to:+18729995609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14154661453] [to:15597595767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737190095] [to:+15863315122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869071] [to:17657440717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833352] [to:14092218878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146100] [to:18608905611] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735896] [to:17792340304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314093] [to:12563752956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168040043] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029177090] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-10 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014479] [to:17864883595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:40 ip-10-0-0-10 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097703220] [to:+17097000676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:40 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647603723] [to:+16466329596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035942610] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600231] [to:12894894377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565408893] [to:+18563126402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18628001387] [to:+19732985405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815860] [to:13373810524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834519] [to:18436055629] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246815626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102122036] [to:+19802092355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156519] [to:16814434773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179445795] [to:+17402017790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017037039] [to:+13852657421] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740847] [to:16207414717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014569] [to:14189346626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:41 ip-10-0-0-11 mdr: 2016-02-01 11:44:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-11 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:41 ip-10-0-64-10 mdr: 2016-02-01 11:44:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408129158] [to:+14406588168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:19176815198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15633167517] [to:19373964474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408451008] [to:+13476674871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-10 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043290267] [to:+19047584221] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452425] [to:18122723379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-10 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124170089] [to:+17542009149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-10 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19418704301] [to:19412683966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:42 ip-10-0-0-11 mdr: 2016-02-01 11:44:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:42 ip-10-0-64-11 mdr: 2016-02-01 11:44:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19182856416] [to:+13217308387] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472902] [to:16018180817] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109482140] [to:17067689295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029052] [to:17056987188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373634] [to:14074069465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364451] [to:+17273629554] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12816593896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:12816593896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-10 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:43 ip-10-0-64-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345719] [to:14015430371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:43 ip-10-0-0-11 mdr: 2016-02-01 11:44:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-20 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175100962] [to:+17817863235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187497870] [to:+15102774019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897809834] [to:15198021501] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125023393] [to:16512789290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-11 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16472356000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148829551] [to:+14387924431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:44 ip-10-0-0-10 mdr: 2016-02-01 11:44:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14157416964] [to:+12135296116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:44 ip-10-0-64-11 mdr: 2016-02-01 11:44:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19125904181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503001329] [to:12052695419] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028773] [to:17059349013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19374226991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806844] [to:16159398057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302893502] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15069774118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077890257] [to:12047610920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:45 ip-10-0-0-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107817097] [to:+17279165802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-11 mdr: 2016-02-01 11:44:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409941199] [to:+12138024704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:45 ip-10-0-64-10 mdr: 2016-02-01 11:44:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186335020] [to:+12627774507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049523373] [to:+12048177753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+16137014521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-21 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447947717281] [to:+447418325435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-21 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451200741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702038443] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049523373] [to:+12048177753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16716867460] [to:+14158538753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897497] [to:18125896512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049622422] [to:+17184812650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209752] [to:16312058276] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095725] [to:15149946358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338221] [to:19123900745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405431] [to:12093565332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-11 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:46 ip-10-0-64-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342891] [to:17708669145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:46 ip-10-0-0-10 mdr: 2016-02-01 11:44:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584221] [to:19043290267] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277908] [to:+16474954423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16132008433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920990] [to:15174926711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027599422] [to:+15714454336] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15744537928] [to:+12533361458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473626686] [to:+16463493497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823470] [to:15857751218] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692696016] [to:+13866284023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262601740] [to:+16474954379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-21 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-21 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:47 ip-10-0-64-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266867] [to:17192138997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-21 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-11 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803181549] [to:+19802092331] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:47 ip-10-0-0-10 mdr: 2016-02-01 11:44:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147529815] [to:+19492453106] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130524] [to:15132584942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528839924] [to:+14157876723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142816423] [to:15185698099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257355] [to:15417787845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168895913] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440537] [to:13369889963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269356] [to:17077182431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324278] [to:13129310835] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910254] [to:13373879501] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999416] [to:19032073306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405902036] [to:+13477868595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-11 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375895] [to:15179851682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536829474] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-10 mdr: 2016-02-01 11:44:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:48 ip-10-0-0-11 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542086851] [to:+19172660342] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:48 ip-10-0-64-10 mdr: 2016-02-01 11:44:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18562916292] [to:18562296469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393843283] [to:+13866016527] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053029735] [to:12262011663] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15399999168] [to:18162009521] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796898243] [to:+17323774752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676945386] [to:+12677988803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365587509] [to:+13369383595] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078836] [to:14385808778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393843283] [to:+13866016527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-21 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833250229] [to:+447451212533] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-10 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882875] [to:13236749829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931214] [to:15149618423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:49 ip-10-0-64-10 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13402012276] [to:+14072160242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-20 mdr: 2016-02-01 11:44:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:49 ip-10-0-0-11 mdr: 2016-02-01 11:44:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048086764] [to:12049157640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069308698] [to:+18193032015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802327418] [to:+14158258194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183160947] [to:+15182887750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708980943] [to:+18108528990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312121943] [to:+17605895075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126059112] [to:+13476673993] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038011880] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:50 ip-10-0-64-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19148828977] [to:+19149338674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-10 mdr: 2016-02-01 11:44:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024885884] [to:+19027062521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131354] [to:14129327924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:50 ip-10-0-0-11 mdr: 2016-02-01 11:44:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873323428] [to:12147851088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-20 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893515896] [to:+12262416119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042413578] [to:+12138026288] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033797446] [to:+13477962771] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202054] [to:16412033632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016326] [to:17246819483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488969] [to:15412974725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036005675] [to:+13477865596] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406206331] [to:+14242865979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569119] [to:12488921382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039566] [to:15067216061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:51 ip-10-0-0-10 mdr: 2016-02-01 11:44:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:51 ip-10-0-64-11 mdr: 2016-02-01 11:44:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863157492] [to:+13024001029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854696598] [to:+19172669450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017096] [to:17407279687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13865594753] [to:+14129271215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025284642] [to:+12012576565] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013538785] [to:+19739639280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18453632660] [to:18452757515] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-11 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:52 ip-10-0-64-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149610995] [to:+18194140497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-11 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059997867] [to:+16139097117] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:52 ip-10-0-0-10 mdr: 2016-02-01 11:44:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005073] [to:14102797350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365211379] [to:+19546526983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19548681033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128944701] [to:+13478682917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045177876] [to:+13867423381] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287791191] [to:+12139926480] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522992321] [to:+19177086866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057836587] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927043] [to:16156928137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359150] [to:17048190866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085201857] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:53 ip-10-0-64-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-10 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:53 ip-10-0-0-11 mdr: 2016-02-01 11:44:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542009149] [to:19124170089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158916482] [to:12525649037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132201] [to:16034016393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778745] [to:13476083067] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791539] [to:17165330715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326280187] [to:+17739433705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:19082833329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302974] [to:1412918930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623778] [to:17759013077] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-10 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-11 mdr: 2016-02-01 11:44:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:54 ip-10-0-0-10 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:54 ip-10-0-64-11 mdr: 2016-02-01 11:44:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744978] [to:18638382241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283289886] [to:+15209996967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214398941] [to:+14073373424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698740119] [to:18063825123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535881] [to:18477088491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694757557] [to:+14158253777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031A0301] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343009509] [to:+12136309665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19058080840] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203737882] [to:19102828326] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287385790] [to:+14806664660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285699675] [to:+13479804708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042396251] [to:+19802097682] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645411091] [to:+15672819369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398499941] [to:+12392190343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312253441] [to:+13479378609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104937147] [to:+12692808142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177368581] [to:+16463496786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134628862] [to:+12139217636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132970405] [to:+14132736707] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703123515] [to:+19142061506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0201] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162094405] [to:+15152032198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267923909] [to:+12262415743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674543353] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003D50202] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785954183] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162921105] [to:+17162793032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126564669] [to:+14158532272] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306801487] [to:+13302374348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103474858] [to:+18107725582] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027537515] [to:+13025830432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049910424] [to:+19142815866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188783795] [to:+16079655936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236720104] [to:+16466999354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500033F0401] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306159731] [to:+12167990721] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439746559] [to:+17073009263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388620679] [to:+15795003083] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231437] [to:13362543483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477931369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131354] [to:14129327924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086625940] [to:12074596503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054308881] [to:+16054997319] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732057907] [to:+15165977666] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:55 ip-10-0-0-10 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:55 ip-10-0-64-11 mdr: 2016-02-01 11:44:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058157] [to:19025787369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732057907] [to:+15165977666] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-21 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694757557] [to:+14158253777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031A0302] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648160] [to:15183304697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569742895] [to:+18563566334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694757557] [to:+14158253777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031A0303] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491815] [to:17138255109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854029514] [to:+15852821794] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700893] [to:19103201592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18472223365] [to:+19177375915] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885157] [to:16164027912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-20 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338332] [to:+447934854170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403058369] [to:+13015699199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F40401] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12547438663] [to:+14695324891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-10 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:56 ip-10-0-64-11 mdr: 2016-02-01 11:44:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175640950] [to:+13476304367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:56 ip-10-0-0-10 mdr: 2016-02-01 11:44:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:16062072350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023371] [to:18084634847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16138830292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:16614187601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403058369] [to:+13015699199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:18566415940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132638512] [to:+14388040545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060790] [to:19103402668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060790] [to:19103402668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694060790] [to:19103402668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:57 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139096988] [to:16133555402] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364222650] [to:+16612617271] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:57 ip-10-0-64-11 mdr: 2016-02-01 11:44:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-21 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447555750984] [to:+447451203352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038565090] [to:+17604748595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:12498770202] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344773817] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024596052] [to:+15082711979] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-20 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019068126] [to:+12027179307] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066081374] [to:+15068036038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786401110] [to:+13134688335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660038] [to:13022429061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:58 ip-10-0-64-11 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:58 ip-10-0-0-10 mdr: 2016-02-01 11:44:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14417031095] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638734802] [to:+18638554750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435159217] [to:+14437204699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204118] [to:19523346185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15184913349] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077883191] [to:19022140803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857050846] [to:+17344365991] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14092014239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542401929] [to:+19543144240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:14092014239] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186250644] [to:+14502337960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318314] [to:12314994568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705899009] [to:+15028041359] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107668] [to:15753185205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-20 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603578317] [to:+12604071478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865881077] [to:+15865748892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:44:59 ip-10-0-0-11 mdr: 2016-02-01 11:44:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:44:59 ip-10-0-64-10 mdr: 2016-02-01 11:44:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256138] [to:19414681796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042438409] [to:16043354666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409702279] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478356] [to:14698554931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455829] [to:19166128187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369570347] [to:+13369383047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:16787324077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403058369] [to:+13015699199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F40402] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:13472320748] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:00 ip-10-0-64-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-10 mdr: 2016-02-01 11:45:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:00 ip-10-0-0-11 mdr: 2016-02-01 11:45:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962771] [to:18033797446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239946579] [to:+14157879124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486912] [to:15854454403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-21 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447534166016] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342891] [to:17708669145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-20 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-21 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:01 ip-10-0-64-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-10 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072182409] [to:+14076333382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:01 ip-10-0-0-11 mdr: 2016-02-01 11:45:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740341] [to:+19175638105] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526407056] [to:+13476303947] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908840] [to:12675794194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287020616] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865030072] [to:12392101445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708810169] [to:+17029565884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927406] [to:18025890833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058163] [to:19028303615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003530401] -Feb 1 11:45:02 ip-10-0-0-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135685] [to:12292997307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13157602499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752245] [to:13028942887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:02 ip-10-0-64-10 mdr: 2016-02-01 11:45:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:02 ip-10-0-0-11 mdr: 2016-02-01 11:45:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453595] [to:13013679004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-21 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747807516] [to:+19298418448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319123] [to:15615431722] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17242508820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455165] [to:19162437681] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239947333] [to:+14706732090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295373] [to:12162621429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096411731] [to:+19027046214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003530403] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-10 mdr: 2016-02-01 11:45:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:03 ip-10-0-0-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-11 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615182] [to:15179458778] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:03 ip-10-0-64-10 mdr: 2016-02-01 11:45:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453821] [to:17177998110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910549] [to:13043606985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003530404] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15066261286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102030416] [to:+16105418863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005580] [to:17064078715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049625332] [to:+12132950178] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-20 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-20 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:16319210317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12535170102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313166148] [to:+19318967315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046980953] [to:+16474914830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:19404428291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-21 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:04 ip-10-0-64-11 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042413578] [to:+18572559420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-21 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-10 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049625332] [to:+12132950178] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:04 ip-10-0-0-21 mdr: 2016-02-01 11:45:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470428051] [to:+447451212747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474479196] [to:+19178778622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259717] [to:13137691984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167800637] [to:+16162390152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915653] [to:18196398715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133417451] [to:+16474913987] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452837057] [to:+19199163365] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148932427] [to:+16149965651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726070888] [to:+13212701148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179851682] [to:+12485375895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19049625332] [to:+12132950178] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F40403] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17735010252] [to:+18175417367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784763494] [to:+19786140178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142023289] [to:+13149320478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003530402] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137022318] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234566670] [to:+12137698183] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-20 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748352893] [to:+13477869311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16182670604] [to:+13866018758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-20 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-10 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12674543353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-10 mdr: 2016-02-01 11:45:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+15617665951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:05 ip-10-0-0-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:05 ip-10-0-64-11 mdr: 2016-02-01 11:45:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014479] [to:17863893497] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150092] [to:14238279297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-10 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172867141] [to:+18638557227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-10 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020827] [to:14693193392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:06 ip-10-0-64-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179334798] [to:+18178184885] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:06 ip-10-0-0-11 mdr: 2016-02-01 11:45:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14417031095] [to:+12026609326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369727240] [to:+13366452780] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439939162] [to:+14438550106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:17403140897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:18283371353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186250644] [to:+14502337960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204513878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-20 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204980091] [to:+17205997765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15867443723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500031B0202] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276660386] [to:+18133084139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18188049102] [to:+12138028384] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373964474] [to:+15633167517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-10 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:07 ip-10-0-64-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336790] [to:19712046659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:07 ip-10-0-0-11 mdr: 2016-02-01 11:45:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-10 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-10 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003F40404] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784769160] [to:+19785939396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027452091] [to:+13024001056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178826446] [to:+13478120498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-10 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:08 ip-10-0-0-11 mdr: 2016-02-01 11:45:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096326277] [to:+16477995455] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:08 ip-10-0-64-11 mdr: 2016-02-01 11:45:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404084804] [to:14358905886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14189972546] [to:+17097010555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106082885] [to:+12105718933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232840484] [to:+17205998902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168323112] [to:+17279985674] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178826446] [to:+13478120498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016968] [to:14099279197] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606009753] [to:+13478684520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602220801] [to:12606450013] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403544403] [to:+12139927018] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037135578] [to:+16465130861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866898] [to:14233123651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069774118] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:09 ip-10-0-64-10 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043534] [to:16139218293] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-11 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043534] [to:16139218293] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-10 mdr: 2016-02-01 11:45:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:09 ip-10-0-0-21 mdr: 2016-02-01 11:45:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:12018922581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-21 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447949317709] [to:+447451240745] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096602489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127152993] [to:+15172586622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194664354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404877] [to:14434544920] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12159548768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030930] [to:13048302281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-10 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016106605] [to:+17018006437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950969] [to:14163006638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-10 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174926711] [to:+15174920990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173325990] [to:+13174558696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:10 ip-10-0-64-11 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-11 mdr: 2016-02-01 11:45:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:10 ip-10-0-0-10 mdr: 2016-02-01 11:45:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702038443] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896842460] [to:+12267982960] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027091184] [to:+17344366763] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025770626] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268315] [to:14234576837] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994864] [to:+14388077390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703718298] [to:+17205997230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707935864] [to:+19142816923] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:11 ip-10-0-64-10 mdr: 2016-02-01 11:45:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:11 ip-10-0-0-11 mdr: 2016-02-01 11:45:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436021] [to:+12606355225] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566243102] [to:+16177065459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031444] [to:12263448875] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137285802] [to:+12485375315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098981330] [to:+19177375347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242867215] [to:19062827359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708469784] [to:+17186755666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174809278] [to:+19784009407] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-0-10 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-11 mdr: 2016-02-01 11:45:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:12 ip-10-0-64-10 mdr: 2016-02-01 11:45:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668327] [to:13128238583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-20 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168646735] [to:+17162792660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133898037] [to:+18133084381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892252893] [to:+12694611328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13193503148] [to:+15635593584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14405716006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730162] [to:16783340737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019184921] [to:18629007669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383996700] [to:+14388078058] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:13 ip-10-0-0-11 mdr: 2016-02-01 11:45:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475814222] [to:+14357764193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328641] [to:15037190568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:13 ip-10-0-64-10 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062588126] [to:12064549440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819597] [to:15672287079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566527066] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063434313] [to:+15068033364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305888] [to:15093680772] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895075] [to:19312121943] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737471] [to:14432541630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610496] [to:15058041546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16153641053] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439927] [to:19567714355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798476] [to:12039165579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258109] [to:18159803389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16475047675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309135326] [to:+13309157279] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-20 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475566877] [to:16477050691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551080] [to:19735632326] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13474320212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262137810] [to:+12262414102] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363130] [to:17709172490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262137810] [to:+12262414102] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587690] [to:17402281038] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262137810] [to:+12262414102] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-64-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12314688747] [to:+19894550977] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-11 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176597547] [to:+14696433226] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:14 ip-10-0-0-10 mdr: 2016-02-01 11:45:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573390002] [to:+19172833626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-21 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+15155127072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-21 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944695155] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022140803] [to:+18077883191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:16789493238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812645721] [to:+17812773696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945649] [to:15145829300] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275656742] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036193309] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776964] [to:16062783162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139459] [to:13306103659] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14036806258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733132642] [to:13237148364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242140370] [to:16308158383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-10 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074258094] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477970522] [to:17179940490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702732368] [to:+16785864681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:15 ip-10-0-0-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463491507] [to:17187243103] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:15 ip-10-0-64-11 mdr: 2016-02-01 11:45:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103999239] [to:+18105805324] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275656742] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18104475924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911128] [to:12074030723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163298] [to:16095131162] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074034264] [to:17073827343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:16477388731] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473071090] [to:+17812621377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795827] [to:12767331020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063870] [to:14074870572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057217345] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659695078] [to:+18572551807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033080339] [to:+15108538276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434065331] [to:+12105718151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067484894] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017680087] [to:14019997030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314048235] [to:+16317062375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149724698] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537710] [to:15192751888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419973] [to:14783029700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-10 mdr: 2016-02-01 11:45:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:16 ip-10-0-64-10 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767644] [to:14197097860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:16 ip-10-0-0-11 mdr: 2016-02-01 11:45:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364931051] [to:+13369381979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15062327893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176693996] [to:+18638553325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069810801] [to:+14125354489] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369889963] [to:+13369440537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149067] [to:13618775456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149067] [to:13618775456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220677] [to:+19785663152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886978] [to:+19543144272] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149067] [to:13618775456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:17 ip-10-0-0-10 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:17 ip-10-0-64-11 mdr: 2016-02-01 11:45:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216950008] [to:+15852822128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041359] [to:12705899009] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649234759] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173402862] [to:+19543639885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157547739] [to:17176865474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084108904] [to:+17186755141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-21 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-21 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524506] [to:12173813786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-20 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325218] [to:+447887053337] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-64-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405629343] [to:+12134784942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-21 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-20 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451247879] [to:+447821077718] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-11 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032096760] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:18 ip-10-0-0-10 mdr: 2016-02-01 11:45:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17122100836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404442325] [to:+17408797954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407067] [to:18452192513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005903] [to:19122690252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183304697] [to:+16465648160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025787369] [to:+19027058157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552671] [to:16053919223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821189] [to:15853222360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233665735] [to:+13475187391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305697] [to:16363831045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19786140178] [to:19784763494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309665] [to:13343009509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786592] [to:12408764439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-11 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15873258028] [to:+15873323073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157270534] [to:+13477981686] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:19 ip-10-0-64-11 mdr: 2016-02-01 11:45:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323778824] [to:17323304776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:19 ip-10-0-0-10 mdr: 2016-02-01 11:45:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702049680] [to:+14848164871] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235399778] [to:+12139359670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077546] [to:12403869094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065456] [to:18644836308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460962] [to:17658105869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-21 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024329419] [to:+15068045450] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-20 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638014855] [to:+18637347466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064422711] [to:+19027018682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:20 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:20 ip-10-0-64-11 mdr: 2016-02-01 11:45:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968286] [to:16033136497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13306801487] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762214] [to:13362532415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373879501] [to:+15612910254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:15635791903] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122279640] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991974] [to:12313337106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019259552] [to:+13478083378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920990] [to:15174926711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482405115] [to:+19703006041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630210] [to:13473091600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18104475924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606558000] [to:+12039904057] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801185] [to:17248415659] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-10 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434532259] [to:+18435345672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-64-11 mdr: 2016-02-01 11:45:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218342] [to:12672168308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-20 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-11 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142684854] [to:+14387942525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:21 ip-10-0-0-20 mdr: 2016-02-01 11:45:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451235826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524345] [to:16168289822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165802] [to:16107817097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218328264] [to:13215766521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088555] [to:15149432988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478993254] [to:15156690953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-20 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336992] [to:+447887354383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18583756156] [to:+18583604015] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474938754] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153434] [to:16045059458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134386397] [to:+12262437140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-10 mdr: 2016-02-01 11:45:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:22 ip-10-0-64-10 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:22 ip-10-0-0-11 mdr: 2016-02-01 11:45:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708325220] [to:+15703974030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15405225957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946214] [to:15013982967] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007717] [to:19512698756] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623087840] [to:+15617665951] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17017200700] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105446] [to:19184715776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176099885] [to:+13475808720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658002822] [to:16137022318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289325] [to:14136574237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-11 mdr: 2016-02-01 11:45:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086100] [to:17863081529] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:23 ip-10-0-0-11 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344750876] [to:+15108538526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:23 ip-10-0-64-10 mdr: 2016-02-01 11:45:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016240975] [to:+17279987522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803389602] [to:+15204336838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028479939] [to:+15713262406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046790048] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+18173637313] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054951393] [to:+15054445478] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262463431] [to:+12262417035] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-20 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447444090705] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021931] [to:19028770426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702004930] [to:14702031963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013806] [to:19042264771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:24 ip-10-0-64-10 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365529636] [to:+19196516287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:24 ip-10-0-0-11 mdr: 2016-02-01 11:45:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048229078] [to:+16785868047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022930047] [to:+19027043514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048302281] [to:+17248030930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028942887] [to:+12133752245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730109] [to:17064026210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374325] [to:13302096375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479463] [to:15164518962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474479196] [to:+19178778622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16178773113] [to:+12602755543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:19738731603] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968687] [to:18653612836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-64-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-10 mdr: 2016-02-01 11:45:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:25 ip-10-0-0-11 mdr: 2016-02-01 11:45:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267794780] [to:13048861059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702038443] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043084] [to:16468740220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+14387941907] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-20 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627437] [to:+447961588604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-20 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262463431] [to:+12262417035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287354096] [to:+17547774389] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196143882] [to:+16465130644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043430] [to:16822519161] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16623722147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-11 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306473967] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:26 ip-10-0-0-10 mdr: 2016-02-01 11:45:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657409049] [to:+18653471528] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:26 ip-10-0-64-10 mdr: 2016-02-01 11:45:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206120] [to:15012827022] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082527102] [to:+13867425700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672077433] [to:+13477970928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174210807] [to:+13477970678] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008108] [to:12177251055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022505762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:16866539] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132758134] [to:+14132715476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-20 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-20 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108009114] [to:+16106999596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168717575] [to:+12264555235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001721] [to:16788917492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:27 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240690] [to:13474320212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15098409146] [to:+15103227826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:27 ip-10-0-0-10 mdr: 2016-02-01 11:45:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411120] [to:15196585760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987406] [to:19062418526] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557223] [to:13154129891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073176028] [to:+13478992165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028309801] [to:+19027058333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854454403] [to:+19148486912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174210807] [to:+13477970678] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821867] [to:13157155252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167850927] [to:+17162790915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965744] [to:15133992903] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-21 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654109482] [to:+19027043769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-11 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315703005] [to:+17607013294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986752] [to:16165584348] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939305] [to:19783979692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:28 ip-10-0-64-10 mdr: 2016-02-01 11:45:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371931] [to:17782234100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:28 ip-10-0-0-10 mdr: 2016-02-01 11:45:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003D80401] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213171797] [to:+13217309541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15098409146] [to:+15103227826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065646385] [to:+14706733182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079905707] [to:+13025957961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808142] [to:18104937147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403551050] [to:+12026609878] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15677033117] [to:+13069938256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048789377] [to:+18046650262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19087598234] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:29 ip-10-0-0-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-10 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138554] [to:16173192766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:29 ip-10-0-64-11 mdr: 2016-02-01 11:45:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916287] [to:16475492498] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062164573] [to:+13069928081] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041120] [to:15026021978] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797151390] [to:+19177376248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369727240] [to:+13366452780] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174210807] [to:+13477970678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364931051] [to:+13369381979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312064640] [to:+19318968750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703159450] [to:+13312087821] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988215] [to:18644784234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16363831045] [to:+16367305697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998161] [to:13217450812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-0-10 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-10 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372065] [to:13526539597] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:30 ip-10-0-64-11 mdr: 2016-02-01 11:45:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365309] [to:14175439061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022901891] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136937190] [to:+14132715967] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099327910] [to:+14097771148] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249197021] [to:+17248035369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413243] [to:17607908555] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878834] [to:14015167179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003480201] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:13046512887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455181858] [to:+12405538794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045749861] [to:+19142066720] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-10 mdr: 2016-02-01 11:45:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435588512] [to:+14438550744] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:31 ip-10-0-0-11 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:31 ip-10-0-64-10 mdr: 2016-02-01 11:45:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417035] [to:12262463431] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505577957] [to:+18508950499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783029700] [to:+14788419973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142689964] [to:+14387920315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-20 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-21 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447547117243] [to:+447418330834] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009263] [to:14439746559] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769123] [to:19046725907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-20 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-20 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032900556] [to:+13203074858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615074539] [to:+14406588446] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895280330] [to:+18109628112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372065] [to:13526539597] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649297] [to:14195665770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199927774] [to:+12264552280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D80402] -Feb 1 11:45:32 ip-10-0-0-10 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341259] [to:15804615217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:32 ip-10-0-0-11 mdr: 2016-02-01 11:45:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13062211546] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:32 ip-10-0-64-11 mdr: 2016-02-01 11:45:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199927774] [to:+12264552280] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830018] [to:17202433555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263785051] [to:+12897683470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122100836] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166781521] [to:+16163239482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-10 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515266] [to:12399895596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-10 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-20 mdr: 2016-02-01 11:45:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:33 ip-10-0-64-10 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317062375] [to:16314048235] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:33 ip-10-0-0-11 mdr: 2016-02-01 11:45:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19392231430] [to:+18569550513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282432619] [to:+18285486367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869311] [to:15748352893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106741869] [to:+17604749924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202916899] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059186071] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375895] [to:15179851682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673702372] [to:+12678676495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042288952] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036323] [to:15066531264] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14049183395] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605567823] [to:+13606027148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248138739] [to:+17248034484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094130] [to:17048587320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185492] [to:13473533547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365309] [to:14175439061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-10 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-10 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132183945] [to:+12137978530] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:34 ip-10-0-64-11 mdr: 2016-02-01 11:45:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:34 ip-10-0-0-11 mdr: 2016-02-01 11:45:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:18568993174] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187203805] [to:+15817008898] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784763494] [to:+19786140178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236936] [to:18303222247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315460] [to:14782508328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-20 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021984] [to:14188686951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434886828] [to:+16474954504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17202916899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298875] [to:18593042294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:18135412598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577242496] [to:+19172669394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910254] [to:13373879501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13149548230] [to:+19726665461] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125977] [to:13608430358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834550] [to:19096834857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024428525] [to:+13025830866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702131267] [to:+15703974305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624523541] [to:+14242837696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122204541] [to:+12138027309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D80403] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:35 ip-10-0-0-10 mdr: 2016-02-01 11:45:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682092] [to:16074170705] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:35 ip-10-0-64-11 mdr: 2016-02-01 11:45:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083912683] [to:+12627776231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034016393] [to:+16034132201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123142269] [to:+13866283436] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326161] [to:15022944295] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-20 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944695155] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12042724080] [to:14312743587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-10 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787557012] [to:+16784345984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436724412] [to:+13478082254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:36 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:16467325300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:36 ip-10-0-0-11 mdr: 2016-02-01 11:45:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587211] [to:14403811504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012383267] [to:+12019956298] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253327365] [to:14253127692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:14789553420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165582716] [to:+12692207173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160427] [to:12398396409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-21 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847958440] [to:+16109102832] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474938754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188963] [to:18312933315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253283230] [to:+12346507827] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736667474] [to:15148130076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910496] [to:18653069440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755876] [to:12168556917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056392560] [to:+15056007265] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041009] [to:15022035124] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812907659] [to:+19783231855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608496121] [to:+19142796796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-10 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397113] [to:14782445068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998161] [to:13217450812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512436707] [to:+18053943118] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:37 ip-10-0-0-11 mdr: 2016-02-01 11:45:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:37 ip-10-0-64-10 mdr: 2016-02-01 11:45:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024895392] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-20 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205449] [to:+447934832009] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:16473897305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:17722091497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-20 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168734] [to:15208788947] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187023] [to:18437421927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630210] [to:13473091600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812907659] [to:+19783231855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179670074] [to:+16178634637] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169650645] [to:+13479478088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372202] [to:14079137182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17708824527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046210467] [to:+17736668820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812907659] [to:+19783231855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236887] [to:19542538846] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:38 ip-10-0-64-10 mdr: 2016-02-01 11:45:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640675] [to:15853700542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-11 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:38 ip-10-0-0-21 mdr: 2016-02-01 11:45:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15677033117] [to:+13069938256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615074539] [to:+14406588446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463632409] [to:+14122302191] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122052926] [to:+14157995561] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137759] [to:17166387161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364733] [to:+13479749446] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D80404] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149438047] [to:+14388076731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997765] [to:17204980091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683140] [to:16038313012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677988803] [to:12676945386] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064074] [to:14049807744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138537713] [to:+16136048150] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062164573] [to:+13069928081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:19312374558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402081597] [to:+16513335842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-10 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521325] [to:+18637347333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:39 ip-10-0-0-11 mdr: 2016-02-01 11:45:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:39 ip-10-0-64-11 mdr: 2016-02-01 11:45:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587872] [to:14406543778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852249314] [to:+16172139015] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678771222] [to:16822515498] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640675] [to:15853700542] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485134] [to:13176522959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387931284] [to:15144660952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992896] [to:12188383449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942526] [to:16039238759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-21 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024481] [to:16614189545] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058540221] [to:+13658001610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-10 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:40 ip-10-0-0-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955955] [to:14183789717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402281038] [to:+12405587690] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:40 ip-10-0-64-11 mdr: 2016-02-01 11:45:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126170423] [to:+13476670413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:18454670306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625781666] [to:+15103136895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999601] [to:16786930476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15304926705] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812871] [to:12032490939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037144515] [to:+16475038238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787557012] [to:+16784345984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-11 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269776123] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:41 ip-10-0-0-10 mdr: 2016-02-01 11:45:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124399892] [to:+19142796405] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978908] [to:13367557681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:41 ip-10-0-64-11 mdr: 2016-02-01 11:45:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308007411] [to:+17015872104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348069809029] [to:+17089467242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863285098] [to:+17866079946] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675842] [to:14047909185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122279640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215183] [to:16105500286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900556] [to:+14388095354] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18155790334] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342891] [to:17708669145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-21 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295065] [to:12056410487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175541328] [to:+15172527916] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-11 mdr: 2016-02-01 11:45:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-21 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627830] [to:+447519219966] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17175100962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:42 ip-10-0-0-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14129271215] [to:13865594753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-10 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:12267923909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:42 ip-10-0-64-11 mdr: 2016-02-01 11:45:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164945] [to:19198669260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604450102] [to:+12267902277] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12402455882] [to:13018482038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691184] [to:12487030383] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512698756] [to:+14146007717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863285098] [to:+17866079946] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14109636666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022711741] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913174] [to:16478524668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231792] [to:16307794691] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199954087] [to:+19199166759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737241767] [to:+19018426654] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-11 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-20 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-64-11 mdr: 2016-02-01 11:45:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12192133910] [to:13023581821] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742895333] [to:+17749921547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-20 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:43 ip-10-0-0-10 mdr: 2016-02-01 11:45:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17178142314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:12566527066] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863285098] [to:+17866079946] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568672] [to:17176350368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786540733] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875886289] [to:+17097000661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041762] [to:15063807277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708750434] [to:+19172661479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057355979] [to:14044961310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792522057] [to:+14243363252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562761539] [to:+14045966317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476881282] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:44 ip-10-0-64-11 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:44 ip-10-0-0-10 mdr: 2016-02-01 11:45:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103354872] [to:18283948661] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381838] [to:13048882957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-20 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870301] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736399] [to:14135196803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774752] [to:14796898243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604315641] [to:+14156538759] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133043550] [to:+14242866714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-21 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-11 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196402125] [to:+18193035453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-11 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:45 ip-10-0-64-10 mdr: 2016-02-01 11:45:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778572] [to:12244121227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:45 ip-10-0-0-10 mdr: 2016-02-01 11:45:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196350684] [to:+17187510374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488410] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676570] [to:13026026046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692777984] [to:+12693366341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:19736894330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289678] [to:12534950746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702920488] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876140128] [to:+17184812490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252230522] [to:+19718886939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134290096] [to:+13479789754] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287883012] [to:+19177370642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473533547] [to:+13475185492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:46 ip-10-0-0-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648160] [to:15183304697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-11 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:46 ip-10-0-64-10 mdr: 2016-02-01 11:45:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107630089] [to:+14844124401] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:12013206109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066525] [to:18648845299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563523008] [to:12675603725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:15108203887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382514] [to:18643058442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155127072] [to:13173842806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493108] [to:16788919017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-21 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-20 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223526] [to:+447835641905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012319] [to:13869162303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016457490] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-11 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748352893] [to:+13477869311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:47 ip-10-0-64-10 mdr: 2016-02-01 11:45:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784689497] [to:+14044811804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:47 ip-10-0-0-10 mdr: 2016-02-01 11:45:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14163588578] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132817855] [to:+16136047530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638382241] [to:+13023744978] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037438298] [to:+19719997808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056845730] [to:+13052036354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505507260] [to:+17784033272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194407466] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681329] [to:+19298419816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136574237] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797078] [to:12706085369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266096] [to:16206151716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169955502] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478678449] [to:+12897680728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477710895] [to:+14506390751] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-21 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520607931] [to:+447792166739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-11 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369273295] [to:+13369383207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:48 ip-10-0-64-11 mdr: 2016-02-01 11:45:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:48 ip-10-0-0-10 mdr: 2016-02-01 11:45:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185512528] [to:+15817019863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637914] [to:+17196290791] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000606] [to:17096491697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253283230] [to:+12346507827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322848817] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003850201] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887354383] [to:+447418336992] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003840404] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328939388] [to:+19798885738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-21 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481861] [to:17577389527] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041762] [to:15063807277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335678] [to:12409889958] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612818046] [to:+13053404373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:49 ip-10-0-64-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308832974] [to:+14402528569] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452364] [to:13363004304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-20 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940740355] [to:+447451231082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13186132351] [to:+12132958742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-11 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024890096] [to:+19027041241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:49 ip-10-0-0-10 mdr: 2016-02-01 11:45:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014376809] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179670074] [to:+16178634637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373901] [to:14694349881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473619183] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756533] [to:13183490464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784007781] [to:16787705714] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-10 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068198] [to:19182219893] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18162485751] [to:+13214062727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977996] [to:12528143835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-10 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:50 ip-10-0-64-11 mdr: 2016-02-01 11:45:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066175] [to:19379358191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:50 ip-10-0-0-11 mdr: 2016-02-01 11:45:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040878] [to:15147109099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032900556] [to:+13203074858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328837972] [to:+18328044184] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154316] [to:+19789697552] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018985513] [to:17189546801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025316805] [to:+13025851939] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240433] [to:19193399123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038569360] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-20 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097996] [to:17078032921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024077814] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304722070] [to:+13309358167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592614] [to:12703669434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193607677] [to:+14388096296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412617] [to:14044552887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044411769] [to:+18046243442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105500286] [to:+12139215183] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022144141] [to:+19027018694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478088] [to:19175841076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-10 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:51 ip-10-0-64-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306973191] [to:+13309358075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:51 ip-10-0-0-11 mdr: 2016-02-01 11:45:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812809] [to:15702805192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18577532306] [to:+18572326021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17817189593] [to:+16172139823] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029746306] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173294805] [to:+16367305279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603492208] [to:+17605899368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473619183] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17817189593] [to:+16172139823] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338931] [to:+14706731996] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-10 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-20 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034102564] [to:+18133202522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-64-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724657] [to:17047762983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-10 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:52 ip-10-0-0-11 mdr: 2016-02-01 11:45:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12532397267] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734091739] [to:+19735479935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253327365] [to:14253127692] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749144] [to:18644019526] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104432963] [to:+13017786152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347466] [to:18638014855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725957533] [to:+14695323988] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000606] [to:17096491697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-10 mdr: 2016-02-01 11:45:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:53 ip-10-0-0-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:53 ip-10-0-64-11 mdr: 2016-02-01 11:45:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-20 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539354207] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065024781] [to:+16513335289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187391] [to:13233665735] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:54 ip-10-0-64-10 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:54 ip-10-0-0-11 mdr: 2016-02-01 11:45:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056647163] [to:+14692058672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15063809001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516287] [to:13365529636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563566334] [to:18569742895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134708] [to:+16475569740] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739917220] [to:+17188069005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555235] [to:14168717575] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044775097] [to:+19046947529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750757] [to:+16139125653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768967] [to:18128442251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438874] [to:12154606910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897261] [to:17315925925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105161285] [to:+15169267081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138082107] [to:+14402526780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657261] [to:12543928010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006364] [to:14143882122] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228657] [to:16145546656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105010204] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024803969] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059299294] [to:+16054997082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028094373] [to:+14437201593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015546821] [to:+15072626767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979685] [to:+17327068172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057836587] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524276274] [to:+17279997481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069990114] [to:+13069930136] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0201] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194105958] [to:+19172751586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16059299294] [to:+16054997082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003480202] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073220828] [to:+19142817544] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157083699] [to:+12135874952] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093350159] [to:+15107756760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573769963] [to:+12138064390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19019495703] [to:+19014448280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704364350] [to:+14018677758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062232004] [to:+17727668917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19126780122] [to:+18038519671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277761934] [to:+17723618237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-20 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239947333] [to:+14706732090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-20 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407727355] [to:+12132951820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134856805] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094960816] [to:+16099040410] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139720593] [to:+18572193872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022948465] [to:+19498771451] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16363739147] [to:16362328331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706400350] [to:+12546930214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523040036] [to:+19046946066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022505762] [to:+13024000468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-64-11 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985674] [to:18168323112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007265] [to:15056392560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975401] [to:13343277983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:55 ip-10-0-0-10 mdr: 2016-02-01 11:45:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439118] [to:18609780700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856347349] [to:+12139926405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283371353] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869924] [to:14783052205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16082390251] [to:+16784968731] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19122889510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842822] [to:17325015170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842822] [to:17325015170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391083] [to:526371238911] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049405248] [to:+13476672588] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391083] [to:526371238911] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790890] [to:17163424384] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-11 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:56 ip-10-0-0-10 mdr: 2016-02-01 11:45:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:56 ip-10-0-64-10 mdr: 2016-02-01 11:45:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026913234] [to:+16474955711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305813308] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-20 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329512393] [to:+18327772141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:15862216453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185076519] [to:+15817015752] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910507] [to:16479470701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042100651] [to:+13478085385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777060] [to:18593023527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455829] [to:19165851065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-10 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619156] [to:16154503127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-21 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:57 ip-10-0-0-11 mdr: 2016-02-01 11:45:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-11 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:57 ip-10-0-64-10 mdr: 2016-02-01 11:45:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12344106218] [to:+12343077846] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679050420] [to:+12679669832] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345423] [to:16784488364] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:15635791903] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18106243915] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:15186704210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022790] [to:13065802112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037686784] [to:+13473438869] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032900556] [to:+13203074858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19717124174] [to:+19715122983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022560918] [to:19725672254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-20 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174539281] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18628812951] [to:+13476303977] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-20 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235050342] [to:+12485375421] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:58 ip-10-0-0-11 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063434021] [to:+17097020566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-10 mdr: 2016-02-01 11:45:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479653554] [to:+19738147984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:58 ip-10-0-64-11 mdr: 2016-02-01 11:45:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139720593] [to:+18572193872] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393562] [to:18108344207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12295488811] [to:+13053404906] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373350] [to:13219874114] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373350] [to:13215575562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-21 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:45:59 ip-10-0-0-11 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474904168] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898047330] [to:14163898071] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550350] [to:18503758124] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-10 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:45:59 ip-10-0-64-11 mdr: 2016-02-01 11:45:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478518] [to:19292534182] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19898545838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154885302] [to:+12672473340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563009290] [to:+13479199337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-20 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447921214280] [to:+447451234160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-20 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342645198] [to:+18639492776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477137] [to:14847441875] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042648461] [to:+13867428900] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-11 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16205109827] [to:+12026609326] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-11 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+15072626110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573542524] [to:+13056476719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:00 ip-10-0-0-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:17248336554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:00 ip-10-0-64-10 mdr: 2016-02-01 11:46:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608903471] [to:+18609710280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355046] [to:12604184218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228071] [to:13366843511] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563752956] [to:+12342314093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026892956] [to:+17256661097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176027087] [to:+14694148954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234261389] [to:+13478685787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649852513] [to:+15713927866] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324346] [to:15023315501] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-10 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447837] [to:+12264559721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:01 ip-10-0-64-11 mdr: 2016-02-01 11:46:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:01 ip-10-0-0-11 mdr: 2016-02-01 11:46:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:14165736027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678883672] [to:12493582804] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169109836] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479808547] [to:19734892989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104555437] [to:12405597056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755429] [to:12693553202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404520176] [to:+16572071944] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306301] [to:16365841390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-10 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056410487] [to:+12135295065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19099395418] [to:17147260842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597537] [to:19252789671] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-21 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330834] [to:+447547117243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:02 ip-10-0-0-11 mdr: 2016-02-01 11:46:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14166550839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:02 ip-10-0-64-11 mdr: 2016-02-01 11:46:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19028740045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315317163] [to:16315767436] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319802322] [to:16313342620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231988] [to:19853811797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187203805] [to:+15817008898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-20 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473819761] [to:+16475039354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015880662] [to:+14243364069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105161285] [to:+15169267081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130970] [to:17879894202] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897261] [to:17315925925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227349] [to:19062362858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-21 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-11 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-11 mdr: 2016-02-01 11:46:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:03 ip-10-0-64-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065024781] [to:+16513335289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:03 ip-10-0-0-10 mdr: 2016-02-01 11:46:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346113] [to:15084685298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14783047038] [to:14783207158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:17603492208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17875647541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334477] [to:18127187555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885078] [to:19794847020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188772617] [to:13173537258] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178249130] [to:+16673083103] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088900] [to:18025405758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:04 ip-10-0-64-11 mdr: 2016-02-01 11:46:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-11 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326431] [to:12293259380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:04 ip-10-0-0-10 mdr: 2016-02-01 11:46:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157153] [to:13306412885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559045] [to:18502557652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:14403847756] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739060] [to:17177365783] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786930476] [to:+13478999601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012209093] [to:+19018428643] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649852513] [to:+15713927866] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434886828] [to:+16474954504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19856347349] [to:+12139926405] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072088391] [to:+19259574654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784991487] [to:+17747288291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726432968] [to:+17727746761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15206063298] [to:+19172668471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106918682] [to:+19194158126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738731603] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228730] [to:16147958772] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:12704982043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-11 mdr: 2016-02-01 11:46:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194399729] [to:+14199649063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:05 ip-10-0-0-10 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:05 ip-10-0-64-11 mdr: 2016-02-01 11:46:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049616814] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14232187162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-20 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049514864] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074030723] [to:+19173911128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800625] [to:12037272863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-20 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394794] [to:12165430434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12049811942] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15037916506] [to:+13606383149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289325] [to:14132214877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693537168] [to:12148009946] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657216138] [to:+19789697175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-10 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:06 ip-10-0-0-10 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:06 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-11 mdr: 2016-02-01 11:46:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857540670] [to:+15852821386] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142505276] [to:+14388078595] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303574179] [to:+13308503566] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048130387] [to:12048981449] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-11 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:07 ip-10-0-64-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817041445] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:07 ip-10-0-0-10 mdr: 2016-02-01 11:46:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12103654167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527916] [to:15175541328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:16032096760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196402125] [to:+18193035453] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319655369] [to:+16319800677] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022102429] [to:+19027031277] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:08 ip-10-0-64-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109085205] [to:+18108527276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-10 mdr: 2016-02-01 11:46:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:08 ip-10-0-0-11 mdr: 2016-02-01 11:46:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022711741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373350] [to:13216140364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210847] [to:16415720658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+13479804726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306393477] [to:+19179797029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163236057] [to:+16169524529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14135196803] [to:+14132736399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014010907] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132105] [to:16033727691] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950178] [to:19049625332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139480] [to:13864022905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-20 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-20 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409702279] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-11 mdr: 2016-02-01 11:46:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697062] [to:17146102331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:09 ip-10-0-64-11 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15097653141] [to:+14259392511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:09 ip-10-0-0-10 mdr: 2016-02-01 11:46:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006547] [to:14143797109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720955] [to:16063103027] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923883] [to:14508212349] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804615217] [to:+15169341259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027043143] [to:+12405587801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016457490] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348211034] [to:17342490822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107817097] [to:+17279165802] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183789717] [to:+16474955955] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153136417] [to:+12677939213] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:10 ip-10-0-64-10 mdr: 2016-02-01 11:46:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477388388] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:10 ip-10-0-0-10 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702847104] [to:+17186755485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15405744377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522103124] [to:+13867428657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-20 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+17185044879] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003410202] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+17185044879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003410201] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285036] [to:16617723786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506006293] [to:+16474942969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313424954] [to:+12312996231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674240776] [to:+12678676882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927794] [to:14389325721] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19142616925] [to:+18455797405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337199] [to:15205600256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-10 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:11 ip-10-0-0-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:11 ip-10-0-64-11 mdr: 2016-02-01 11:46:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155547] [to:15184814726] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370399] [to:13304421032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896968412] [to:+15103135693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216848694] [to:+19177731867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683140] [to:16037484577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653981619] [to:+14156493971] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-20 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12087868669] [to:+12085010815] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582528360] [to:+16198245807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655322078] [to:+12315987384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807496184] [to:+19286605228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:17702669189] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-10 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:15142682236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:12 ip-10-0-0-11 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406766] [to:12267552847] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:12 ip-10-0-64-10 mdr: 2016-02-01 11:46:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406408] [to:16266248591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16262302813] [to:+13234865296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056079] [to:19025410220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845772242] [to:+17185040321] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-21 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503007077] [to:16157273177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463271913] [to:+19175638045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124451] [to:16789936001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19202158468] [to:12624841854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387942525] [to:15142684854] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184166884] [to:13085205016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167850927] [to:+17162790915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438446989] [to:+14433453617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618461660] [to:+13479196773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995694] [to:18643848915] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-0-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995694] [to:18643848915] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547678] [to:17406441440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791559] [to:17169550738] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-10 mdr: 2016-02-01 11:46:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:13 ip-10-0-64-11 mdr: 2016-02-01 11:46:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096491697] [to:+17097000606] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16063042837] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968750] [to:19312064640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048587320] [to:+19802094130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182480415] [to:+12183311094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487030383] [to:+16467691184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15093182063] [to:19174102130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096423294] [to:+13239169121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698756] [to:12092419781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542538846] [to:+19543236887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774210] [to:17323370459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051105] [to:15416807562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:14 ip-10-0-0-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-10 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:14 ip-10-0-64-11 mdr: 2016-02-01 11:46:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313367] [to:18504050710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451205570] [to:+447900453656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538753] [to:16716867460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19125904181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029747896] [to:+13479067231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406767] [to:15194959558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077884893] [to:14037080437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199127628] [to:+19142060462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451224182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753612115] [to:+15758258609] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-20 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-11 mdr: 2016-02-01 11:46:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:15 ip-10-0-64-10 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:15 ip-10-0-0-11 mdr: 2016-02-01 11:46:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383515901] [to:+15146007224] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077319856] [to:+14804392828] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133339686] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158538837] [to:17348909353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954151] [to:13123308217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066531264] [to:+15068036323] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237188669] [to:+14702051089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:16 ip-10-0-0-11 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028303615] [to:+19027058163] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-11 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:16 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672744] [to:12525787449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000711] [to:18194212109] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:17405413078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408483] [to:12899685272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028304748] [to:+13366450228] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000711] [to:18194212109] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042247814] [to:+13866017065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383918586] [to:+15146008193] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328595137] [to:+17133099109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708955280] [to:+17702005072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:17 ip-10-0-64-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315317163] [to:16316275951] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-11 mdr: 2016-02-01 11:46:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:17 ip-10-0-0-10 mdr: 2016-02-01 11:46:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065210769] [to:+19148608471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512063084] [to:+15085569820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305697] [to:16363831045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967315] [to:19313166148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022321749] [to:+18133206002] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433030733] [to:+15614052429] [flags:-1:0:-1:0:-1] [msg:80:Watch "Gyptian - Hold You [OFFICIAL HD]" on YouTube.https://youtu.be/O6SeD1xE7NA] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-21 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418328300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693537168] [to:12148009946] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016049995] [to:+13479748218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16472241720] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-20 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706775669] [to:+13214067519] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204875086] [to:18124300595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047988] [to:12265670576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730784] [to:17065183131] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800677] [to:16319655369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:18 ip-10-0-0-10 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:18 ip-10-0-64-11 mdr: 2016-02-01 11:46:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023221] [to:14236643505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479499195] [to:+17133894269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023931509] [to:+14703336578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602324712] [to:+14437201258] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013747] [to:18585251970] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:5212225106054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144282224] [to:+13473898083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039618] [to:16477039973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14109636666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674543353] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18316761656] [to:+18316124796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-21 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451218105] [to:+447709606494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668364] [to:15046213392] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295065] [to:12056410487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313367] [to:18504050710] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:15108203887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-10 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:19 ip-10-0-64-11 mdr: 2016-02-01 11:46:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:19 ip-10-0-0-11 mdr: 2016-02-01 11:46:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404428291] [to:+18572406337] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-20 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539354207] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074859311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078411351] [to:+13478029229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-21 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623025] [to:17757457558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381471] [to:18634141665] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-11 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:20 ip-10-0-64-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672168308] [to:+14242218342] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:20 ip-10-0-0-10 mdr: 2016-02-01 11:46:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364069] [to:+13479714835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B80202] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262467458] [to:+12488569623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853151147] [to:+15852822671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233123651] [to:+14242866898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328276] [to:15135356668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939396] [to:19784769160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039411] [to:17805236815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-20 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132636043] [to:+19142795655] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12488921382] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077385032] [to:+16474916510] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407665] [to:15612944177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188120222] [to:+15817021210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:12144709530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-10 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222221] [to:12108004377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:21 ip-10-0-64-11 mdr: 2016-02-01 11:46:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:21 ip-10-0-0-11 mdr: 2016-02-01 11:46:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472902] [to:16015201556] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093697792] [to:+19705481536] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037162] [to:16478739221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211531] [to:18036405628] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374811536] [to:+14156495220] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592622] [to:13347810480] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176709725] [to:+12606337316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937161] [to:17347552346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637336461] [to:+14844893480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:13014376809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-10 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:22 ip-10-0-64-11 mdr: 2016-02-01 11:46:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134362602] [to:+15613284191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:22 ip-10-0-0-11 mdr: 2016-02-01 11:46:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640956] [to:16073318346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14253327365] [to:14253954905] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415743] [to:15194960849] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:14403847756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-21 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174065310] [to:+19177905623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149195037] [to:+15817009545] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000468] [to:13022901891] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12195150962] [to:+14074424112] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13474857423] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044545419] [to:+13478023293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-11 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:23 ip-10-0-0-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:23 ip-10-0-64-10 mdr: 2016-02-01 11:46:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016083335] [to:+13479804118] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012412172] [to:+19142815860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708955280] [to:+17702005072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218107] [to:18103942234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-20 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312246495] [to:+19142065431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626077783] [to:+17604747759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365200944] [to:+16504860086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176350368] [to:+13476568672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432774] [to:16157130942] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043816282] [to:+14318002493] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-11 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-10 mdr: 2016-02-01 11:46:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232375] [to:19706739431] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:24 ip-10-0-64-11 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:24 ip-10-0-0-10 mdr: 2016-02-01 11:46:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053692098] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093327275] [to:+16096144608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673492] [to:17173713372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626007506] [to:+18102218495] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282470394] [to:+19298411121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14174251157] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097697477] [to:+16474951899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034740] [to:15153138053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:12709871579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185574] [to:13479846002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063103027] [to:+19172720955] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040275] [to:+15109487446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799290] [to:13134125702] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088602] [to:12673530753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-10 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732090] [to:14239947333] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-20 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539999320] [to:+447451202840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-20 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-11 mdr: 2016-02-01 11:46:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801492] [to:19062392380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:25 ip-10-0-0-11 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:25 ip-10-0-64-10 mdr: 2016-02-01 11:46:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195665770] [to:+14199649297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362796305] [to:+19199164271] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201815] [to:18026835973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169834532] [to:+12136946355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19727467724] [to:+18178184809] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099548597] [to:+16467019567] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220658] [to:12056030376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:26 ip-10-0-0-21 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-11 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12493582804] [to:+18678883672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:26 ip-10-0-64-10 mdr: 2016-02-01 11:46:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515792] [to:18502519544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206921693] [to:+13034987800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047988] [to:16139177237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615022359] [to:+15612400015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037438298] [to:+19719997808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025530322] [to:+16474938803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397459172] [to:+17723618182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052450] [to:19039268925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:27 ip-10-0-0-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034334] [to:17246915536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783633] [to:18508438473] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-10 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:27 ip-10-0-64-11 mdr: 2016-02-01 11:46:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672287079] [to:+15672819597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476911999] [to:16479092277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702696110] [to:+15703973326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087598234] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886930] [to:+15103227226] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058279965] [to:+12132950112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505916368] [to:+18506313011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-21 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833254834] [to:+447451208710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D70201] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734801] [to:17062333283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:28 ip-10-0-0-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003500201] -Feb 1 11:46:28 ip-10-0-64-10 mdr: 2016-02-01 11:46:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003500202] -Feb 1 11:46:28 ip-10-0-0-11 mdr: 2016-02-01 11:46:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705899009] [to:+15028041359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14149731051] [to:14145106621] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999601] [to:16786930476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407130] [to:13184611862] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12292880392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016429] [to:13372900906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-10 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-64-10 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802978] [to:14232922588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:29 ip-10-0-0-11 mdr: 2016-02-01 11:46:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413715] [to:17042878210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977086] [to:15709032476] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729406961] [to:+17723601672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101966] [to:17404422065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409101966] [to:17404422065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672287079] [to:+15672819597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077338] [to:14508032001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475697] [to:17029085969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:30 ip-10-0-0-11 mdr: 2016-02-01 11:46:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475492498] [to:+16474916287] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-11 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:30 ip-10-0-64-10 mdr: 2016-02-01 11:46:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336531] [to:16512027331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439332270] [to:+19177739867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138587147] [to:+13867425695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178089932] [to:+17185048960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026779] [to:19027172133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035657964] [to:+13473798865] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474592315] [to:+12897690298] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865676677] [to:+18107725866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857476332] [to:+12542338127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-20 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807720499] [to:+15052573412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737575493] [to:+12138063188] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AE0202] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063150711] [to:+14706734737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:31 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:31 ip-10-0-64-10 mdr: 2016-02-01 11:46:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227198] [to:14703314039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036323] [to:15066531264] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734892989] [to:+13479808547] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:19803544811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824933] [to:19082901378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531125] [to:19857208284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063152] [to:13219877037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16472095442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13147638838] [to:15593488805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908522] [to:18144945048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674883] [to:13347994854] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341259] [to:15804615217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:32 ip-10-0-64-10 mdr: 2016-02-01 11:46:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193221] [to:17652718975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:32 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12696358640] [to:+17865030611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864022905] [to:+16172139480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026779] [to:19027172133] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142675031] [to:+15817000796] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086153722] [to:+15714412128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708955280] [to:+17702005072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681329] [to:+19298419816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569820] [to:19512063084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335678] [to:12409889958] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824933] [to:19082901378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567527] [to:19022091531] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674883] [to:13347994854] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-21 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049474416] [to:+13025957961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:33 ip-10-0-64-10 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349983] [to:16062265799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:33 ip-10-0-0-11 mdr: 2016-02-01 11:46:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500702] [to:19196100083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039549] [to:18195522099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309496270] [to:+19148818715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15043148958] [to:+18724002973] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222398] [to:15136030839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136036940] [to:14238380520] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062432] [to:13606271367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592622] [to:18187385879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576472297] [to:+14845772851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183490464] [to:+12133756533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:34 ip-10-0-0-11 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168646735] [to:+17162792660] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:12897711445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:34 ip-10-0-64-10 mdr: 2016-02-01 11:46:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047497273] [to:+16049019730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404373] [to:15612818046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15717301018] [to:+13478021791] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515349] [to:13526310668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-21 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674824] [to:+447977665991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17605962403] [to:+16264278164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625180411] [to:+16177064384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19546412928] [to:18282151813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142940041] [to:+17142612871] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-10 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-10 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19513640829] [to:19513742896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:35 ip-10-0-64-11 mdr: 2016-02-01 11:46:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:35 ip-10-0-0-20 mdr: 2016-02-01 11:46:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987384] [to:17655322078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173622208] [to:+19177248307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852807] [to:13023968865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13376802182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834035] [to:17606944946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975401] [to:12054091649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237772859] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-11 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-10 mdr: 2016-02-01 11:46:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635295264] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18073552947] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:36 ip-10-0-64-11 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:36 ip-10-0-0-10 mdr: 2016-02-01 11:46:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-21 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-21 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263785051] [to:+12897683470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981016] [to:15195322905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362057813] [to:+19092882054] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176483461] [to:+18174057986] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:16142820107] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072899187] [to:+15089668780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-10 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674084560] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:37 ip-10-0-64-11 mdr: 2016-02-01 11:46:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315363] [to:14782970921] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:37 ip-10-0-0-11 mdr: 2016-02-01 11:46:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786256] [to:13013313349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478088] [to:15169650645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788145] [to:16014551872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696859] [to:19063736101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724657] [to:17047762983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:13866977558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169174] [to:17178211133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:13023845847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748892] [to:15865881077] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-11 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-10 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:38 ip-10-0-64-11 mdr: 2016-02-01 11:46:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817021210] [to:14188120222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:38 ip-10-0-0-10 mdr: 2016-02-01 11:46:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079687320] [to:15187526877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027026779] [to:19027172133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404981904] [to:+16466691506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134362602] [to:+15613284191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086602237] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586355] [to:19192723018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198307] [to:13474857423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134535846] [to:+18572402049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135806227] [to:+18133208963] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763453281] [to:+12139297141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475529221] [to:+19176634561] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:39 ip-10-0-0-11 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:39 ip-10-0-64-10 mdr: 2016-02-01 11:46:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036824661] [to:+18133087336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787705714] [to:+16784007781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162621429] [to:+12169295373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189775233] [to:+15186155153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405597056] [to:+15104555437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705717575] [to:+19703156742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169943432] [to:+12015805945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143709835] [to:+16149228066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857751218] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-21 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447519530873] [to:+447418326729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388076731] [to:15149438047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-21 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447827810955] [to:+447451205289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107600] [to:12394101197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916287] [to:16475492498] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-11 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:40 ip-10-0-0-10 mdr: 2016-02-01 11:46:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:40 ip-10-0-64-10 mdr: 2016-02-01 11:46:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612324] [to:12282970061] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859338] [to:18606924656] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:12292696991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024654377] [to:+17026747812] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888903] [to:18438269579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022778] [to:18478478458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478678449] [to:+12897680728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235998753] [to:+17605899886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246792305] [to:+16157778767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14405716006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-20 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418321077] [to:+447983249349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068812825] [to:+13069929469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059319758] [to:+16474910229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088188960] [to:14084382329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695327754] [to:12148819339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654109482] [to:+19027043769] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794021041] [to:+19798885274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452635] [to:12708818568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067231] [to:15029747896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-10 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:41 ip-10-0-0-10 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:41 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12069006587] [to:+12062588048] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040507] [to:+15169268413] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039462361] [to:+17036466323] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037162] [to:12265812536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123040366] [to:+13867425077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009119] [to:17244331567] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-64-11 mdr: 2016-02-01 11:46:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-11 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154305461] [to:+13479809270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:42 ip-10-0-0-10 mdr: 2016-02-01 11:46:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647810] [to:+19717328525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19409993467] [to:+15594298091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109486493] [to:15106063796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027348956] [to:+13477973862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-20 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447563608930] [to:+447520608452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194657797] [to:+12262405127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067483848] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:14186335020] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18672226109] [to:+16474985168] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:14186335020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406279] [to:18127014204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:43 ip-10-0-64-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322711736] [to:+14043411557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] TRU3-2-D@-G@M3: My "Brand new n box*u... |To reply or get more information, please use the 5miles app http://bit.ly/5miles_download] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-10 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15403833630] [to:+19142286950] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-21 mdr: 2016-02-01 11:46:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:43 ip-10-0-0-11 mdr: 2016-02-01 11:46:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125755] [to:13369353382] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893012827] [to:+14388097019] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17623596566] [to:+15109481329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17747288441] [to:13106546786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104916495] [to:+14049002283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067478504] [to:+12536423566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18602344617] [to:+13477368760] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657156] [to:15125915514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-20 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447961576702] [to:+447451241410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336531] [to:16512027331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736067] [to:15136304602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064478] [to:17656170602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045115] [to:15142588758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-11 mdr: 2016-02-01 11:46:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805085] [to:18049991057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:44 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:44 ip-10-0-64-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062514093] [to:+14049002925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048948354] [to:+12048137453] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528569] [to:13308832974] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:14169955502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236749829] [to:+16269882875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12263122733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123419378] [to:+12139926668] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-21 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447925335976] [to:+447451248629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12174889490] [to:12244805106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786256] [to:13013313349] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055003093] [to:+17053028060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054665820] [to:+12264550984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-64-10 mdr: 2016-02-01 11:46:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706017786] [to:+15129524840] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:45 ip-10-0-0-11 mdr: 2016-02-01 11:46:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16603739384] [to:+16602009564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218342] [to:12672168308] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875647541] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958898] [to:16014936262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472328671] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315431] [to:14233073823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475529221] [to:+19176634561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477775228] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706017786] [to:+15129524840] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768481] [to:14173506891] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033913] [to:17245561514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-11 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:46 ip-10-0-64-10 mdr: 2016-02-01 11:46:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996400] [to:+19148988246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:46 ip-10-0-0-10 mdr: 2016-02-01 11:46:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304471833] [to:+13302373880] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503397959] [to:18433378831] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475529221] [to:+19176634561] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-11 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:47 ip-10-0-64-11 mdr: 2016-02-01 11:46:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803932] [to:13058794898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:47 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312010777] [to:+12132958227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003620202] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003620201] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402449589] [to:+19172834604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211531] [to:18036405628] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045750592] [to:+19047587907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19492410085] [to:+17144554428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907745] [to:12253337739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138755576] [to:+12013408961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17876854611] [to:+13477146633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:17185067069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144373555] [to:+16136047629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313342620] [to:+16319802322] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373228161] [to:+12139731971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292720365] [to:+16463495472] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14049183395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594397] [to:19016540281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:48 ip-10-0-0-10 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17604838527] [to:+16193449064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-11 mdr: 2016-02-01 11:46:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521325] [to:+18637347333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:48 ip-10-0-64-10 mdr: 2016-02-01 11:46:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406279] [to:18127014204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-20 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447463795268] [to:+447451214836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502559] [to:19569439085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062196355] [to:+17474006291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18432507845] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023419] [to:19125904181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722617017] [to:+14692050670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899685272] [to:+12262408483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408972] [to:19042145571] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:18606800298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072512971] [to:+18077886907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14026198246] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092931182] [to:19096621069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997882] [to:18156010635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400892] [to:17868043234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502883] [to:12102152467] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18057516456] [to:+14088725329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852807] [to:13022788573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:49 ip-10-0-0-11 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073429723] [to:+14076333618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:49 ip-10-0-64-10 mdr: 2016-02-01 11:46:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014376809] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046181] [to:17097281754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15092798859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482232218] [to:+17324360210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13209681757] [to:+13023744978] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807496184] [to:+19286605228] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177454897] [to:+18638557405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610801] [to:14193089562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960585] [to:17023080048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092419781] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896972265] [to:+17053007867] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:50 ip-10-0-0-10 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:50 ip-10-0-64-11 mdr: 2016-02-01 11:46:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108203887] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679873617] [to:+12695755278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004499] [to:14804307406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817018878] [to:14183789353] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807496184] [to:+19286605228] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054172587] [to:+17053024510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:17184191197] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:17184191197] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784769160] [to:+19785939396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612976] [to:13309575021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796120] [to:16143599291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476139192] [to:+19172319753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865881077] [to:+15865748892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963187] [to:17407047986] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238836824] [to:+12138023221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035779287] [to:+19292009750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168556917] [to:+17186755876] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348210880] [to:13365667932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074931] [to:16136200405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132122692] [to:+17348228921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-11 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-11 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:51 ip-10-0-0-10 mdr: 2016-02-01 11:46:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053562584] [to:+12136165115] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:51 ip-10-0-64-10 mdr: 2016-02-01 11:46:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:17184191197] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12109087789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472488298] [to:+13477749677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146007717] [to:19512698756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491348] [to:16065153390] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239947333] [to:+14706732090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474320212] [to:+19193240690] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039411] [to:15872988579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-21 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447548455317] [to:+447520625379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003D30201] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18597777587] [to:18057034991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313084869] [to:+16158433233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18282432619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546369878] [to:+17542220406] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376182400] [to:+12133550105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132008433] [to:+16136048237] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233030037] [to:+14422816691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778394] [to:12317351128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232187162] [to:+17633015532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:15147552912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:52 ip-10-0-0-10 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644784234] [to:+13477988215] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-11 mdr: 2016-02-01 11:46:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509617740] [to:+17784030420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:52 ip-10-0-64-10 mdr: 2016-02-01 11:46:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362843580] [to:+16503008450] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444162] [to:13373775222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034008297] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:16014010907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132610] [to:16179926677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-20 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696841500] [to:+19039005799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-0-10 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15093680772] [to:+16367305888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-10 mdr: 2016-02-01 11:46:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:53 ip-10-0-64-11 mdr: 2016-02-01 11:46:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068214220] [to:+13064000712] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-21 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612013530] [to:+13053404373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782442634] [to:+14706733898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192965379] [to:+15672057151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313011] [to:18505916368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362255215] [to:+19712488937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709357127] [to:+12543347318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050459] [to:15877799420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756533] [to:13183490464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018579395] [to:16095536568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928081] [to:13062164573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:18084451090] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12026389438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:54 ip-10-0-64-10 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201609] [to:18084369266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:54 ip-10-0-0-11 mdr: 2016-02-01 11:46:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046292158] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061277] [to:19143181483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16472305223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074931] [to:16136200405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073321964] [to:+19172833425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502519544] [to:+17866515792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16615757646] [to:+14064043981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656674872] [to:+17659869148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162627375] [to:+15852823244] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18055380918] [to:+18053666515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057670491] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649064942] [to:+18649999072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408177168] [to:+15172527779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306362239] [to:+13473797983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086856006] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477775228] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737575493] [to:+12138063188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003AE0201] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18637336461] [to:+14844893480] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289190184] [to:+14156538130] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362073312] [to:+13366450228] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123984091] [to:+14158535056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176522959] [to:+19148485134] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284900215] [to:+13479806062] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027613882] [to:+13025830143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-11 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:55 ip-10-0-0-21 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:55 ip-10-0-64-10 mdr: 2016-02-01 11:46:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027517234] [to:+12027179708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12134362602] [to:+15613284191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482617] [to:16084501014] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058794898] [to:+17864803932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609169790] [to:+13474916824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029085969] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15407465747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183155929] [to:+15103404745] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676882] [to:12674240776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343741] [to:16613018828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-20 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447548455317] [to:+447520625379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D30202] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136325049] [to:14406376893] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236887] [to:19542538846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478518] [to:19292534182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733598440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040606] [to:+13025958560] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17632600441] [to:+17638529142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-11 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377792690] [to:+19172319789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-11 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:56 ip-10-0-0-21 mdr: 2016-02-01 11:46:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202367] [to:+447734006469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:56 ip-10-0-64-10 mdr: 2016-02-01 11:46:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16312558076] [to:+16319800673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985151] [to:15803063324] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187526877] [to:+16079687320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040336] [to:12677519515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194949400] [to:+12262408894] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802089806] [to:+17175909035] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040336] [to:12677519515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045731902] [to:+17324360492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-10 mdr: 2016-02-01 11:46:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13342008358] [to:+12139296952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162455829] [to:19165851065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:57 ip-10-0-64-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:57 ip-10-0-0-11 mdr: 2016-02-01 11:46:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664711] [to:18606800298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784967057] [to:17622099493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558022] [to:17187754566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19515811652] [to:+15109722017] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14783529172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067179] [to:12019198909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:58 ip-10-0-64-10 mdr: 2016-02-01 11:46:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:58 ip-10-0-0-11 mdr: 2016-02-01 11:46:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725734] [to:15599747731] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015201556] [to:+16465472902] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165736027] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522152742] [to:+19415255263] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059239669] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15022291858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-10 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406905] [to:14022180266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333286] [to:17405919847] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-10 mdr: 2016-02-01 11:46:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035843] [to:12818895016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:46:59 ip-10-0-0-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475924] [to:+18107888119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:46:59 ip-10-0-64-11 mdr: 2016-02-01 11:46:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138255109] [to:+18639491815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637936] [to:17204862359] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0201] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184611862] [to:+18572407130] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067940] [to:16156186095] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785335083] [to:19785510520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:13173066766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16096728015] [to:+16095434122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:00 ip-10-0-64-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126250] [to:16137103299] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:00 ip-10-0-0-10 mdr: 2016-02-01 11:47:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0202] -Feb 1 11:47:00 ip-10-0-64-10 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16132008433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106063796] [to:+15109486493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291617] [to:19366413872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122229] [to:18193296667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-21 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264552280] [to:15199927774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:16477046128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835091] [to:19122469038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-11 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:18434190502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264278164] [to:17605962403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069607] [to:15732479570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:01 ip-10-0-0-11 mdr: 2016-02-01 11:47:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:01 ip-10-0-64-10 mdr: 2016-02-01 11:47:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217872] [to:12195082236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361920] [to:14043981843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316834] [to:17275051038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852877409] [to:+13477055993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147759772] [to:+19179772388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819597] [to:15672287079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557740] [to:12398481235] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133528494] [to:+17072427827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-21 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983624870] [to:+447451236755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054466051] [to:+12898045491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007946] [to:19793249766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-11 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007946] [to:19793249766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-10 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:02 ip-10-0-64-10 mdr: 2016-02-01 11:47:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:02 ip-10-0-0-11 mdr: 2016-02-01 11:47:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12484601194] [to:15862603430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13103470286] [to:17096850923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138982] [to:13174077188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513075260] [to:+16079655925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594637] [to:17788478782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042935] [to:16138896461] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432774] [to:16157130942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340670] [to:13364575176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044253453] [to:+15713929494] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-10 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042991713] [to:+14846339082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-10 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:03 ip-10-0-64-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788678365] [to:18106268717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:03 ip-10-0-0-11 mdr: 2016-02-01 11:47:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747080] [to:18646847471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715927] [to:14133109165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:16192088512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997931] [to:12172745868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721202] [to:15042989185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493132] [to:15807476392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155127072] [to:13179357300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804615217] [to:+15169341259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594863] [to:16048456563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298337] [to:19372728999] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-10 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15412488410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-10 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706739431] [to:+17206232375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-10 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029747896] [to:+13479067231] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793144] [to:17162884950] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-10 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155147867] [to:+19132973506] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:04 ip-10-0-0-11 mdr: 2016-02-01 11:47:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124760] [to:14842418245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:04 ip-10-0-64-11 mdr: 2016-02-01 11:47:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066531264] [to:+15068036323] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17248807934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680728] [to:16478678449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843530644] [to:+14845354704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093810668] [to:+18569429261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784769160] [to:+19785939396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:12028304748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673931874] [to:+13479190027] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032B0201] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562672537] [to:+13478992504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863533219] [to:+18103393179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003930201] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12512068624] [to:12516056820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17062436826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863533219] [to:+18103393179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003930202] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879216] [to:13132960508] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044887772] [to:+13476677401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168306288] [to:+16474946811] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196495751] [to:+16317732523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12075577802] [to:+13478084695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195322905] [to:+12267981016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305101774] [to:+13477368676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032B0202] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236643505] [to:+12138023221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552176] [to:18638082631] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-11 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146266] [to:19739109400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:05 ip-10-0-64-11 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+14387922726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:05 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806230] [to:19106749017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314488] [to:17166034883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918219] [to:18192667857] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950112] [to:18058279965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472325817] [to:+13658005778] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594917] [to:16043437548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:13863076177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403969088] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146005726] [to:17875163586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477966672] [to:15857734605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:14106108798] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134204745] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228650] [to:17205577835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065802112] [to:+17097022790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479804016] [to:15136579083] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:16289994874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226381] [to:+19027043677] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:06 ip-10-0-0-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-10 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085205016] [to:+17184166884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:06 ip-10-0-64-11 mdr: 2016-02-01 11:47:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-11 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-11 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044960775] [to:+13143009812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475566914] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-10 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+15874108064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18282432619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-10 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804432] [to:12704071595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416619185] [to:+13478999339] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:07 ip-10-0-0-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:07 ip-10-0-64-11 mdr: 2016-02-01 11:47:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166521426] [to:+14157614531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203706] [to:14434736890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755751] [to:12292064989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704067233] [to:+15703973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194168] [to:18142549497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033579240] [to:+17784024642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-10 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+17786530098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-10 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:08 ip-10-0-64-11 mdr: 2016-02-01 11:47:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137329] [to:12049967089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:08 ip-10-0-0-11 mdr: 2016-02-01 11:47:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070670] [to:12605179085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167881312] [to:+16163190554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139099402] [to:16133620404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029648] [to:15065430730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029648] [to:15065430730] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634637] [to:16179670074] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026389438] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018983] [to:13233146490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132634648] [to:+16467019259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-20 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057217345] [to:+15058004308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404072380] [to:+17408797442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145687523] [to:+14388076819] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053213034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145687523] [to:+14388076819] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056328982] [to:+13218328096] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-11 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336564] [to:17066993936] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:09 ip-10-0-64-10 mdr: 2016-02-01 11:47:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130751] [to:14403097373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:09 ip-10-0-0-11 mdr: 2016-02-01 11:47:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479289245] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752688237] [to:+13475088816] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409980560] [to:+12138612251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073006] [to:13208280141] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079222138] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340670] [to:13364575176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14405716006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15058041546] [to:+19172610496] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019136] [to:17096971455] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068718878] [to:+18194141002] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:13302893502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400803] [to:16015008810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168958] [to:15088276351] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046980953] [to:+16474914830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702567804] [to:+19318968026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:10 ip-10-0-0-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706731698] [to:17062370467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109486493] [to:15106063796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966329] [to:14047174063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-10 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:10 ip-10-0-64-11 mdr: 2016-02-01 11:47:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406018288] [to:+17408796489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739060] [to:17177759149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-11 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-20 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-11 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095894861] [to:+16475566599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:18193835962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149027245] [to:14432073732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-11 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:19058990097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001803] [to:13022783882] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-64-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159978577] [to:+12138221514] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-20 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608094] [to:+447849587161] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:11 ip-10-0-0-10 mdr: 2016-02-01 11:47:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:14014419816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092933325] [to:19513979117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407130] [to:13184611862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705802769] [to:+19177229859] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-21 mdr: 2016-02-01 11:47:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137705] [to:13049942630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-10 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376602] [to:16077430582] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:12 ip-10-0-64-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12546930542] [to:12542661857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:12 ip-10-0-0-11 mdr: 2016-02-01 11:47:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:14075450422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364164] [to:+17073418220] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789754] [to:15134290096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727746761] [to:17726432968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959257] [to:18186209963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641141] [to:16063105974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388042787] [to:15148823412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:15732057907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:18193835962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679056669] [to:+12674377313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-11 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188383449] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:13 ip-10-0-64-10 mdr: 2016-02-01 11:47:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942969] [to:12506006293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:13 ip-10-0-0-11 mdr: 2016-02-01 11:47:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220556] [to:15183796641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138027309] [to:18122204541] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051089] [to:14237188669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135287643] [to:+12132955333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375421] [to:14235050342] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955627] [to:19053302134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-21 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447565324860] [to:+447520627310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817256] [to:13158042151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308087405] [to:16624208708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072700] [to:15146475649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:14169109836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17166661243] [to:17168030337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188371425] [to:+17037479571] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:14 ip-10-0-0-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:14 ip-10-0-64-10 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13529426885] [to:+17863228966] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900743] [to:+15147003846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15065305511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767924] [to:15172158103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:15732057907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747802342] [to:+15103135418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051105] [to:15416807562] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043385565] [to:+18046242565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523425279] [to:+14153407810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-11 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282165725] [to:+15103404686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:12896866174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:15 ip-10-0-0-10 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538526] [to:13344750876] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:15 ip-10-0-64-11 mdr: 2016-02-01 11:47:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604747080] [to:18646847471] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338931] [to:+14706731996] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:12896866174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372065] [to:13526539597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182909285] [to:+12182031445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067231] [to:15029747896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475463195] [to:+12897808703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026518] [to:19377035100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848382199] [to:+18572191674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696723051] [to:14699079158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212505796] [to:+19047582171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042945872] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:12564054304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746230] [to:17606754862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022034792] [to:+16574008980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973132] [to:15704067233] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704101199] [to:+16476913247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914804] [to:17054347266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-0-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303557289] [to:+18302826524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16613015758] [to:+16612287675] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287385790] [to:+14806664660] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-10 mdr: 2016-02-01 11:47:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055322924] [to:+19717778651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:16 ip-10-0-64-11 mdr: 2016-02-01 11:47:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190182] [to:16064163016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19548681033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746288915] [to:+13478969660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095521325] [to:+18637347333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524681907] [to:+14158536468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182432627] [to:+19298410232] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746288915] [to:+13478969660] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346720555] [to:+17348210951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066154858] [to:+15713055821] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-10 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:17 ip-10-0-64-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:17 ip-10-0-0-11 mdr: 2016-02-01 11:47:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371931] [to:17656026015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12104879162] [to:+18326502883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196791245] [to:+18193073549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15837959548] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042993352] [to:+12048138425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139480] [to:13864022905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13166804610] [to:+14157995573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227198] [to:13409980893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133490825] [to:+17727747401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066970006] [to:+16475567148] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782168997] [to:19789960509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:18 ip-10-0-64-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-11 mdr: 2016-02-01 11:47:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011434] [to:18193833661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:18 ip-10-0-0-10 mdr: 2016-02-01 11:47:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027018682] [to:15064422711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422816691] [to:14233030037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322463562] [to:12819794806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612841506] [to:+14029997120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053361348] [to:+16193501462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899446] [to:15612467824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776639] [to:12163527308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888903] [to:18433128855] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657808] [to:12532397267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-11 mdr: 2016-02-01 11:47:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:19 ip-10-0-0-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409702279] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-11 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:19 ip-10-0-64-10 mdr: 2016-02-01 11:47:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01151981554442] [to:+16784342385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033401608] [to:+12148149833] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-20 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221289] [to:+447936996807] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103746899] [to:+13218329599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567714355] [to:+13473439927] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096971455] [to:+17097019136] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189780798] [to:+12138228308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612841506] [to:+14029997120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012639] [to:14186375399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198033232] [to:+12262437224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154799754] [to:+12156667388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864803932] [to:13058794898] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477137] [to:14847441875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133126720] [to:+18133208532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526427] [to:14402630985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407727355] [to:+12132951820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12709357127] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023109279] [to:+17182559402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147576878] [to:+14502337137] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:20 ip-10-0-64-10 mdr: 2016-02-01 11:47:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:20 ip-10-0-0-11 mdr: 2016-02-01 11:47:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245561514] [to:+17248033913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475566914] [to:+17185040491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239571330] [to:+12139359354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705702811] [to:+12132954296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143918918] [to:+19298006220] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774423] [to:19168899292] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154606910] [to:+13473438874] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155494861] [to:18478584910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177046162] [to:+15168302393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264551135] [to:12262144226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032945] [to:17244547480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137161018] [to:+16136043428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134438373] [to:+19709997433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407471] [to:19544009182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479806230] [to:19106749017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-11 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796414] [to:13304739936] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:21 ip-10-0-64-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:21 ip-10-0-0-10 mdr: 2016-02-01 11:47:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817863235] [to:17179635652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950498] [to:13179829607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142334832] [to:+14387924513] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402015] [to:14234539515] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102018121] [to:+15068029609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660755] [to:13363036889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672168308] [to:+14242218342] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692223660] [to:15623674331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198322] [to:12074617549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-20 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429261] [to:16093810668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15168282027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-11 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049826038] [to:+13479787564] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:22 ip-10-0-64-10 mdr: 2016-02-01 11:47:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362177816] [to:+19365878635] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:22 ip-10-0-0-10 mdr: 2016-02-01 11:47:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473105952] [to:+13478303187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524684382] [to:+18583606616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168581] [to:16019063763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199065764] [to:+14197459497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:17694872399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168323112] [to:+17279985674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:23 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856890672] [to:+15852825016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-11 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:23 ip-10-0-64-10 mdr: 2016-02-01 11:47:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-10 mdr: 2016-02-01 11:47:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198322] [to:12074617549] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652825575] [to:+18653473297] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125934] [to:19188458396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305900738] [to:+14403594412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043140672] [to:+14437203154] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496267] [to:16465780045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19497989595] [to:+18173988416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-10 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924431] [to:15148829551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897798469] [to:14163895064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852306478] [to:+15852823470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:24 ip-10-0-64-10 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:24 ip-10-0-0-11 mdr: 2016-02-01 11:47:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:12564054304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732479570] [to:+17188069607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147369801] [to:+17408798858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409787032] [to:+17407853117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479979060] [to:13047046778] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16208753416] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692091544] [to:+14149731287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068887] [to:558187797776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672419768] [to:+14197767413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524684382] [to:+18583606616] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068887] [to:558187797776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785864808] [to:16785995050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046040900] [to:+16784348300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104682660] [to:+15103131209] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145020119] [to:+14387942675] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193295777] [to:+16139122628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13365123461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016452] [to:13862626154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:25 ip-10-0-64-11 mdr: 2016-02-01 11:47:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532272] [to:15126564669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-11 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:25 ip-10-0-0-10 mdr: 2016-02-01 11:47:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15749039878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388041074] [to:14507752754] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435425792] [to:+19802092190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576049513] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193772186] [to:+16474953292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755751] [to:12292064989] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526242153569] [to:+17813862838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123557] [to:+16149228644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025957981] [to:+15863315361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104096] [to:19123886758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134199788] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033080339] [to:+15108538276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13056476719] [to:17573542524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957150] [to:14782832263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15024077814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18609710162] [to:18608618951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313637965] [to:+16129305847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-10 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:26 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507827] [to:12253283230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:26 ip-10-0-0-11 mdr: 2016-02-01 11:47:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:14165736027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154605] [to:+19703158397] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-20 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451215609] [to:+447470552128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15106063796] [to:+15109486493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736178] [to:15733595763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864022905] [to:+16172139480] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617045507] [to:+18322847912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477149502] [to:16078466616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-10 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739638904] [to:18622489125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-10 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542538846] [to:+19543236887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:27 ip-10-0-64-11 mdr: 2016-02-01 11:47:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008157] [to:13522072568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:27 ip-10-0-0-11 mdr: 2016-02-01 11:47:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669388] [to:18123749141] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144747205] [to:+18458181056] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874594] [to:12292051436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025397] [to:12508081180] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19414173088] [to:19419296809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725329] [to:18057516456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648155] [to:18603872129] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:28 ip-10-0-64-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196756830] [to:+19194597307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-11 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525441636] [to:+12139218207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:28 ip-10-0-0-10 mdr: 2016-02-01 11:47:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19414173088] [to:19419296809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720119] [to:19125524762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142980012] [to:+15873233127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041560] [to:+16475569746] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14168044208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328333231] [to:+17322582006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062333283] [to:+14706734801] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:17786772651] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018393] [to:19016539906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608244] [to:12674676106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099973556] [to:+19092932136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318295] [to:14435205422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:29 ip-10-0-0-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095532416] [to:+17327068221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-10 mdr: 2016-02-01 11:47:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:29 ip-10-0-64-11 mdr: 2016-02-01 11:47:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028808650] [to:+19027062654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156126933] [to:19123445971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016549845] [to:+18018500580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169676433] [to:+15167349664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142066000] [to:14138879272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222398] [to:15136030839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646847471] [to:+17604747080] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522875166] [to:+12134786189] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099973556] [to:+19092932136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373199] [to:15184100421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262356578] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318295] [to:14435205422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14158636591] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12504600518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-10 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-10 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086137503] [to:+18316107708] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:30 ip-10-0-0-11 mdr: 2016-02-01 11:47:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:30 ip-10-0-64-11 mdr: 2016-02-01 11:47:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-20 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:87770] [to:+447451224651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-20 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451238485] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122204541] [to:+12138027309] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17038554859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168581] [to:15158646688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812171148] [to:+17813129183] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-21 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451239857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594620] [to:18657123487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703049645] [to:+12136165448] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473159] [to:18034775841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341585] [to:15168153812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-11 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:31 ip-10-0-64-10 mdr: 2016-02-01 11:47:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269274720] [to:+12264555307] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:31 ip-10-0-0-10 mdr: 2016-02-01 11:47:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968590] [to:19312134313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148191] [to:+17329869103] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274603] [to:19082945931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252230522] [to:+19718886939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509617740] [to:+17784030420] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672287079] [to:+15672819597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319374] [to:12075926265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084501014] [to:+12626482617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-20 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-20 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451237901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-10 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:32 ip-10-0-0-11 mdr: 2016-02-01 11:47:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842251] [to:14846517576] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:32 ip-10-0-64-11 mdr: 2016-02-01 11:47:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842251] [to:14846517576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587279] [to:19043651736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-21 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792166739] [to:+447520607931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145788877] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077124] [to:14387634957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920117] [to:19207137044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178482803] [to:+12346507710] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564054304] [to:+17726179181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045100446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396132] [to:12162689638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922253] [to:18179337680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231879] [to:16156804487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206629016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:16362903630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17206629016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137705] [to:13049942630] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-10 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:14165736027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-10 mdr: 2016-02-01 11:47:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-64-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:33 ip-10-0-0-11 mdr: 2016-02-01 11:47:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-20 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930655511] [to:+447520629372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232375] [to:19706739431] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028060] [to:17055003093] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049746716] [to:+15103222523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644836308] [to:+19142065456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15122657156] [to:15125915514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692028216] [to:14697342378] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13092134771] [to:+18729996237] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:17078806798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049798739] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093823] [to:12012816436] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524456] [to:12313439036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:14849199988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052465623] [to:+12262412294] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206151716] [to:+17194266096] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749924] [to:19106741869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199432114] [to:+17053004702] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874641141] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049746716] [to:+15103222523] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012639] [to:14186375399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085626] [to:14187826010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328333231] [to:+17322582006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-11 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838487] [to:18594026107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:34 ip-10-0-64-10 mdr: 2016-02-01 11:47:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16672072518] [to:+13214068827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:34 ip-10-0-0-10 mdr: 2016-02-01 11:47:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143417398] [to:+19172751873] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18579970577] [to:+16172139134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999312] [to:+13477749648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731867] [to:13216848694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19018598533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014004034] [to:+12134786193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:12172646434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13059239669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009750] [to:18035779287] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053622392] [to:+17059102381] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615431722] [to:+15612319123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200641] [to:17246503167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133141720] [to:+16139093182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990741] [to:12168565000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755876] [to:12168556917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048842] [to:18604622066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:19146216835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-64-11 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053622392] [to:+17059102381] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:35 ip-10-0-0-10 mdr: 2016-02-01 11:47:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375915] [to:18472223365] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654904775] [to:+13866012215] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176648375] [to:+13479196754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003390201] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610496] [to:15058041546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704071595] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995392] [to:18643089711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147968505] [to:+17205908132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005721] [to:12176634395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14176648375] [to:+13479196754] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003390202] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244209] [to:17409702279] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:12089537512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748495248] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939181] [to:19188518008] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411617] [to:19058186329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:19033632087] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:36 ip-10-0-0-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13109246184] [to:18189138140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-11 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:36 ip-10-0-64-10 mdr: 2016-02-01 11:47:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671610] [to:18604589437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197122328] [to:+18193035229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528421] [to:14406547071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655461890] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720529] [to:18136169757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879894202] [to:+16465130970] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702897395] [to:+13479713797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-10 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125934] [to:19188458396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:37 ip-10-0-0-11 mdr: 2016-02-01 11:47:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:37 ip-10-0-64-11 mdr: 2016-02-01 11:47:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028070598] [to:+19177376990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023446056] [to:+14108342949] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16207414717] [to:+17727740847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402560097] [to:+14158537373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123041537] [to:+13476908575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188182] [to:12512537860] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621893] [to:18572661844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436163482] [to:+18038519931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634251] [to:12079379819] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700652] [to:19802487173] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812737] [to:12404359775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-11 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134199788] [to:+13479199388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338221] [to:19123900745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:38 ip-10-0-64-11 mdr: 2016-02-01 11:47:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:38 ip-10-0-0-10 mdr: 2016-02-01 11:47:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274579873] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308922] [to:13215571300] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045037] [to:15142479030] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-10 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406268705] [to:+12406857743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938810] [to:12679885518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-10 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:39 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:39 ip-10-0-64-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550659] [to:17173854230] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274936723] [to:19546553491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646170891] [to:+18649995804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773829] [to:17657171826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164500397] [to:+15164724862] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098835595] [to:+19172659887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652716196] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315153142] [to:+18678771146] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652716196] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209318574] [to:+14706734815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788919017] [to:+18639493108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874594] [to:12292051436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319374] [to:12074586737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594863] [to:17788089767] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679615155] [to:+12676076196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017086] [to:19106763135] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479695] [to:18284679601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:12504159006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:40 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:40 ip-10-0-0-10 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612915140] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606286222] [to:+14422207633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:13866977558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-20 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451246799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736500943] [to:+19738462404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809780700] [to:+17786541025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573412] [to:14807720499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745030013] [to:+12134017524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192121344] [to:+14197767486] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12529027655] [to:+12138064362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150496921157] [to:+18326503102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149679298] [to:+14387944842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183490464] [to:+12133756533] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005327] [to:13346725709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-21 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477368760] [to:18602344617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485134] [to:13176522959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:41 ip-10-0-64-11 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:41 ip-10-0-0-10 mdr: 2016-02-01 11:47:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177454941] [to:+15863315831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622099493] [to:+16784967057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407465747] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036532916] [to:+19703158262] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847946187] [to:+16463494902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18632296808] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028618] [to:19373084637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476671816] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106243915] [to:+18107888119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186374277] [to:+13479788360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-11 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:42 ip-10-0-64-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:42 ip-10-0-0-10 mdr: 2016-02-01 11:47:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317985734] [to:+12313778044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963098] [to:16148175935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311097] [to:+13479976354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726344515] [to:+17726177756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-21 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447950707191] [to:+447451233689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033063] [to:15052525012] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12532217845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366076] [to:16053703824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384033104] [to:+15146132323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018758] [to:16182670604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803277294] [to:+16026384660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-10 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:43 ip-10-0-64-11 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564054304] [to:+17726179181] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-11 mdr: 2016-02-01 11:47:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:43 ip-10-0-0-10 mdr: 2016-02-01 11:47:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247611167] [to:+17248032709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158433233] [to:19313084869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572444276] [to:+17812774269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543193498] [to:+15052571252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16098584121] [to:+16304893285] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383513] [to:13366089020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874594] [to:12292051436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+13478021583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EE0201] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:44 ip-10-0-0-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082749653] [to:+18482288775] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:44 ip-10-0-64-11 mdr: 2016-02-01 11:47:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-21 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451208534] [to:+447740092430] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376846] [to:17658911923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487869] [to:13372551806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803074075] [to:+15103226929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502416697] [to:+18503293504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17038554859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898083] [to:18144282224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12182480415] [to:+12183311094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-21 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474857199] [to:+12264557845] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168811993] [to:+16167948505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623025] [to:17757457558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097019] [to:12893012827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808299] [to:15743402996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023109279] [to:+17182559402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-11 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:45 ip-10-0-0-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:45 ip-10-0-64-10 mdr: 2016-02-01 11:47:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133141720] [to:+16139093182] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459497] [to:14199065764] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819597] [to:15672287079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022941324] [to:+13477962077] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872104] [to:13308007411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232375] [to:19706739431] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523968754] [to:+14157614394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663413] [to:12319200675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19082749653] [to:+18482288775] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-11 mdr: 2016-02-01 11:47:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:46 ip-10-0-0-11 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:46 ip-10-0-64-10 mdr: 2016-02-01 11:47:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248415659] [to:+13479801185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359670] [to:14235399778] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19036174167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067484894] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042273365] [to:+13478021583] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003EE0202] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075450422] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813129323] [to:16175384837] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502301] [to:18308574809] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:47 ip-10-0-0-10 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-10 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783849] [to:12293155472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783849] [to:12293155472] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:47 ip-10-0-64-11 mdr: 2016-02-01 11:47:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649017770] [to:+13477055443] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136135031] [to:+15172585052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328161998] [to:+17324433218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065431] [to:19312246495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738544581] [to:+12342227064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804590] [to:16106799606] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095563432] [to:+14158537143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640610] [to:+16465137856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125904181] [to:+12138023419] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952271] [to:16603427869] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053004702] [to:18199432114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186377901] [to:+15183440249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447841] [to:19713310851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12818919653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-21 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293128656] [to:+15164724396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15748495248] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036323] [to:15066531264] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548681033] [to:+13476504570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-10 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137765] [to:18159903880] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:48 ip-10-0-64-11 mdr: 2016-02-01 11:47:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:48 ip-10-0-0-11 mdr: 2016-02-01 11:47:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15157714362] [to:+15154438861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204172] [to:12054202187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004308] [to:15053006517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17034199081] [to:15712966265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195329337] [to:+14144005223] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892579528] [to:+12892756151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910002] [to:14168549807] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526427] [to:14402630985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128946187] [to:+14128193223] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-0-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476683958] [to:+16474952061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293202015] [to:+17186755772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-11 mdr: 2016-02-01 11:47:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179670074] [to:+16178634637] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:49 ip-10-0-64-10 mdr: 2016-02-01 11:47:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160701] [to:18703103476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782449658] [to:+14782172359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405890] [to:17866161419] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722774] [to:15409085931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-21 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317147486] [to:+14088778938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166773] [to:16063089597] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049511997] [to:+15612318597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152450226] [to:+13025957564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630638] [to:12014463533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085626] [to:14504211586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062070469] [to:+13148998239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:50 ip-10-0-0-10 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:17049616814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-10 mdr: 2016-02-01 11:47:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328161998] [to:+17324433218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:50 ip-10-0-64-11 mdr: 2016-02-01 11:47:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016457490] [to:+13858004021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551860] [to:12013819071] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15043148148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16148932427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184611862] [to:+18572407130] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062731961] [to:+14158253701] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-21 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447543193689] [to:+447418339384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:51 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-11 mdr: 2016-02-01 11:47:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:51 ip-10-0-0-10 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179357300] [to:+15155127072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062070469] [to:+13148998239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625474368] [to:+17025085432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244573] [to:12283270012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334408] [to:18039790827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:18084451090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166550193] [to:+12262411563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464562] [to:17078621180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206151716] [to:+17194266096] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158537373] [to:12402560097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476008626] [to:+13477417029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274936723] [to:19546553491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-11 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062070469] [to:+13148998239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:52 ip-10-0-0-10 mdr: 2016-02-01 11:47:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-11 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227349] [to:19062362858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:52 ip-10-0-64-10 mdr: 2016-02-01 11:47:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995086] [to:17573376925] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789008084] [to:+16785866412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19036193309] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164521355] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:17038554859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505214315] [to:+14388097466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703574652] [to:+15703974187] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988266] [to:14044055534] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387652638] [to:+14388076353] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383920215] [to:+14318003832] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988016] [to:14173436460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-64-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18033104548] [to:18035143296] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027668] [to:17802221799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375469953] [to:+17012892190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-10 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:53 ip-10-0-0-11 mdr: 2016-02-01 11:47:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434819] [to:16095419500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300733] [to:12295060622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557161] [to:19895881751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365773304] [to:+13369383513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19797392051] [to:+18328042753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976463] [to:18169450719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805085] [to:18049014171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147302774] [to:+13479066384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127187555] [to:+16615334477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192126619] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027677] [to:17053082964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154373] [to:+17274936347] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194522007] [to:+18192011075] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349648] [to:14015958753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:54 ip-10-0-0-11 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-10 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313439036] [to:+16169524456] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:54 ip-10-0-64-11 mdr: 2016-02-01 11:47:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083126172] [to:+12086204779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406803773] [to:+19492814596] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026198246] [to:+15165845387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403510316] [to:+19802095619] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-21 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229389] [to:+447880690771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197179652] [to:+12267983302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17134384220] [to:+17133735871] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-21 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447748395577] [to:+447451230135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048842] [to:18604622066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194373897] [to:+19199162896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023969194] [to:+19027058176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709997433] [to:13134438373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550513] [to:19392231430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522072097] [to:+17248032913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165367498] [to:+17167480895] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246915536] [to:+17248034334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14342587322] [to:+19177370490] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067484894] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573756443] [to:+17185212728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053291018] [to:+16042594917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455420086] [to:+18456222046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129979564] [to:+17248032729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742747971] [to:+18572401390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032761051] [to:+13477868662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787894207] [to:+19802094042] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058279965] [to:+12132950112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142666688] [to:+16149964316] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142084298] [to:+18327774217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13207610888] [to:+15632317298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604126308] [to:+19543144308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065183131] [to:+14706730784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403869094] [to:+12404077546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244135] [to:14016037351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712826113] [to:+19715129324] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:55 ip-10-0-64-10 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-10 mdr: 2016-02-01 11:47:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:55 ip-10-0-0-11 mdr: 2016-02-01 11:47:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199416] [to:12403298307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188371425] [to:+17037479571] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204300] [to:14435427001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080424AC0201] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334069] [to:17065243740] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323222667] [to:+18328044291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478270] [to:17725327262] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199927774] [to:+12264552280] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108783369] [to:+14153269081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108783369] [to:+14153269081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849199988] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513377109] [to:18657484745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077385032] [to:+16474916510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433134] [to:17329126316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15162895926] [to:+16319800520] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080424AC0202] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:14843451379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064181797] [to:+14702391880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657026681] [to:+12692207390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-11 mdr: 2016-02-01 11:47:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509617740] [to:+17784030420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:56 ip-10-0-64-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122194344] [to:+13479971091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-11 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:56 ip-10-0-0-10 mdr: 2016-02-01 11:47:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17146440261] [to:+16173419798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:13063132461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403140897] [to:+17249939197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309574324] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594688797] [to:+17407853050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594047716] [to:+12135596484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312445375] [to:+19312577879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:57 ip-10-0-0-11 mdr: 2016-02-01 11:47:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:57 ip-10-0-64-10 mdr: 2016-02-01 11:47:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462587100] [to:+12138065820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017045] [to:17865256316] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860435] [to:15139180589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103090074] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478242] [to:19712562361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13362073312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-21 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451237901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842251] [to:14846517576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077886907] [to:18072512971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13088705382] [to:+15406288929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:58 ip-10-0-0-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154890500] [to:+12138223583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-11 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:58 ip-10-0-64-10 mdr: 2016-02-01 11:47:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033859] [to:17247614023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168282027] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141439] [to:18198166156] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193399123] [to:+19193240433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053007261] [to:17059380900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359670] [to:14235399778] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19529778819] [to:17366071114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019384336] [to:+19148486483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-0-11 mdr: 2016-02-01 11:47:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148673197] [to:+18572551525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12095340355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-11 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127777341] [to:15023898974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017096] [to:17402857212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:47:59 ip-10-0-64-10 mdr: 2016-02-01 11:47:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148146084] [to:+14387922065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742873039] [to:+15085569119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-21 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447470552128] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164871] [to:15702049680] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768065] [to:15024871237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067022] [to:14079612920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104477137] [to:14847441875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502941237] [to:+18506313190] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:17349043488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309372474] [to:+12342314262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562291393] [to:+15104478262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859196] [to:14136862961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-11 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712597894] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084695] [to:12075577802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:00 ip-10-0-0-11 mdr: 2016-02-01 11:48:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:00 ip-10-0-64-10 mdr: 2016-02-01 11:48:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13208280141] [to:+13203073006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306801487] [to:+13302374348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043105386] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026696114] [to:+17077507516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328703123] [to:+14243361018] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303388006] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13149320713] [to:12179220674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693737547] [to:16822415337] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218342] [to:12672168308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348300] [to:14046040900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202909576] [to:+13203073092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-10 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:01 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064425932] [to:+14706734077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:01 ip-10-0-0-11 mdr: 2016-02-01 11:48:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743402996] [to:+12692808299] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362903630] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706739431] [to:+17206232375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199951465] [to:+12262414767] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951860] [to:13236383482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200396] [to:17062843034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755278] [to:12679873617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172377429] [to:+16173419920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407130] [to:13184611862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192623649] [to:+19175638413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302684515] [to:+19177730844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273629381] [to:17276449068] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:02 ip-10-0-64-10 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:02 ip-10-0-0-11 mdr: 2016-02-01 11:48:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834157] [to:16789490697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148146084] [to:+14387922065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166773] [to:16063089597] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065603965] [to:+14242769089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069468664] [to:17202618706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312667638] [to:+18572402825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:33644605140] [to:19733582716] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182007415] [to:+12138737479] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235050342] [to:+12485375421] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:03 ip-10-0-0-11 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733446258] [to:+15735644192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:03 ip-10-0-64-10 mdr: 2016-02-01 11:48:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745845] [to:18326669187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173436460] [to:+13477988016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169932057] [to:+16154726783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315244] [to:18505019647] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:19787996610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042508932] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163365] [to:18452837057] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231145] [to:17209754656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17806809507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:19899152361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784253065] [to:+17408798883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:17702669189] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817023025] [to:14187205306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317147486] [to:+14088778938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048098341] [to:12042945872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037F0502] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:04 ip-10-0-0-10 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:04 ip-10-0-64-11 mdr: 2016-02-01 11:48:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203583] [to:18132397649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513979117] [to:+19092933325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813097401] [to:+15817020339] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037F0505] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735521] [to:15186827310] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500037F0504] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037F0503] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156713542] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:18454670306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603305] [to:18163590791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952061] [to:16476683958] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172377429] [to:+16173419920] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524456] [to:12313439036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135583796] [to:+13176889952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054308881] [to:+16054997319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198493328] [to:+17194960176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372808494] [to:+12343077860] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195607181] [to:+16474952279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13202909576] [to:+13203073092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703216242] [to:+16466999825] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132584942] [to:+13479130524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17167689793] [to:+17162792064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-10 mdr: 2016-02-01 11:48:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:05 ip-10-0-64-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13175370310] [to:13179108187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-11 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18635955208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:05 ip-10-0-0-10 mdr: 2016-02-01 11:48:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658514674] [to:+18653473466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17726432968] [to:+17727746761] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266402] [to:16164463284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313084869] [to:+16158433233] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342315108] [to:18302759243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-10 mdr: 2016-02-01 11:48:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506022580] [to:+19712489106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:06 ip-10-0-0-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398795] [to:18599922247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:06 ip-10-0-64-11 mdr: 2016-02-01 11:48:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434819] [to:17322411942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654917555] [to:+13479748962] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203362] [to:17173858831] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403981665] [to:+14437201644] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388770928] [to:+14387921294] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185212728] [to:17573756443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028074404] [to:+13479196908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17034199081] [to:15712966265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17053060702] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003F20201] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F20202] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779603] [to:13309624125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528441] [to:15862151746] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037693] [to:19547091594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388770928] [to:+14387921294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016289466] [to:+14076336790] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125694468] [to:+17135883364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:07 ip-10-0-64-11 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402687246] [to:+14697239339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:07 ip-10-0-0-10 mdr: 2016-02-01 11:48:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462337] [to:19089867959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513075260] [to:+16079655925] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032729] [to:14129979564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733553895] [to:+16108804289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173842806] [to:+15155127072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17035899640] [to:+12408924624] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:16024864671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15056592983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074931] [to:16136200405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748595] [to:16038565090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253620448] [to:+18563125800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138982] [to:13174077188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474204] [to:15108504133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-21 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447757675307] [to:+447451228935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048120439] [to:+17133735771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:08 ip-10-0-64-11 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961966] [to:15713599159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:08 ip-10-0-0-10 mdr: 2016-02-01 11:48:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079687320] [to:15187526877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475224957] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-20 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408483] [to:12899685272] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475224957] [to:+16477992969] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048456563] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193010021] [to:+18193074693] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16515608421] [to:17062548170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433134] [to:19082029008] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-10 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-10 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136857397] [to:+16096144579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:09 ip-10-0-64-11 mdr: 2016-02-01 11:48:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262717174] [to:15199806073] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:09 ip-10-0-0-11 mdr: 2016-02-01 11:48:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193010021] [to:+18193074693] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614394] [to:13523968754] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551860] [to:12013819071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016176533] [to:+14017680021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747401] [to:15134856805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282913606] [to:+19175804891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216848694] [to:+19177731867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-11 mdr: 2016-02-01 11:48:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:10 ip-10-0-64-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-10 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:10 ip-10-0-0-11 mdr: 2016-02-01 11:48:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508081180] [to:+17784025397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804432] [to:12704278506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477270736] [to:+12018579801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450228] [to:13366922199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18104475924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16477932295] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786541025] [to:17809780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041389] [to:15029942090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600533] [to:19053414512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736526] [to:14132414089] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242881591] [to:+13218329361] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328703123] [to:+14243361018] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511111] [to:18608796177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392934187] [to:+17864802359] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133083334] [to:16147787591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128012858] [to:+13479979315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13409980893] [to:+19177227198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-11 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065562] [to:14107258875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:18196687336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926185] [to:16063414955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-11 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242881591] [to:+13218329361] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-64-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511111] [to:17655081304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:11 ip-10-0-0-10 mdr: 2016-02-01 11:48:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893598014] [to:+15873152515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577389527] [to:+15109481861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574354] [to:17074775106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19084095570] [to:12522853959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473897305] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694386697] [to:+18174057551] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172019130] [to:+19292009664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15175691342] [to:15178027939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109373478] [to:+16109105810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503377068] [to:19512954365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797280] [to:19045289037] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319655369] [to:+16319800677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144301575] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476404857] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695527900] [to:14696935658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:12 ip-10-0-64-11 mdr: 2016-02-01 11:48:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:12 ip-10-0-0-10 mdr: 2016-02-01 11:48:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703314039] [to:+19177227198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985674] [to:18168323112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857829] [to:14434046388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472095442] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659949000] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179473] [to:12405153446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860698] [to:12679829985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803658526] [to:+16367306382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-10 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:13 ip-10-0-0-11 mdr: 2016-02-01 11:48:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:13 ip-10-0-64-11 mdr: 2016-02-01 11:48:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14325286267] [to:+12547356029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016865938] [to:+18623082458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859114] [to:14132581934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145249083] [to:+15129525935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040826] [to:15023411605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203583] [to:18132397649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551373] [to:17795375385] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-10 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169932057] [to:+16154726783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:14 ip-10-0-0-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-11 mdr: 2016-02-01 11:48:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198166156] [to:+18194141439] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:14 ip-10-0-64-10 mdr: 2016-02-01 11:48:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174602421] [to:+13175204081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500034E0201] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18288178227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873077766] [to:+13477972356] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193629232] [to:16198746237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097437806] [to:+17097000622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132320] [to:16036576986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972356] [to:17873077766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174602421] [to:+13175204081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500034E0202] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138853211] [to:+14136859168] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:12143643911] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-21 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418336409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201996] [to:14102516934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-20 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313337106] [to:+13024991974] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203583] [to:18132397649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-11 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:15 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866016273] [to:15742166454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-11 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262431812] [to:16473818324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:15 ip-10-0-0-20 mdr: 2016-02-01 11:48:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016539906] [to:+13866018393] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875891660] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476627358] [to:+13479800919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143288838] [to:+15146132662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138853211] [to:+14136859168] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199456547] [to:+19199162795] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142739] [to:19543933194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572406337] [to:12143643911] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:16362903630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175128969] [to:+12136165256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075291] [to:15149980779] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103226929] [to:19803074075] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-10 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485216648] [to:+12488347546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:16 ip-10-0-0-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596845999] [to:+12138025597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-10 mdr: 2016-02-01 11:48:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384033104] [to:+15146132323] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:16 ip-10-0-64-11 mdr: 2016-02-01 11:48:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466989884] [to:+17189629107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048992774] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830100] [to:15705941117] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812793] [to:14437342609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974153] [to:17179034981] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712787743] [to:+14108884208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491567] [to:16015905886] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639372228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142549497] [to:+13479194168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-21 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447444943026] [to:+447520624480] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:13032042171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:13032042171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13039930539] [to:13032042171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253545856] [to:+13614450569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018877470] [to:+15513336948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138982] [to:13174077188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-10 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596484] [to:18594047716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347019893] [to:+18506315113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:17 ip-10-0-0-10 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:17 ip-10-0-64-11 mdr: 2016-02-01 11:48:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066327884] [to:+13065004627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788739747] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179708] [to:12027517234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042491] [to:12899688984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023109279] [to:+17182559402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145045307] [to:+16466288490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13306801487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755076] [to:12692677884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411120] [to:15196585760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065011580] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-10 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175808585] [to:13155701976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-10 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182291137] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:18 ip-10-0-64-11 mdr: 2016-02-01 11:48:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:18 ip-10-0-0-11 mdr: 2016-02-01 11:48:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239570813] [to:+12135297521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13027091184] [to:+17344366763] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183552] [to:19792016948] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:14058196170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859114] [to:14132581934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043907] [to:13476155126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372711173] [to:+14242835519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053574822] [to:+15052571738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407517] [to:17099869660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192667857] [to:+16474918219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748495248] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039824598] [to:+16465136437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797405] [to:19142616925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-11 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207385] [to:15746126753] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569294] [to:19105355520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-11 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144301575] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:19 ip-10-0-64-10 mdr: 2016-02-01 11:48:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:19 ip-10-0-0-10 mdr: 2016-02-01 11:48:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041865] [to:+13476671910] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320940] [to:16072809489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15147003696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18173745258] [to:+18173635919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707092260] [to:+13475185964] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252230522] [to:+19718886939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547043] [to:15139136203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026560794] [to:+12485375410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198716] [to:13402013621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-11 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14438550659] [to:17173854230] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:20 ip-10-0-64-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:20 ip-10-0-0-10 mdr: 2016-02-01 11:48:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031445] [to:12182909285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067484894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478961966] [to:15713599159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207385] [to:15746126753] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19737562460] [to:15167134577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604536] [to:13235351619] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725733] [to:12517099565] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592622] [to:17065802513] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:18596440227] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383513] [to:13365773304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-11 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:21 ip-10-0-0-11 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246992020] [to:+19703158540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:21 ip-10-0-64-10 mdr: 2016-02-01 11:48:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963904] [to:16093069926] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800458] [to:15167432146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018137893] [to:+18328042238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072402265] [to:13073151964] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865042] [to:13156228709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466320050] [to:14193077355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-11 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17279353898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:22 ip-10-0-0-11 mdr: 2016-02-01 11:48:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:22 ip-10-0-64-10 mdr: 2016-02-01 11:48:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148241149] [to:+16139091760] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950112] [to:18058279965] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046948136] [to:19049932316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806885801] [to:+14804394230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190174] [to:15174559902] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125265482] [to:+14125350879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228917] [to:19173467694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16148932427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024077814] [to:+14153161681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125694468] [to:+17135883364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403056465] [to:+13015699948] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535082] [to:16622957420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944883] [to:18642934486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733553895] [to:+16108804289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874835] [to:12254487516] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-0-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921812] [to:12084463102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-11 mdr: 2016-02-01 11:48:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:23 ip-10-0-64-10 mdr: 2016-02-01 11:48:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713055820] [to:15712352703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776824] [to:19203193291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237237085] [to:+14125354368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015980] [to:12025495182] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474914830] [to:12046980953] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295065] [to:12056410487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025917022] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364575176] [to:+14342340670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679572] [to:17706055872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163298] [to:16095131162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063414955] [to:+12139926185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-20 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604076692] [to:12608687212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12627198547] [to:+18575764420] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845220126] [to:+18563126062] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-10 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:24 ip-10-0-64-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193037715] [to:18199951712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040535] [to:15815781282] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-10 mdr: 2016-02-01 11:48:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169196] [to:18289258283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:24 ip-10-0-0-11 mdr: 2016-02-01 11:48:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308801736] [to:+13479976578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222523] [to:17049746716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995573] [to:13166804610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913166] [to:16474614052] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262969] [to:17035932376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179337680] [to:+18175922253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022788573] [to:+13025852807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-11 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046833761] [to:+17572969754] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096945] [to:14044539011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:25 ip-10-0-64-10 mdr: 2016-02-01 11:48:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:25 ip-10-0-0-10 mdr: 2016-02-01 11:48:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126999584] [to:+18127777164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789270520] [to:+14703336856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064517611] [to:+14694060490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572405070] [to:19123122978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348085852] [to:+18046242521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502416697] [to:+18503293504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144709530] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316450418] [to:+12313318175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215143883] [to:+19298413908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557215] [to:19899801403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078918050] [to:+13477699572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16417802502] [to:+16418632236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324103038] [to:19562154554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069085] [to:12527750474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:26 ip-10-0-64-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-11 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:26 ip-10-0-0-10 mdr: 2016-02-01 11:48:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163942637] [to:+14406587594] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619957] [to:12054355061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298201] [to:12396451044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-21 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619957] [to:12054355061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971598] [to:12076716738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182538952] [to:+15189305207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177514] [to:12672762266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335046] [to:17064559987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306467057] [to:+14242846661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433780] [to:18324368160] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620874] [to:16153741171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620874] [to:16153741171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-20 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627702] [to:+447415799544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604360560] [to:+15612403402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574552] [to:17024908413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-10 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18194407466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:27 ip-10-0-64-10 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:27 ip-10-0-0-11 mdr: 2016-02-01 11:48:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107888119] [to:18106243915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028903915] [to:+19027062471] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438874] [to:12154606910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006770] [to:1917025132928] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13137788910] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479198462] [to:17329125614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403097373] [to:+13479130751] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848020237] [to:+19783619200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132214877] [to:+14137289325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391643] [to:13023395192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-64-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057498302] [to:+12262416982] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092218878] [to:+14096833352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:28 ip-10-0-0-11 mdr: 2016-02-01 11:48:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046040900] [to:+16784348300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14055144863] [to:+17605898437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338417] [to:14095487371] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619031] [to:18166279442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817199] [to:12703669434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162686218] [to:+16474912573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882875] [to:13236749829] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696003777] [to:+19014445594] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-10 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:29 ip-10-0-64-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475924] [to:+18107888119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:29 ip-10-0-0-11 mdr: 2016-02-01 11:48:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025917022] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-20 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447881511744] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801710933341] [to:+14088725007] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-20 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003050201] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-20 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418327997] [to:+447713740010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17084150995] [to:+17736690260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052906094] [to:+18056288704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-11 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706090258] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477147778] [to:13617561291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:30 ip-10-0-0-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003630201] -Feb 1 11:48:30 ip-10-0-64-10 mdr: 2016-02-01 11:48:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003630202] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196516716] [to:+16149228352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:19084336412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727667444] [to:12253685093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907247] [to:16033410330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15055451551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14423336460] [to:+14072163864] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130751] [to:14403097373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107714559] [to:+14023874028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-11 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006912] [to:17147250426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182291137] [to:+12139354416] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:31 ip-10-0-0-10 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-10 mdr: 2016-02-01 11:48:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:17634431892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:31 ip-10-0-64-11 mdr: 2016-02-01 11:48:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134471789] [to:+17012892980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:13066905965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093952] [to:13042831027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093952] [to:13042831027] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473466] [to:18658514674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018024596] [to:+19723389913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403200343] [to:+14406588693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088986] [to:18133306580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015782472] [to:+19148812510] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556044] [to:12562943629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-10 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:32 ip-10-0-0-11 mdr: 2016-02-01 11:48:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142066000] [to:12034447765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:32 ip-10-0-64-11 mdr: 2016-02-01 11:48:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704543826] [to:+16513337595] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12298867477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623891205] [to:+19203956412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-20 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003050202] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672408759] [to:+13473799158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882684] [to:15305527452] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408199418] [to:+15406286516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14237772859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675956904] [to:+12679525697] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868047] [to:14048229078] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083861979] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099850] [to:14802921663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-10 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027047728] [to:+12026609447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:33 ip-10-0-64-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14047860052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:33 ip-10-0-0-11 mdr: 2016-02-01 11:48:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613467821] [to:+15614916740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329968142] [to:+18326538151] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604360560] [to:+15612403402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15153205728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070670] [to:12605179085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474471799] [to:+14242863277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13367444133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334722] [to:14783211713] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152808300] [to:+13479131234] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123749141] [to:+19172669388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039238759] [to:+16474942526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:12038953440] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753356] [to:13523282921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:34 ip-10-0-64-11 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:34 ip-10-0-0-10 mdr: 2016-02-01 11:48:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250645] [to:14235842771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800677] [to:16319655369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132129557] [to:+13134247686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769089] [to:16065603965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095725] [to:15149946358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334539] [to:19892776223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16124448055] [to:17634431892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412554896] [to:+15415393079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049608674] [to:+12048138469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079655925] [to:16513075260] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122702774] [to:+19142060942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:17575098255] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-21 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627310] [to:+447565324860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456005634] [to:+19177374978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162167106] [to:+17408796305] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154815063] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-10 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023411605] [to:+15028040826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-10 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18623082458] [to:12016865938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:35 ip-10-0-0-11 mdr: 2016-02-01 11:48:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:35 ip-10-0-64-11 mdr: 2016-02-01 11:48:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262362197] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-20 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569075] [to:18642213651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404192] [to:19374080699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477721187] [to:+12264555781] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896866174] [to:+12894600533] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-11 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593290608] [to:+15596639596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-64-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304263435] [to:+14158536863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-10 mdr: 2016-02-01 11:48:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652281190] [to:+12138025669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:36 ip-10-0-0-11 mdr: 2016-02-01 11:48:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324869528] [to:+16109102786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240433] [to:19193399123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109954853] [to:+13024000609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727521281] [to:12762841219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459327] [to:15674549991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147381] [to:18314358482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600983] [to:12897751866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-20 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622240] [to:+447437326073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17659949000] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077338] [to:14508032001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950280] [to:18506122586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525780182] [to:+17605897359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145045307] [to:+16466288490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042508932] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164023625] [to:+16477995384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927989] [to:14384961763] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940316] [to:14126052103] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:37 ip-10-0-0-11 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19182856416] [to:+13217308387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:37 ip-10-0-64-11 mdr: 2016-02-01 11:48:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17802642053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12313439036] [to:+16169524456] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099813573] [to:+12092602156] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712489106] [to:18506022580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034311064] [to:+18312228929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811804] [to:16784689497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038554859] [to:+15713273942] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164685] [to:17708708188] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014551872] [to:+12134788145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:38 ip-10-0-0-11 mdr: 2016-02-01 11:48:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862573] [to:+19148812500] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-10 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:38 ip-10-0-64-11 mdr: 2016-02-01 11:48:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132323] [to:14384033104] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506266774] [to:+19725344727] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018024596] [to:+19723389913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773301] [to:13347229744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862603430] [to:+12484601194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045913246] [to:+14242866278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154658] [to:17802219910] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705702811] [to:+12132954296] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16476671816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722774] [to:15409085931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981686] [to:13157270534] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542582486] [to:+19543143875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769707] [to:15802365022] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184053] [to:15169433152] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-11 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:39 ip-10-0-0-10 mdr: 2016-02-01 11:48:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:39 ip-10-0-64-10 mdr: 2016-02-01 11:48:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161893] [to:14074138037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109770627] [to:+17605898336] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+13478969637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19048992774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-10 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154746280] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:40 ip-10-0-64-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:40 ip-10-0-0-11 mdr: 2016-02-01 11:48:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125368] [to:18562759377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193345656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603872129] [to:+16465648155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634477497] [to:+17279165543] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:15133099166] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347318] [to:12547092154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707060350] [to:+15703977303] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12012685342] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288330] [to:15095402706] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018983] [to:13233146490] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-20 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328973] [to:+447772869080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15749039878] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333801] [to:18194313155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104041337] [to:+14437202567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604622066] [to:+17185048842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18024171374] [to:+15102547364] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-11 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463495472] [to:15863211287] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-10 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-10 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:41 ip-10-0-0-20 mdr: 2016-02-01 11:48:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:41 ip-10-0-64-11 mdr: 2016-02-01 11:48:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886901] [to:+18459407190] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862243] [to:18329449192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015817] [to:17083592149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13309574324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533148732] [to:+16466691031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048133381] [to:12044302124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267736474] [to:+13069929921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19782169348] [to:12072167992] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663152] [to:12073220677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542994987] [to:19088401260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152034740] [to:15153138053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539244] [to:12283486832] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176736551] [to:+15174920608] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927471] [to:15146198006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308007411] [to:+17015872104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293278985] [to:+17185043408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-11 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153236052] [to:+13479376779] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732210] [to:12677704646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:42 ip-10-0-0-10 mdr: 2016-02-01 11:48:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:42 ip-10-0-64-10 mdr: 2016-02-01 11:48:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015661842] [to:+15107799608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445807] [to:19018966147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001530] [to:+14357764770] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017355529] [to:+18018903451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927471] [to:15146198006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18302208792] [to:+14323635514] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929302] [to:13063708066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12098103749] [to:+14156498857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819853294] [to:+14158531035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350879] [to:14125265482] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144945048] [to:+13476908522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-11 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-0-10 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-10 mdr: 2016-02-01 11:48:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193590555] [to:12514012185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096850923] [to:+13103470286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:43 ip-10-0-64-11 mdr: 2016-02-01 11:48:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908037] [to:15593090622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:17703293877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154804559] [to:+16157776521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082982166] [to:+17125255660] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19197501012] [to:+19199164811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005183] [to:16478217241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12032122955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136200405] [to:+16137074931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045209586] [to:+12105560648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133109165] [to:+14132715927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046916682] [to:+18046246638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089668627] [to:16175719781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064075331] [to:+19142797123] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-64-11 mdr: 2016-02-01 11:48:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064075331] [to:+19142797123] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-11 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466289358] [to:19292789560] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:44 ip-10-0-0-10 mdr: 2016-02-01 11:48:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005542] [to:17802977883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141419] [to:18196614266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538974] [to:12407796023] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347552346] [to:+17274937161] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15614201809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345402] [to:18439221153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-10 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435604417] [to:+18438888731] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-10 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-10 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182217177] [to:+16465478820] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-10 mdr: 2016-02-01 11:48:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615544] [to:19735925022] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524456] [to:12313439036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:45 ip-10-0-0-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:45 ip-10-0-64-11 mdr: 2016-02-01 11:48:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033097] [to:17244668593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478262] [to:18562291393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16199469176] [to:+17604215988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303015] [to:13304178559] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17319266004] [to:+17315744427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053060702] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476627358] [to:+13479800919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19544009003] [to:+19543142403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122008139] [to:19124638523] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+12816433426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12069468664] [to:17202618706] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752557] [to:12516041732] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133752557] [to:12516041732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516158] [to:19193086173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243238857] [to:12245323296] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107129] [to:+19027004173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:46 ip-10-0-64-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772428] [to:14106931151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-11 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073006] [to:13208280141] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:46 ip-10-0-0-10 mdr: 2016-02-01 11:48:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033786770] [to:12142937057] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690382] [to:13136292086] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163360] [to:19183126835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835137] [to:16035034046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16313975433] [to:13304127823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538276] [to:18033080339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382388] [to:12767336495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420791] [to:19014802776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870303] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994120] [to:19056502406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003870301] -Feb 1 11:48:47 ip-10-0-64-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15755879297] [to:15753023229] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-10 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162386585] [to:+17162791215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:47 ip-10-0-0-11 mdr: 2016-02-01 11:48:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:47 ip-10-0-64-11 mdr: 2016-02-01 11:48:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023581821] [to:+12192133910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003870302] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743533662] [to:+16465472729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403969088] [to:+14403594541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656359379] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158253517] [to:15023216031] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225769] [to:13342213193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497425] [to:18062391554] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862151746] [to:+18108528441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672762266] [to:+12673177514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-21 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163291260] [to:+19715126259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-11 mdr: 2016-02-01 11:48:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:16063625618] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:48 ip-10-0-64-10 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173858831] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:48 ip-10-0-0-11 mdr: 2016-02-01 11:48:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109770627] [to:+17605898336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312660071] [to:+15068029609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12132634873] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105243578] [to:+19199166091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287556718] [to:+19802097413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502127779] [to:+13069939050] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877032590] [to:+16139097179] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037101572] [to:+19172720522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079528984] [to:+17277679170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036200853] [to:+15873151907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083897047] [to:19083861979] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228308] [to:19189780798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027599702] [to:+19027003932] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:49 ip-10-0-0-11 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-10 mdr: 2016-02-01 11:48:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169977619] [to:+14053005179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:49 ip-10-0-64-11 mdr: 2016-02-01 11:48:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228464] [to:13136719971] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625827940] [to:+19292201346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:12045140934] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17789190974] [to:+17784033693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077057489] [to:+14072161056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403813740] [to:+14406587537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-21 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15189775233] [to:+15186155153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738852250] [to:+12677938476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142850736] [to:+16465139668] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044879] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562154554] [to:+18324103038] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057469763] [to:+12262406842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139297950] [to:14233269919] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:50 ip-10-0-64-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-10 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:50 ip-10-0-0-11 mdr: 2016-02-01 11:48:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837049] [to:12194339762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547293495] [to:+17542220566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526733390] [to:+13479478376] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397459172] [to:+17723618182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354704] [to:14843530644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888731] [to:18435604417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12608687212] [to:+12604076692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153161681] [to:15024077814] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720788] [to:18432440116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:12034080398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477972698] [to:17069361379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-10 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018966147] [to:+19014445807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262356578] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-10 mdr: 2016-02-01 11:48:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282165725] [to:+15103404686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:51 ip-10-0-64-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:51 ip-10-0-0-11 mdr: 2016-02-01 11:48:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669430] [to:18764279641] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:15878775366] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030720] [to:16138165081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12486055238] [to:+12488347305] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388074937] [to:15146082020] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042396251] [to:+19802097682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056259899] [to:+12485375572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538974] [to:12407796023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898437] [to:14055144863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842352] [to:17323792687] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16106799606] [to:+16108804590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506266774] [to:+19725344727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420791] [to:19014802776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524404155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:52 ip-10-0-0-10 mdr: 2016-02-01 11:48:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:52 ip-10-0-64-11 mdr: 2016-02-01 11:48:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085568969] [to:15083177611] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184053] [to:13479614288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135043305] [to:+13366452826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304127823] [to:+16313975433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642934486] [to:+14155944883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037101572] [to:+19172720522] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655461890] [to:+17659460980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940837] [to:14125194878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338562] [to:+16475569828] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309624125] [to:+13305779603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16036576986] [to:+16034132320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-10 mdr: 2016-02-01 11:48:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-10 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:53 ip-10-0-64-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028801906] [to:+19027004459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:53 ip-10-0-0-11 mdr: 2016-02-01 11:48:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075450116] [to:+14076333102] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162627425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989552] [to:16479943627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531161] [to:15303072027] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193833661] [to:+18192011434] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17088564683] [to:+17089468587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702567804] [to:+19318968026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389373568] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18063825123] [to:+14698740119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374129069] [to:+19542994093] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:54 ip-10-0-0-20 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Voxox] [to:+447451237901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-11 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183789353] [to:+15817018878] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:54 ip-10-0-64-10 mdr: 2016-02-01 11:48:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894241098] [to:+19895334432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192173382] [to:+16474951758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187205306] [to:+15817023025] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973862] [to:18027348956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403966136] [to:+12162393174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897359] [to:12525780182] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178751504] [to:+19177730867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150496921157] [to:+18326503102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514210501] [to:+14242836689] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037F0501] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086737601] [to:+14157614980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735925022] [to:+15178615544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165603377] [to:+15852822452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782519599] [to:+13475076232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083538028] [to:+15088341398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097638177] [to:+17097005397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403981665] [to:+14437201644] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404062675] [to:+13212701207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316879020] [to:+16319802086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436800596] [to:+14108745740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149723062] [to:+17038841272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644925478] [to:+18649997418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139518243] [to:+14706730521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105010204] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362903630] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505665234] [to:+12509006239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316208859] [to:+12312663177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12519793635] [to:+19148812449] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14408655619] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419952] [to:18639567346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:55 ip-10-0-64-11 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-10 mdr: 2016-02-01 11:48:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134064935] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:55 ip-10-0-0-11 mdr: 2016-02-01 11:48:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047860052] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18058279965] [to:+12132950112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619031] [to:18163980274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134787824] [to:14702221731] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136637123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084601] [to:16093049057] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733808654] [to:+13203073824] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-21 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349443016] [to:+13477965924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812773973] [to:12622034067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707710839] [to:+14703334936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873212931] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-11 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522072097] [to:+17248032913] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405410707] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-11 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878668] [to:16464046811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:56 ip-10-0-64-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:56 ip-10-0-0-10 mdr: 2016-02-01 11:48:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175073957] [to:+16233836785] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163134589] [to:+15165977957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069928388] [to:12045140934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705160] [to:13473569489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:14788324088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:17702920488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508032001] [to:+14388077338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609447] [to:12027047728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17147260842] [to:+19099395418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:57 ip-10-0-0-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491348] [to:16065153390] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-10 mdr: 2016-02-01 11:48:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:57 ip-10-0-64-11 mdr: 2016-02-01 11:48:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587537] [to:14403813740] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-21 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197139266] [to:+12404077691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827184] [to:12067144516] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16502834717] [to:+15169267167] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265598] [to:19794366918] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-11 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:58 ip-10-0-0-10 mdr: 2016-02-01 11:48:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:58 ip-10-0-64-10 mdr: 2016-02-01 11:48:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-20 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012825068] [to:+13214067622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122783086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-21 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476912173] [to:19056303516] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819853294] [to:+14158531035] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14152868610] [to:+16193590873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862655] [to:+19177739701] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126564669] [to:+14158532272] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-10 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942458] [to:17809346788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-21 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451249858] [to:+447549280021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:48:59 ip-10-0-64-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-11 mdr: 2016-02-01 11:48:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:48:59 ip-10-0-0-10 mdr: 2016-02-01 11:48:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564608491] [to:+13479139320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853605813] [to:+13216137342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266726] [to:12019696325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136046021] [to:16137699355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398495013] [to:+13477697071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779841536935] [to:+15303623335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079682042] [to:+12139212479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042167185] [to:+18328042929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789138406] [to:+16784345716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431568] [to:+19715124907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597109] [to:19739511065] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-64-11 mdr: 2016-02-01 11:49:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102699162] [to:+14437203934] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319572] [to:15615770433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:13062903155] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-11 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:00 ip-10-0-0-10 mdr: 2016-02-01 11:49:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178410042] [to:+16822139323] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732057907] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394230] [to:14806885801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214884] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336531] [to:16512027331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708708188] [to:+16788164685] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:12014522178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-0-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046980953] [to:+16474914830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657171826] [to:+12133773829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18174485973] [to:+18173634828] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243360285] [to:16574656602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187621404] [to:+14697515839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-10 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937331] [to:17278514017] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:01 ip-10-0-64-11 mdr: 2016-02-01 11:49:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937331] [to:17278514017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-20 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447979697576] [to:+447418326556] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500032E0202] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227064] [to:15738544581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123511849] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133206367] [to:17873212931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705170104] [to:+15817022664] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899800] [to:17809330801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-10 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690382] [to:13139780683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155166403] [to:+15612319274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-11 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:02 ip-10-0-64-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C00201] -Feb 1 11:49:02 ip-10-0-64-10 mdr: 2016-02-01 11:49:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144282224] [to:+13473898083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:02 ip-10-0-0-11 mdr: 2016-02-01 11:49:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384947488] [to:+14387926701] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492084] [to:14129696759] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611430] [to:12696253052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056142] [to:19027712690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:17057940113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187754566] [to:+17182558022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19546079974] [to:+15612318349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003F50201] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040571] [to:+19148608579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789274477] [to:+14706735615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-0-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326606] [to:15803084720] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-11 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258194] [to:14802327418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:03 ip-10-0-64-10 mdr: 2016-02-01 11:49:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608471] [to:16065210769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-21 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524245] [to:12393627779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805472826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785808468] [to:+19785334628] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777291] [to:12602241572] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602777291] [to:12602241572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977385] [to:16573787959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284679601] [to:+17187479695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083177611] [to:+15085568969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702928723] [to:+19046947937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878668] [to:16464046811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273267759] [to:+16463490186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-21 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447896964899] [to:+447451241261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021926] [to:19028184076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-10 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-64-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021926] [to:19028184076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908575] [to:17123041537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-11 mdr: 2016-02-01 11:49:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16479823269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:04 ip-10-0-0-10 mdr: 2016-02-01 11:49:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037414913] [to:+15873289576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077338] [to:14508032001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413417] [to:18644355371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199854136] [to:+12405538685] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038877] [to:12898285640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005949] [to:14145739417] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316208859] [to:+12312663177] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094776624] [to:+16095434564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250645] [to:14233039359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015688372] [to:+19014445676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322161672] [to:+17328842605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484046262] [to:+19735479657] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329155] [to:12394101322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:17063294862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141002] [to:15068718878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16077314888] [to:+16466691091] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-10 mdr: 2016-02-01 11:49:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767921] [to:14195758322] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:05 ip-10-0-64-10 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:05 ip-10-0-0-11 mdr: 2016-02-01 11:49:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305570446] [to:+14242837576] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878095] [to:16015203796] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064559987] [to:+14703335046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105918280] [to:+14108884301] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003C00202] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064960775] [to:+17063959281] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372401378] [to:+12138023830] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476671816] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-20 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447866610888] [to:+447451232162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309574324] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632269] [to:18595139515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474934355] [to:14503691609] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144579] [to:13136857397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124526] [to:17804041913] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242521] [to:14348085852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122529574] [to:+17736667383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192769152] [to:+16474989506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132846191] [to:+16137074290] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:06 ip-10-0-64-11 mdr: 2016-02-01 11:49:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-10 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523670140] [to:+12138614092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:06 ip-10-0-0-11 mdr: 2016-02-01 11:49:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787787255] [to:+19172595532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0201] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148044788] [to:+15146134241] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F50202] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174346280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19103408423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138639984] [to:+16139093291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-20 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451240745] [to:+447949317709] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152038168] [to:18596444538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127051] [to:18013315816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031F0202] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413417] [to:18644355371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17475001098] [to:12523018263] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-10 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:07 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:07 ip-10-0-64-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278874] [to:15204772392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19545899656] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19545899656] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12816839911] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254397348] [to:+17279987859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067478504] [to:+12536423566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336613] [to:17706346437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15853091811] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095569243] [to:+17604746243] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055013976] [to:+18649997927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:08 ip-10-0-64-11 mdr: 2016-02-01 11:49:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-11 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:08 ip-10-0-0-10 mdr: 2016-02-01 11:49:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005397] [to:17097638177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18036729558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047623106] [to:+19046947152] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059021066] [to:+19172751767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084257771] [to:+19088992553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394230] [to:14806885801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159755311] [to:+16158076271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954258] [to:13343542517] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954258] [to:13343542517] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132536897] [to:+16137072341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178618592] [to:16035455646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512954365] [to:+16503377068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327080] [to:19799856381] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:09 ip-10-0-0-10 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:09 ip-10-0-64-11 mdr: 2016-02-01 11:49:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692708568] [to:15022038496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597109] [to:19739511065] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293278985] [to:+17185043408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383047] [to:13369577163] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475693708] [to:+16465641954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176732923] [to:+17274937807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954258] [to:13343542517] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588688] [to:14404537617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232342] [to:17202855814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-11 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:10 ip-10-0-64-10 mdr: 2016-02-01 11:49:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:10 ip-10-0-0-10 mdr: 2016-02-01 11:49:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862554] [to:+19176635583] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:14802978652] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:14802978652] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036251822] [to:+12676076273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929302] [to:13062611259] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019696325] [to:+12014266726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875758966] [to:+15873322625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19012323180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17188258505] [to:+13475184694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:11 ip-10-0-0-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-10 mdr: 2016-02-01 11:49:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:11 ip-10-0-64-11 mdr: 2016-02-01 11:49:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072311441] [to:+19282976670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299748] [to:14435614007] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146906719] [to:+17603145886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740358] [to:+12062588250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137453] [to:14232582420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267920110] [to:+12262431584] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627283] [to:12163398012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-10 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065011580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:12 ip-10-0-0-11 mdr: 2016-02-01 11:49:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:14125202212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-11 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13079222138] [to:+14062211448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058525] [to:+13475808135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:12 ip-10-0-64-10 mdr: 2016-02-01 11:49:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008713] [to:18704059507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165818518] [to:+12626483193] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15108788705] [to:+15107756916] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612403402] [to:18604360560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027040900] [to:+19142812951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-20 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473958] [to:12038204674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-11 mdr: 2016-02-01 11:49:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023324099] [to:+14804391904] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:13 ip-10-0-64-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:13 ip-10-0-0-10 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057322677] [to:+15104478132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032803196] [to:+13477988438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065827619] [to:19379473439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17818597896] [to:+18582237594] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632269] [to:18595139515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15674549991] [to:+14197459327] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596999037] [to:+12139218323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750497] [to:13472359191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802359] [to:12392934187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852186] [to:13026328551] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727745432] [to:18439100803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335820] [to:17069944387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022564196] [to:13088505503] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-20 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418330300] [to:+447794144558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063708066] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129205595] [to:+19298418872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457682126] [to:+15186155185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12813360357] [to:+14243361376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977957] [to:15188986286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:14 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502323377] [to:15814906014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:14 ip-10-0-0-11 mdr: 2016-02-01 11:49:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699088367] [to:+12692808275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593986127584] [to:+13478303802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893012827] [to:+14388097019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408097039] [to:+12062585914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135527360] [to:+16136042258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179792975] [to:+14242218293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293250291] [to:+15103278146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742047545] [to:17812912368] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476571810] [to:+16474952355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-11 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:15 ip-10-0-0-10 mdr: 2016-02-01 11:49:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:15 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284463057] [to:+17256660990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405410707] [to:+17408797955] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194432218] [to:+15817040424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550792] [to:14232715279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146230363] [to:+15817010071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391289] [to:19853130748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146230363] [to:+15817010071] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374080699] [to:+14153404192] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-21 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451245475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:14389945788] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106931151] [to:+19179772428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892362328] [to:+12898042358] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-21 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048882222] [to:+14043900637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:16 ip-10-0-64-10 mdr: 2016-02-01 11:49:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16144401703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-11 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:16 ip-10-0-0-10 mdr: 2016-02-01 11:49:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733553895] [to:+16108804289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669430] [to:18764279641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035455646] [to:+16178618592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532672410] [to:+12536423947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854441886] [to:+15852821499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387926701] [to:14384947488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047497273] [to:+16049019730] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19702843189] [to:+19512990846] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525649037] [to:+14158916482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035657964] [to:+13473798865] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-10 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482632] [to:16087122536] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383515901] [to:+14387945210] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:17 ip-10-0-64-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:17 ip-10-0-0-11 mdr: 2016-02-01 11:49:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155165632] [to:+19175805419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179549716] [to:+12138028090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15159712942] [to:+15153031213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955023] [to:14104228630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619031] [to:18163289706] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15053575738] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012885827] [to:+18133086540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058176] [to:19023969194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387651628] [to:+14387953928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-10 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-10 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:18 ip-10-0-0-11 mdr: 2016-02-01 11:49:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053213034] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:18 ip-10-0-64-11 mdr: 2016-02-01 11:49:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630119] [to:18144931186] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046410553] [to:+17089468710] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19367306468] [to:+19365493853] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:12818962598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783211713] [to:+14703334722] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812200] [to:593994900839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078918050] [to:+13477699572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735633703] [to:+19735479867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:13134128693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:18643634915] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024391700] [to:+12133550449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154327143] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138165081] [to:+18193030720] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018700] [to:19029211211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-11 mdr: 2016-02-01 11:49:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238002324] [to:+14706734605] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692708568] [to:15022038496] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:19 ip-10-0-64-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975755] [to:15614148514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-10 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038708] [to:17862178747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:19 ip-10-0-0-11 mdr: 2016-02-01 11:49:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460885] [to:15136173814] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567404] [to:19028302162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19733595072] [to:19733328397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402097453] [to:+15406286062] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524401544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026222] [to:17054652524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693298159] [to:+12692244394] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059380900] [to:+17053007261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524684382] [to:+18583606616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409085931] [to:+15109722774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993425] [to:19549938906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916835] [to:17094647146] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-0-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-11 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:20 ip-10-0-64-10 mdr: 2016-02-01 11:49:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-20 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627310] [to:+447565324860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154815063] [to:+16506007883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19785808468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041598] [to:17189247751] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899773] [to:18605083196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596059] [to:17069948851] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474566260] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102419252] [to:+13216137438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12156263128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17053060702] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805472822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088315] [to:17316124875] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125800] [to:12253620448] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16062101311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663177] [to:12316208859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507795] [to:18286394631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:19372451709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19547897530] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:21 ip-10-0-64-10 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:21 ip-10-0-0-11 mdr: 2016-02-01 11:49:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348228921] [to:12482172618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475501848] [to:+13437001972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069361379] [to:+13477972698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543143714] [to:13053030702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262182100] [to:+12267792913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801746] [to:17706661977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-10 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041863] [to:17406480005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:22 ip-10-0-64-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491879] [to:12292918414] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:22 ip-10-0-0-11 mdr: 2016-02-01 11:49:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193086173] [to:+19196516158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153570613] [to:+15635497664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667388] [to:12154799754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237637] [to:17865323458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265893] [to:14239434482] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265893] [to:14239434482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15086856006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653910606] [to:+13475076313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033410330] [to:+14158907247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572665723] [to:+19783231581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477946277] [to:+15817016400] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062211448] [to:13079222138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474065813] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202905085] [to:+12628884119] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:23 ip-10-0-0-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475816801] [to:+19179772693] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-11 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166621179] [to:+15169082878] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:23 ip-10-0-64-10 mdr: 2016-02-01 11:49:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677701962] [to:+12672473712] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778534] [to:16266625762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809028291] [to:+15874005519] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789496] [to:19373369395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572328533] [to:15405144720] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220183] [to:18453840272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074540615] [to:+14076333398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672278429] [to:+13477417192] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784306] [to:18039846193] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16673083425] [to:14439794303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179549716] [to:+12138028090] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036072] [to:13233804942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:24 ip-10-0-64-10 mdr: 2016-02-01 11:49:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:24 ip-10-0-0-11 mdr: 2016-02-01 11:49:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16025511153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16618749596] [to:+17027183013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064025099] [to:+12138614387] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702503921] [to:+15612937865] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14258799791] [to:+14258805587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617051943] [to:13053185393] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275036839] [to:+16475568671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-21 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447977665991] [to:+447520674824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199171506] [to:+12264570158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056502406] [to:+16477994120] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13314223575] [to:+16784123319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857829] [to:14434046388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186373696] [to:+19176366554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407796023] [to:+12405538974] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694147431] [to:18177068314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-10 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-0-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692028216] [to:14697342378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-10 mdr: 2016-02-01 11:49:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656025056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405716006] [to:+14406588688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:25 ip-10-0-64-11 mdr: 2016-02-01 11:49:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344773817] [to:+13479069972] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163464754] [to:+12262410773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042753] [to:19797392051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244668593] [to:+17248033097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15803747904] [to:+14692053186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313022610] [to:+15104476857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-21 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672545] [to:+447552695136] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523894] [to:12108496619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069361379] [to:+13477972698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-11 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852527263] [to:+17273624884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165542] [to:15155252126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:26 ip-10-0-0-11 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15017331126] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364782] [to:+18638552714] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:26 ip-10-0-64-10 mdr: 2016-02-01 11:49:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702928723] [to:+19046947937] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042653303] [to:18193287836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-21 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015661842] [to:+15107799608] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944883] [to:18642934486] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391289] [to:12677520160] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644193238] [to:+19543143205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076095] [to:16159873155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402286834] [to:+15672067616] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17086314601] [to:+13126142054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782469081] [to:+13025851874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-10 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:27 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:27 ip-10-0-64-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19417132944] [to:+13603138930] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14092414512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523136] [to:15125453462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315081201] [to:+15874097402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168030337] [to:+17166661243] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735615] [to:16789274477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049141324] [to:+12048133341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056440658] [to:+17053007615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971598] [to:12076716738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024062772] [to:+19027046356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866711] [to:18438706653] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659460980] [to:17655461890] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423068] [to:12533700051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106931151] [to:+19179772428] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-64-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388085955] [to:15149157671] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-10 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:28 ip-10-0-0-11 mdr: 2016-02-01 11:49:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124451] [to:16789936001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166446] [to:13187173536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177508757] [to:+15178615077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215953] [to:19162916839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:13097214214] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745441] [to:15743987440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185884345] [to:+13479788009] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066993936] [to:+14703336564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162021961] [to:+16139099588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921556] [to:17743055170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312419607] [to:+19312577530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492084] [to:14126366314] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286787] [to:12603373960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898178966] [to:+16784333738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14029997040] [to:15312890489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14848005038] [to:+12677939197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:29 ip-10-0-64-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-10 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122125395] [to:+14243361704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632050858] [to:+18638556295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:29 ip-10-0-0-11 mdr: 2016-02-01 11:49:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995804] [to:18646170891] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659130] [to:18184214712] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044536808] [to:+17733132641] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703216242] [to:+14153161945] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898336] [to:19109770627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:15187765349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514012185] [to:+16193590555] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690373] [to:12482757442] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136857397] [to:+16096144579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148885291] [to:+12243870755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659130] [to:18184214712] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-20 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605185] [to:+447792023874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003010201] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14258799791] [to:+14258805587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400809] [to:18504055550] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:30 ip-10-0-0-11 mdr: 2016-02-01 11:49:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:30 ip-10-0-64-10 mdr: 2016-02-01 11:49:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479219454] [to:15738206239] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012796] [to:18453377623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014266726] [to:12019696325] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003010202] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656694732] [to:+15103136448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035942610] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507795] [to:18286394631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14437591538] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562984060] [to:+14242835314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-11 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596444538] [to:+15152038168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-0-10 mdr: 2016-02-01 11:49:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710367] [to:12025903474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-10 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:31 ip-10-0-64-11 mdr: 2016-02-01 11:49:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527330] [to:15174556825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176020462] [to:+12135593360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867959387] [to:+15103405091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816401] [to:15026672703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383994406] [to:+14388096264] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138165081] [to:+18193030720] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142937057] [to:+19033786770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14034041819] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:12899315176] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16079725689] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:7:0608045CA60201] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576472297] [to:+14845772851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16067483848] [to:+13475807746] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-11 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633279192] [to:+18637347520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16506007883] [to:14154815063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:32 ip-10-0-64-11 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19542543076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:32 ip-10-0-0-10 mdr: 2016-02-01 11:49:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648320] [to:12038183618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16079725689] [to:+19785939515] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:0608045CA60202] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176693996] [to:+18638553325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708141675] [to:+19148208065] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148870068] [to:+15146134260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17792039386] [to:17087128267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433453887] [to:14109138235] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412431366] [to:15087285967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364976] [to:+14706731996] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136637123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014123186] [to:+13015699289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:12146946900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047497273] [to:+16049019730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062338] [to:12293195930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053404177] [to:14165568539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-0-11 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132063] [to:15145771704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-11 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003910202] -Feb 1 11:49:33 ip-10-0-0-10 mdr: 2016-02-01 11:49:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:33 ip-10-0-64-10 mdr: 2016-02-01 11:49:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003910201] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504570] [to:19548681033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405410707] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797256] [to:13175045786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12522072097] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981430] [to:17656359379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-0-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182217177] [to:+16465478820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-11 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012914] [to:16464965192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:34 ip-10-0-64-10 mdr: 2016-02-01 11:49:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451004] [to:+13479066850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920718] [to:15174025677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062654] [to:19028808650] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14199755449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136169757] [to:+19172720529] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19094777335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013005417] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296413] [to:15043513133] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-10 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578057337] [to:+13475086308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16148965015] [to:14192103248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-10 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:35 ip-10-0-64-11 mdr: 2016-02-01 11:49:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142430608] [to:+16464751304] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:35 ip-10-0-0-11 mdr: 2016-02-01 11:49:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052098274] [to:+13475086420] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086139994] [to:+18314288263] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086100] [to:17866594359] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15093182063] [to:19174102130] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132660529] [to:+19175804627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146230363] [to:+15817010071] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720858] [to:18039741336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104475041] [to:15597990075] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213171797] [to:+13217309541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15715261366] [to:50379081734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17819643490] [to:+12134785626] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069925716] [to:13067154344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477699572] [to:12078918050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315778021] [to:+13866018669] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015693182] [to:+19177329270] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503204485] [to:+14157878530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143597588] [to:+19149220482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124907] [to:12489431568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:19057670491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392828] [to:16077319856] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-10 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:36 ip-10-0-64-11 mdr: 2016-02-01 11:49:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016492665] [to:+14018677442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:36 ip-10-0-0-11 mdr: 2016-02-01 11:49:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593924378] [to:+13123008825] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355225] [to:12602436021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543543462] [to:19543802897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096855343] [to:+17097005171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473307003] [to:+13479788440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988246] [to:16463996400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238638962] [to:+14237777975] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345236] [to:17735070408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434500944] [to:+13476674516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-10 mdr: 2016-02-01 11:49:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:37 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198172328] [to:+12262436938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:37 ip-10-0-0-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579210174] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:13138188453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609728859] [to:+13609494828] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937161] [to:17347552346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149689612] [to:+14387940957] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064853] [to:13307083774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-20 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036405628] [to:+16572211531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-21 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236450] [to:+447523427605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141731] [to:18192663240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083409463] [to:+16236664711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528421] [to:14406547071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-10 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19784948650] [to:+12694308351] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-10 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889896] [to:13174084554] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:38 ip-10-0-0-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027348956] [to:+13477973862] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:38 ip-10-0-64-11 mdr: 2016-02-01 11:49:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508493935] [to:+18503293544] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712352703] [to:+15713055820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805471328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193399123] [to:+19193240433] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622513268] [to:+13025830152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995853] [to:19518786247] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-20 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048090176] [to:12046985184] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13523250658] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745030013] [to:+12134017524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997027] [to:13218059930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:39 ip-10-0-64-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617032436] [to:+14049004511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004636] [to:19198429608] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-11 mdr: 2016-02-01 11:49:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:39 ip-10-0-0-10 mdr: 2016-02-01 11:49:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505214315] [to:+14388097466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561038] [to:17194696990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578057337] [to:+13475086308] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145412125] [to:+13477868245] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274936164] [to:18169295701] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015029644] [to:+13015699962] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054571773] [to:+17607014922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071753] [to:15146226816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:13234450901] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502416697] [to:+18503293504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:40 ip-10-0-0-10 mdr: 2016-02-01 11:49:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977038] [to:14254349781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:40 ip-10-0-64-11 mdr: 2016-02-01 11:49:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478816367] [to:+15147003691] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204355827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15095402706] [to:+18314288330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076273] [to:17036251822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020315] [to:19894640106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760305] [to:18284754121] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204355827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001722] [to:16474065813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17402372684] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482632] [to:16082285367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252628680] [to:+18326502532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175803706] [to:+18328044011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205955] [to:14433978168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16099040110] [to:14104302167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072847] [to:17246995090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:41 ip-10-0-64-11 mdr: 2016-02-01 11:49:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:41 ip-10-0-0-10 mdr: 2016-02-01 11:49:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957694] [to:14439078439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15138469184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349359] [to:12095425245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025957694] [to:14439078439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308761] [to:19102340703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:16473626251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104499339] [to:+14436813182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306176050] [to:+18484828956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654144859] [to:+13477869967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774767] [to:16053507258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129009286] [to:+13478968643] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702696110] [to:+15703973326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243324715] [to:+17248033741] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363025913] [to:+14695321842] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137285802] [to:+12485375315] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372813] [to:19178890484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043078615] [to:+19785334082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-0-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384947488] [to:+14387926701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-11 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:42 ip-10-0-64-10 mdr: 2016-02-01 11:49:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189247751] [to:+17185041598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:17135600885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562391199] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472729] [to:17743533662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868452] [to:13018617182] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528839924] [to:+14157876723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517519615] [to:+19715121441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988246] [to:16463996400] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:43 ip-10-0-64-10 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-10 mdr: 2016-02-01 11:49:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:43 ip-10-0-0-11 mdr: 2016-02-01 11:49:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067163671] [to:+16397394808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163902405] [to:+12132956355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17579556675] [to:+16822314426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193077355] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161638] [to:18637336962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-11 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052794128] [to:+17053028751] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:44 ip-10-0-64-11 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657716] [to:12063359070] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194959558] [to:+12262406767] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147109099] [to:+14388040878] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:44 ip-10-0-0-10 mdr: 2016-02-01 11:49:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725861] [to:18105132743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165443460] [to:16314168098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15053997565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804627] [to:15132660529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783261023] [to:+16784123578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436021] [to:+12606355225] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-10 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15139180589] [to:+15133860435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-11 mdr: 2016-02-01 11:49:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:45 ip-10-0-0-10 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:45 ip-10-0-64-11 mdr: 2016-02-01 11:49:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491450] [to:15594808680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-20 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451232162] [to:+447866610888] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581395] [to:19042088225] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123988129] [to:+12138739798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048098341] [to:12042508932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768065] [to:15024871237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163942637] [to:+14406587594] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167851250] [to:+17866079713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16673083165] [to:17173951387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:15873362247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184809] [to:19727467724] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095131162] [to:+14072163298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-10 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16073484814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14432510049] [to:17708759035] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-10 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19077999352] [to:+15102548965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18064716919] [to:+14697516054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069703] [to:13098258350] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:46 ip-10-0-0-11 mdr: 2016-02-01 11:49:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193037] [to:19106440146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:46 ip-10-0-64-11 mdr: 2016-02-01 11:49:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-20 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-21 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185884345] [to:+13479788009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802327418] [to:+14158258194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-21 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451236450] [to:+447757355305] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-20 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312154569] [to:+12317455246] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218302] [to:18108359007] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043985021] [to:+19298410204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003510201] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178777995] [to:13475741407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789928] [to:12073576398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174432575] [to:+13176881201] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713636633] [to:+12267794780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132950498] [to:13179829607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-11 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-10 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334722] [to:14783211713] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:47 ip-10-0-64-11 mdr: 2016-02-01 11:49:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:47 ip-10-0-0-10 mdr: 2016-02-01 11:49:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146226816] [to:+14388071753] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003510202] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194266096] [to:16206151716] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149724698] [to:+18133081384] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997082] [to:16059299294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030720] [to:16138165081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-21 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269229] [to:18432897979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12156263128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-0-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-10 mdr: 2016-02-01 11:49:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435299721] [to:14436682114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:48 ip-10-0-64-11 mdr: 2016-02-01 11:49:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036729558] [to:+14027694389] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024391289] [to:13023872770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478887] [to:14015164334] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572024465] [to:+12027179910] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837049] [to:12194339762] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473798865] [to:18035657964] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450569] [to:12253545856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796168] [to:16057438810] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853313240] [to:+15852821630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363025913] [to:+14695321842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760580] [to:13345969615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:49 ip-10-0-64-10 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-10 mdr: 2016-02-01 11:49:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:49 ip-10-0-0-11 mdr: 2016-02-01 11:49:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598169848] [to:+19148990542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524401544] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921512] [to:15146602015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786522287] [to:+15087884004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836396] [to:17578708800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19797392051] [to:+18328042753] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17063959281] [to:17064960775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922026] [to:18178916951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284754121] [to:+12135760305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026149266] [to:+13478968426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17785511882] [to:+16475039329] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148124913] [to:+12628886597] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305813308] [to:+15103222816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374665134] [to:+15108538422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:50 ip-10-0-64-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:50 ip-10-0-0-11 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874028] [to:12107714559] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14235048695] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155565545] [to:+13474340238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:19103090074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15304403343] [to:+15308631910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13617040359] [to:+13614450558] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192188] [to:15145150446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973756] [to:13156638412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14698740119] [to:18063825123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158075682] [to:16152023148] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535066] [to:17736330587] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044215190] [to:+14072162807] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17015872104] [to:13308007411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806885801] [to:+14804394230] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107339219] [to:+19298418867] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:12018939420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-10 mdr: 2016-02-01 11:49:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:51 ip-10-0-0-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:51 ip-10-0-64-11 mdr: 2016-02-01 11:49:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044085046] [to:+16785861066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12393843283] [to:+13866016527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322999346] [to:+12627774507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138668873] [to:+18194140368] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269229] [to:18432897979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173988580] [to:14696442714] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18632070960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18632070960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294121612] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13392340631] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690682] [to:17734410896] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533700051] [to:+12536423068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015598] [to:17027479760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17192012086] [to:+12138062163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026697106] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052036072] [to:13233804942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-20 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233689] [to:+447950707191] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165701146] [to:+16474955216] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15032690424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-10 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058004635] [to:15054854923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:52 ip-10-0-0-11 mdr: 2016-02-01 11:49:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:52 ip-10-0-64-11 mdr: 2016-02-01 11:49:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334560] [to:16614663590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732803979] [to:+18623082122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498084] [to:16469236003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706814350] [to:+19172659267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065603965] [to:+14242769089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423361] [to:13605909686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128013676] [to:+17248032142] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19853811797] [to:+19783231988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169267695] [to:18142345251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12189663724] [to:+12183311094] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892549622] [to:+19895697360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348267] [to:12708051794] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-10 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:13018048198] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911046] [to:12892378715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:53 ip-10-0-0-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144931186] [to:+19175630119] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-10 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088276351] [to:+15084168958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:53 ip-10-0-64-11 mdr: 2016-02-01 11:49:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14405745834] [to:+16167948280] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269081] [to:18109556718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065371886] [to:+16784968802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031653] [to:19027542344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821506] [to:15856663777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137072341] [to:16132536897] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007472] [to:15143589693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089791] [to:18136440035] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387926701] [to:14384947488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063078420] [to:+13178937194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168323112] [to:+17279985674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:54 ip-10-0-0-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-11 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:54 ip-10-0-64-10 mdr: 2016-02-01 11:49:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16028009543] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024784667] [to:+15874054442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546628841] [to:+18178184909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19182856416] [to:+13217308387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093182] [to:16133141720] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054274547] [to:+18673222144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143597588] [to:+19149220482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156804487] [to:+17206231879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13174558696] [to:13173325990] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659355855] [to:+12312663155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:12403823973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106931151] [to:+19179772428] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955627] [to:19053302134] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173818636] [to:+13479376158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057498302] [to:+12262416982] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235050342] [to:+12485375421] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096495645] [to:+17097015734] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404062675] [to:+13212701207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023786850] [to:+12405587756] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12285479010] [to:+15178615353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052337345] [to:+16467691337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16163291260] [to:+19715126259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138639984] [to:+16139093291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165603377] [to:+15852822452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469236003] [to:+16463498084] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069948851] [to:+12135596059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122125395] [to:+14243361704] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019701926] [to:+19142793043] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854473011] [to:+15852822998] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026328551] [to:+13025852186] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477812697] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047653123] [to:+16049019478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042671852] [to:+13216137656] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049616814] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149180276] [to:16142165340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-64-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186373696] [to:+19176366554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079682042] [to:+12139212479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-10 mdr: 2016-02-01 11:49:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13043034146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:55 ip-10-0-0-11 mdr: 2016-02-01 11:49:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169357] [to:13215362805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050779] [to:18063824100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925814] [to:15146165355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045159802] [to:+12048138453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437069] [to:16044017969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015384430] [to:+16465473748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040288] [to:+19177374842] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065371886] [to:+16784968802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:13234450901] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169362261] [to:+17162792302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800625] [to:12037272863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693135905] [to:+12694611268] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:56 ip-10-0-0-10 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E70201] -Feb 1 11:49:56 ip-10-0-0-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E70202] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:56 ip-10-0-64-11 mdr: 2016-02-01 11:49:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165443460] [to:16314168098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-20 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-21 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447428156536] [to:+447418325112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297933] [to:15025509651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062611259] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063322378] [to:+14702481281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643096625] [to:+16465479842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017173] [to:17703095970] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238718472] [to:+14158536166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243442] [to:18044411769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243442] [to:18044411769] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997481] [to:13524276274] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695325487] [to:18066624968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253174327] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-10 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12139440733] [to:+19173965132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:57 ip-10-0-0-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073104059] [to:+19292689685] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:57 ip-10-0-64-11 mdr: 2016-02-01 11:49:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322411942] [to:+16095434819] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104228630] [to:+13025955023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132081] [to:14388382774] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946793] [to:13343333695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542273524] [to:+13479978448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946793] [to:13343333695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214063870] [to:13862793926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623907029] [to:+13866018017] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816011211] [to:+12133756030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148192188] [to:15145150446] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996400] [to:+19148988246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:18195800322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957555] [to:19105010204] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-20 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022711741] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569550430] [to:18568993174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042396251] [to:+19802097682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302187] [to:18137014815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952506] [to:18195270588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12064009175] [to:12532247702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286787] [to:15406799490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-10 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227215] [to:17069368951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:58 ip-10-0-0-11 mdr: 2016-02-01 11:49:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:58 ip-10-0-64-10 mdr: 2016-02-01 11:49:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697448054] [to:+14695327942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797955] [to:17405410707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167851250] [to:+17866079713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862178747] [to:+13052038708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044588] [to:13259772225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690682] [to:17734410896] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029893708] [to:+19027062829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977303] [to:15707060350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998274] [to:17163536686] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14389373568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029893708] [to:+19027062829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732968] [to:16789365194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173834452] [to:18044414346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466465] [to:19734942257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-10 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459112] [to:14193413202] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:49:59 ip-10-0-0-10 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:49:59 ip-10-0-64-11 mdr: 2016-02-01 11:49:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076366895] [to:+13476762986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838249] [to:18175249776] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305279] [to:12173294805] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612944177] [to:+15612407665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659355855] [to:+12312663155] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025004213] [to:14808422144] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18704059507] [to:+16574008713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477039973] [to:+16475039618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317985734] [to:+12313778044] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056531] [to:19028171456] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136728] [to:17047742004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693135905] [to:+12694611268] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703094844] [to:+13477989617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:00 ip-10-0-64-10 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-11 mdr: 2016-02-01 11:50:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:00 ip-10-0-0-10 mdr: 2016-02-01 11:50:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068178103] [to:+17063959673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622353193] [to:+19735479026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897497] [to:18125896512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139617] [to:18164197261] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465139617] [to:18164197261] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479695] [to:18284679601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12052421579] [to:+17722425749] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347990] [to:19418751885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:01 ip-10-0-0-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277174] [to:19033571994] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-11 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692058056] [to:19416238918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:01 ip-10-0-64-10 mdr: 2016-02-01 11:50:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627451] [to:18455494661] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459719] [to:14195150049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023962358] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053738010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298412735] [to:17573763041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000628] [to:17092934494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778122] [to:19177837697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697085791] [to:+16139126082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023993500] [to:+12027179714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955695] [to:13046207392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898329] [to:12566891110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326502532] [to:13252628680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796170] [to:18122098039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-11 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003490201] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126259] [to:16163291260] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-20 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833254984] [to:+447451231406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-20 mdr: 2016-02-01 11:50:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008884] [to:18635292655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:02 ip-10-0-0-10 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008884] [to:18635292655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:02 ip-10-0-64-11 mdr: 2016-02-01 11:50:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012796] [to:19045012037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003490202] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16602235089] [to:+17204637234] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842281] [to:15704909490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862580] [to:12708508473] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753356] [to:13523282921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259178] [to:15132263360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195076] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805473255] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266475] [to:14695341117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:14133863407] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-0-11 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308922] [to:13215571300] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:03 ip-10-0-64-10 mdr: 2016-02-01 11:50:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508466969] [to:+14387924531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977849] [to:17179654584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-20 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005397] [to:17097638177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297455] [to:14232739356] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809330801] [to:+13473899800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713636633] [to:+12267794780] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:04 ip-10-0-0-11 mdr: 2016-02-01 11:50:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15058006661] [to:12425333372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:04 ip-10-0-64-10 mdr: 2016-02-01 11:50:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463996400] [to:+19148988246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899710511] [to:+19894557043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041460] [to:+16042652696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417029765] [to:19416615583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104474872] [to:15204832566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:18126102907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618919947] [to:+19292689406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003470201] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048015396] [to:+17344365403] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054576010] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624175763] [to:+13234834225] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299390443] [to:+12136163363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145739298] [to:+14388095373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023324099] [to:+19282974676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049746716] [to:+15103222523] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389945788] [to:+14506390028] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606286222] [to:+14422207633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12172745868] [to:+18729997931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036555305] [to:+17078974230] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706346437] [to:+14703336613] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384947488] [to:+14387926701] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-0-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-11 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:05 ip-10-0-64-10 mdr: 2016-02-01 11:50:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706661977] [to:+13479801746] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173977] [to:13374968827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125270] [to:18103471904] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12022711741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12537405943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618919947] [to:+19292689406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003470202] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322662546] [to:+19724835994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-21 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028645661] [to:+13024991657] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-21 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451243005] [to:+447771591716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708203696] [to:+14695324059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024401399] [to:+19027043459] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-11 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:06 ip-10-0-64-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233836785] [to:13175073957] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007833] [to:15147970515] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:06 ip-10-0-0-10 mdr: 2016-02-01 11:50:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202382762] [to:+17542009021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136958698] [to:+18168007383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15417870329] [to:+19712611037] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629308417] [to:+13479191111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695072946] [to:+19177370588] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12816839911] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-21 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447743466006] [to:+447418336001] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822998] [to:15854473011] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12609092132] [to:+12604077012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481131] [to:15055449502] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730238] [to:17067414811] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988246] [to:16463996400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733210463] [to:+14243360651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285060640] [to:+16506467059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174084554] [to:+13176889896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355225] [to:12602436021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183445] [to:16267666431] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:07 ip-10-0-64-10 mdr: 2016-02-01 11:50:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:07 ip-10-0-0-11 mdr: 2016-02-01 11:50:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:13306473967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179775650] [to:+19148250777] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068711516] [to:+15068029730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524122533] [to:+14242846871] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836868] [to:5515998409494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103090074] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:19173531778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545982654] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786709756] [to:+12134547517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-20 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447837014346] [to:+447418331650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815131031] [to:+19177739840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264553116] [to:16479686841] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175517] [to:18286781304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999116] [to:19374020853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466999116] [to:19374020853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242462] [to:18043197644] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242462] [to:18043197644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:08 ip-10-0-64-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064499554] [to:+15068039667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-11 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:08 ip-10-0-0-10 mdr: 2016-02-01 11:50:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-21 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415799544] [to:+447520627702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017104] [to:17406375060] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122481157] [to:+17089468235] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159755311] [to:+16158076271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003689] [to:14052028682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059239669] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503012] [to:18087833869] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410384] [to:12035591019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:15875012086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777237] [to:12673287479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043958530] [to:+17702005460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-10 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-64-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158532272] [to:15126564669] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513377109] [to:18657484745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-11 mdr: 2016-02-01 11:50:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:09 ip-10-0-0-10 mdr: 2016-02-01 11:50:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13254556613] [to:+15129527368] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15056104737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-20 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520622351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033797446] [to:+13477962771] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033359] [to:16624189569] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508004100] [to:+16042594690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785429314] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619361] [to:12039222621] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990542] [to:18598169848] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023827620] [to:+14437201739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606981538] [to:+12138612890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-10 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:10 ip-10-0-0-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:10 ip-10-0-64-11 mdr: 2016-02-01 11:50:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048006268] [to:+12135297949] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732803979] [to:+18623082122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779841536935] [to:+15303623335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14027694389] [to:18036729558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842842281] [to:15704909490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-21 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451209445] [to:+447929125077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260320] [to:19548162563] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724358] [to:12512427463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044017969] [to:+16042437069] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479373310] [to:18595538375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673422545] [to:+16466320050] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15595002848] [to:15596728669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12343038060] [to:+13479196851] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19056502406] [to:+16477994120] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472814102] [to:+12262410259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069753362] [to:+14703336293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048805031] [to:+18134302316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185787976] [to:+13476191415] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145503238] [to:+14387945627] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-10 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:11 ip-10-0-64-11 mdr: 2016-02-01 11:50:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403969088] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:11 ip-10-0-0-11 mdr: 2016-02-01 11:50:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813417230] [to:+15103227837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176366514] [to:16318969259] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196625] [to:13474470438] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164481] [to:15043082799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102044] [to:17408610399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069703] [to:13098258350] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632296808] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145040450] [to:+19177373742] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882961] [to:17073422588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708770580] [to:+13476303090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-21 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451245475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175384837] [to:+17813129323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147777224] [to:+15147003830] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15047171966] [to:+12138733520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:12 ip-10-0-0-20 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-11 mdr: 2016-02-01 11:50:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868452] [to:13018617182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:12 ip-10-0-64-10 mdr: 2016-02-01 11:50:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788358] [to:12166099298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136044032] [to:16132439721] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193413202] [to:+14197459112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874107948] [to:15879264039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898098739] [to:+13069938727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14797709792] [to:+18312919018] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18572195076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585052] [to:13136135031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13253156712] [to:+14698740327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-11 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-11 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338560] [to:+16474952306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:13 ip-10-0-0-10 mdr: 2016-02-01 11:50:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:13 ip-10-0-64-10 mdr: 2016-02-01 11:50:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157962265] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136048237] [to:16133153236] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393372] [to:18109319718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302172841] [to:+16172139061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19515811652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063360461] [to:+16504346394] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247534] [to:12487473376] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-21 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333947] [to:+447919970510] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474020406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032945] [to:17247973191] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107595206] [to:+19108888186] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13066814712] [to:+13064003347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371708] [to:12253855496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175045786] [to:+13473797256] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035657964] [to:+13473798865] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003200401] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-11 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:14 ip-10-0-64-10 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016764] [to:12527026395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:14 ip-10-0-0-11 mdr: 2016-02-01 11:50:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123988129] [to:+12138739798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003200403] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555717] [to:+16039450385] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12195082236] [to:+12139217872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108496619] [to:+15129523894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314168098] [to:+15165443460] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003200402] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602436021] [to:+12606355225] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369849981] [to:+12762261220] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911764] [to:16134064935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312213] [to:12186836369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003200404] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16054308881] [to:+16054997319] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:15 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12242140370] [to:16308158383] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-11 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138241044] [to:+14137289509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:15 ip-10-0-0-10 mdr: 2016-02-01 11:50:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896968412] [to:+15103135693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149180276] [to:16142165340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981800] [to:13524339761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130616] [to:12544583820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219265319] [to:17069518326] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130616] [to:12544583820] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13522553410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260320] [to:19548162563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138241044] [to:+14137289509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:16 ip-10-0-0-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-11 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409601088] [to:+17027476275] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:16 ip-10-0-64-10 mdr: 2016-02-01 11:50:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025060785] [to:+17723601650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920608] [to:15176736551] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222523] [to:17049746716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18443347041] [to:+18077882894] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288942] [to:100393889264540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:14163464754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152301148] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973862] [to:18027348956] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864871942] [to:+13055017808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005679] [to:14145105536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:15123939610] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146082020] [to:+14388074937] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-64-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-20 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670078] [to:+447548634032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-10 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407830] [to:19189016631] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:17 ip-10-0-0-11 mdr: 2016-02-01 11:50:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197223799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381682] [to:13362578344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203784] [to:14434046400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043410865] [to:17066646251] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043410865] [to:17066646251] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192103248] [to:+16148965015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16134629814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024700714] [to:+19802097704] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193035834] [to:+15817041369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144523013] [to:+14388078048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-11 mdr: 2016-02-01 11:50:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:18 ip-10-0-64-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476382809] [to:+19174094868] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-11 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405412623] [to:+17408796954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:18 ip-10-0-0-10 mdr: 2016-02-01 11:50:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329462] [to:19172161003] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-21 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805474620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215571300] [to:+13217308922] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976010] [to:17577444759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808598186] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-21 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451221496] [to:+447432618144] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179595933] [to:+18572190742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746220] [to:15092400960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065353238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222332] [to:19107513769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-64-10 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240575] [to:19195279700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263384221] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-10 mdr: 2016-02-01 11:50:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:15802165311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:19 ip-10-0-0-11 mdr: 2016-02-01 11:50:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709019939] [to:+13032192497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124300595] [to:+15204875086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12156667502] [to:12154690483] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164708134] [to:+12169295621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879193] [to:17048188314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175005974] [to:+19172593723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455985761] [to:+13219998237] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-10 mdr: 2016-02-01 11:50:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:20 ip-10-0-0-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334468] [to:17708264118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:20 ip-10-0-64-11 mdr: 2016-02-01 11:50:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16022915066] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-10 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652716196] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:14044385533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-10 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036362792] [to:18035287253] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162627375] [to:+15852823244] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:21 ip-10-0-64-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-11 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145479183] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:21 ip-10-0-0-10 mdr: 2016-02-01 11:50:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074884] [to:18283010833] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603508510] [to:+13122754316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047647283] [to:+12132958569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165864129] [to:+14159889296] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001644] [to:14168169467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719464] [to:19545982654] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524391] [to:16169157669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128964784] [to:+13475804792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13147954868] [to:+13148998380] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474065813] [to:+12497001722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027183445] [to:13238476299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17066993032] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-10 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:22 ip-10-0-0-11 mdr: 2016-02-01 11:50:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162784734] [to:+12162396181] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:22 ip-10-0-64-11 mdr: 2016-02-01 11:50:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746220] [to:15092400960] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497888] [to:19704050210] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063359070] [to:+12532657716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704398109] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12149359761] [to:14695484787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066525] [to:18648845299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732715847] [to:+19738146391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054854923] [to:+15058004635] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408480365] [to:+12134786743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007472] [to:15143589693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072408] [to:15148246324] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:23 ip-10-0-64-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072408] [to:15148246324] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14405331025] [to:12162034377] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-10 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262414767] [to:15199951465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378641] [to:19126770823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:23 ip-10-0-0-11 mdr: 2016-02-01 11:50:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594808680] [to:+14156491450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133141720] [to:+16139093182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-21 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320012] [to:+447508949923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641969] [to:+14387925967] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953939] [to:18192716591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18036729558] [to:+14027694389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17579210174] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:12898133161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428904] [to:13864383388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-21 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17275036839] [to:+16475568671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136958698] [to:+18168007383] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023898974] [to:+18127777341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076003943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407513485] [to:+13073702735] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-11 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:24 ip-10-0-64-10 mdr: 2016-02-01 11:50:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:24 ip-10-0-0-10 mdr: 2016-02-01 11:50:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092934494] [to:+17097000628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013220] [to:14074171083] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816839911] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19177636874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373742] [to:18145040450] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049790485] [to:+14049001033] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345280] [to:18035969278] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159082062] [to:+12674773825] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19047623106] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:12095432125] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596753] [to:12764928296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-20 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418327] [to:15199171462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-11 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242265] [to:17577196066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:25 ip-10-0-0-10 mdr: 2016-02-01 11:50:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:25 ip-10-0-64-10 mdr: 2016-02-01 11:50:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153405424] [to:16028009543] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232331] [to:15596527243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852054912] [to:+19142793432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038E0202] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175415703] [to:+19177954150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072167992] [to:+19782169348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092934494] [to:+17097000628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336094] [to:13126787430] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789754] [to:15134290096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187526877] [to:+16079687320] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749278] [to:19802513928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17658911923] [to:+19177376846] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863008715] [to:+17864803821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503639195] [to:+19142967246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156928137] [to:+12139927043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045635711] [to:+16784333691] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-10 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-11 mdr: 2016-02-01 11:50:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:26 ip-10-0-0-11 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:13152893293] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15056007549] [to:15053134135] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:26 ip-10-0-64-10 mdr: 2016-02-01 11:50:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548592] [to:16174138533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195677285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-21 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520675264] [to:+447824399010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132263360] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217872] [to:12195082236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15308631910] [to:15304403343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202548038] [to:+17205028352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070670] [to:12605179085] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306317245] [to:+12138025369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164410456] [to:+14049004206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024100570] [to:+19028019485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506315958] [to:18505301157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123749853] [to:+12139219409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-21 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036023997] [to:13213168166] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-10 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866622647] [to:+15865746729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-0-21 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447599835354] [to:+447418329641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:27 ip-10-0-64-11 mdr: 2016-02-01 11:50:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136686216] [to:+12139219267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737315] [to:14108317888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12514012185] [to:+16193590555] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730867] [to:17178751504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483574] [to:12628086250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15668000913] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411045] [to:12267571033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054964308] [to:+17604746014] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137287672] [to:+15865746755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023445421] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495519] [to:16783605893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173125612] [to:+19172720112] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388097466] [to:14505214315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-10 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799590] [to:14083931161] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-10 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144585688] [to:+14387927283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:28 ip-10-0-0-11 mdr: 2016-02-01 11:50:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183200087] [to:+15182908708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:28 ip-10-0-64-11 mdr: 2016-02-01 11:50:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195924291] [to:+19199161071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136895] [to:16625781666] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263479565] [to:+15873152026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136862] [to:14388885420] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16477037596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973326] [to:15702696110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195513930] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523605895] [to:+17865673665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-21 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364052] [to:+19789697371] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626683669] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-10 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:13609499679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:29 ip-10-0-64-11 mdr: 2016-02-01 11:50:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:29 ip-10-0-0-11 mdr: 2016-02-01 11:50:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:18063329479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370234] [to:13308815887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156538761] [to:+16576668089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517099565] [to:+14088725733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594021] [to:14802596081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404317279] [to:+13477148678] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409085931] [to:+15109722774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482498228] [to:+16122558545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005718] [to:19125413667] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402236007] [to:+17816138627] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-64-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:13152893293] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016872201] [to:+19177730005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-11 mdr: 2016-02-01 11:50:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:30 ip-10-0-0-10 mdr: 2016-02-01 11:50:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043618155] [to:+17063501148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302351677] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14157560639] [to:+16156147607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479309090] [to:+13478682670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867422045] [to:14076807372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375421] [to:14235050342] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107756847] [to:12705798061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169841295] [to:+16476937057] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676879491] [to:+15863153153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220981] [to:19152179465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145546656] [to:+16149228657] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-20 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451243885] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14373496370] [to:+16474912554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172161003] [to:+19177329462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032405470] [to:+19523885066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796999028] [to:+12485375991] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142548253] [to:+14123464751] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-10 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125907332] [to:+12139927158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:31 ip-10-0-0-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061506] [to:18703123515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805472579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-11 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018420791] [to:19014802776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:31 ip-10-0-64-10 mdr: 2016-02-01 11:50:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133244097] [to:17856087277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783340737] [to:+19177730162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858558994] [to:+12136309425] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063687] [to:18593961382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042587419] [to:+13866013806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232582420] [to:+13216137453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:15735544981] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635295264] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195377252] [to:+17074031157] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:16362903630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476382809] [to:+19174094868] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062732] [to:17734250856] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012391] [to:14189570204] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260017] [to:13472631963] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:15732057907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627523] [to:16465807001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403823973] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092352351] [to:+17097005451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122784068] [to:+19142568400] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-11 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568461] [to:14163033229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:32 ip-10-0-0-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594021] [to:14802596081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:32 ip-10-0-64-10 mdr: 2016-02-01 11:50:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688777] [to:14043439002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853410701] [to:+16513184185] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504346394] [to:16063360461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228694] [to:18178003234] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027775619] [to:+14242839427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254487516] [to:+12135874835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069368951] [to:+12138227215] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076003943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:13057622312] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:12088486143] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200590] [to:17242066788] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784998300] [to:+13477989267] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15595002848] [to:15596728669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392278] [to:16026216743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866178] [to:18645530083] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-0-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194597] [to:18285503023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772428] [to:14106931151] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-11 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:33 ip-10-0-64-10 mdr: 2016-02-01 11:50:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065549688] [to:+13609727488] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068178103] [to:+17063959673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053302134] [to:+16474955627] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080403120201] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863081529] [to:+13312086100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301310] [to:14126896589] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474053785] [to:+15703974139] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13093069720] [to:13094336018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19189780798] [to:+12138228308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048244758] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702031963] [to:+17702004930] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497445] [to:13478618189] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802734207] [to:+18572192107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080403120202] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-21 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447718647275] [to:+447451237769] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15016502311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16032098571] [to:+16034138658] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-11 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:34 ip-10-0-64-10 mdr: 2016-02-01 11:50:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:34 ip-10-0-0-10 mdr: 2016-02-01 11:50:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069518326] [to:+13219265319] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190948] [to:15742395005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516158] [to:19193086173] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562759377] [to:+18563125368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14704948974] [to:+14044811732] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575945440] [to:+19172668408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092352351] [to:+17097005451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048255123] [to:+17702005718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789283] [to:12244256730] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038477646] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13038477646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875964582] [to:+15874087651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-11 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:35 ip-10-0-0-10 mdr: 2016-02-01 11:50:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:35 ip-10-0-64-10 mdr: 2016-02-01 11:50:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168568] [to:18434852442] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317964581] [to:+15167349578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937194] [to:16063078420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:12109544725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123001979] [to:18158141809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874339] [to:16313366796] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122729815] [to:+14706735126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419130] [to:16626609367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838671] [to:15026401868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337335] [to:12602249673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044411769] [to:+18046243442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14239722461] [to:+13477691042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478869284] [to:+16466878621] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-10 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:36 ip-10-0-64-10 mdr: 2016-02-01 11:50:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:36 ip-10-0-0-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364713] [to:+17633015175] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132206950] [to:+18133088610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042970210] [to:+12064008674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006691] [to:14146390963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13139578555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488484] [to:13098258678] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13145488909] [to:13146884143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528070761] [to:+13867425086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797563] [to:16097092146] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283833296] [to:+19286605088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472428275] [to:+16474963857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033502741] [to:+12497001959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799148442] [to:14383924046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:37 ip-10-0-64-11 mdr: 2016-02-01 11:50:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:37 ip-10-0-0-10 mdr: 2016-02-01 11:50:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-21 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447592461111] [to:+447418322688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312134313] [to:+19318968590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042365336] [to:+16465130019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15857470199] [to:+15852824258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140017] [to:18195883014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513338385] [to:15734506638] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952261] [to:19105787590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042254] [to:15148142982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123825713] [to:19545440055] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743280806] [to:+17749921410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052408752] [to:+15054446171] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688777] [to:17706090258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304669261] [to:+13309358113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764214] [to:12485062878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:38 ip-10-0-0-11 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067994572] [to:+16026384151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:38 ip-10-0-64-10 mdr: 2016-02-01 11:50:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12157962265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977540] [to:15709834861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198023468] [to:+12262416449] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017072163] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124804716] [to:+18127816388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525061] [to:19808885119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074171083] [to:+13866013220] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:13152893293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:19182856416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132276] [to:16035916121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-10 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:39 ip-10-0-0-11 mdr: 2016-02-01 11:50:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:39 ip-10-0-64-11 mdr: 2016-02-01 11:50:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234267751] [to:+12138023270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734627799] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066646251] [to:+14043410865] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149946358] [to:+14388095725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410980] [to:19077073800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849097] [to:14232486802] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849097] [to:14232486802] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277228694] [to:18178003234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163213] [to:13365410455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397281677] [to:+16514105350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-10 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15053068507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531348] [to:14198066935] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:40 ip-10-0-64-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:40 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896008617] [to:+13473437810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:19176363627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677974973] [to:+12679525374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143505483] [to:+17142153047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791211] [to:14085023379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328595137] [to:+17133099109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990875] [to:16147729541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103558917] [to:+18107725253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15734021980] [to:+15733623169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:15302903224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:17195699583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-64-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673779741] [to:+19172836143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946367] [to:18128019841] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-11 mdr: 2016-02-01 11:50:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16786681429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:41 ip-10-0-0-10 mdr: 2016-02-01 11:50:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:14146599749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072758953] [to:12407795258] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435427001] [to:+14437204300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223567] [to:12536524936] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377099] [to:13156406100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546731959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17608671420] [to:17606416167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12623911542] [to:+12626481244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:17868775200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058196170] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:42 ip-10-0-64-10 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:42 ip-10-0-0-11 mdr: 2016-02-01 11:50:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705709212] [to:+12135874508] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-21 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418339931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898083] [to:18144282224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505411988] [to:+14388042548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-20 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418339931] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135356668] [to:+19177328276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:15126690420] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738167170] [to:+19085160087] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344972673] [to:+13479803977] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238380520] [to:+12136036940] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318175] [to:12316450418] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638556877] [to:18638337288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148181] [to:+12692207453] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102242909] [to:+19108888157] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375273877] [to:+14402526889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860052] [to:14238360003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169864907] [to:+16474910936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-10 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168568] [to:18434852442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:43 ip-10-0-0-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12013005417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:43 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053230063] [to:+19543142615] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916344] [to:17249192737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738167170] [to:+19085160087] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568560] [to:19122829280] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036362792] [to:18037247725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:18635898314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347395] [to:17864398021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102164] [to:16132617852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17077919930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-21 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738167170] [to:+19085160087] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022451276] [to:+17123825849] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-20 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012391] [to:14189570204] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-11 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18109628112] [to:19895280330] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-11 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621969] [to:15129834491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:44 ip-10-0-0-10 mdr: 2016-02-01 11:50:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:44 ip-10-0-64-10 mdr: 2016-02-01 11:50:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762291401] [to:+19177374522] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001959] [to:14033502741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692050670] [to:19722617017] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450303] [to:18314069815] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907499] [to:12076598572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021890] [to:16477812697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688777] [to:17706090258] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043076781] [to:+18046244108] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:17868775200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067414811] [to:+14706730238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218302] [to:18108359007] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14193676871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-10 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945032] [to:15146380455] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15155252126] [to:+16413165542] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:45 ip-10-0-0-11 mdr: 2016-02-01 11:50:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652191] [to:16043025027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-10 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:45 ip-10-0-64-11 mdr: 2016-02-01 11:50:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15865676677] [to:+18107725866] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195244758] [to:+19199161653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157907] [to:14035972652] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482309359] [to:+19738462071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187455297] [to:+13478992896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105132743] [to:+18107725861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+16042653354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048883888] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396451044] [to:+12139298201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12816839911] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805473289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045121] [to:18325971084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479800900] [to:17148097574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072899187] [to:+15089668780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431568] [to:+19715124907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-10 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013294] [to:12315703005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896217399] [to:+19894550750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:46 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700696] [to:17049605084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:46 ip-10-0-0-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19517568749] [to:+14243360886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162793134] [to:17163812390] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701207] [to:15404062675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156308976] [to:+19148812959] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578708800] [to:+19172836396] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16503925190] [to:+16474914775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206803] [to:+14353391472] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:16315253422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132956355] [to:13163902405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203784] [to:14439755719] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-10 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:47 ip-10-0-64-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:47 ip-10-0-0-11 mdr: 2016-02-01 11:50:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145189201] [to:+13147635257] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139146575] [to:+16136048893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360143] [to:15097807532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-20 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16082890488] [to:+12628884166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146165355] [to:+14387925814] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005519] [to:17809028291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185675113] [to:13473730424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039445262] [to:+13032198139] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893061074] [to:+19895334903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028041287] [to:15028215263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108508639] [to:+12105560939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-64-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063687] [to:18593961382] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282913606] [to:+19175804891] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-11 mdr: 2016-02-01 11:50:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:48 ip-10-0-0-10 mdr: 2016-02-01 11:50:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17037750947] [to:18327698427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808685046] [to:+15874093532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572984403] [to:+14242866896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285503023] [to:+18572194597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246404827] [to:+17243200669] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132655801] [to:+16475039915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725861] [to:18105132690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16079655925] [to:16513075260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-10 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017699] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315923] [to:15862022122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:49 ip-10-0-64-10 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:49 ip-10-0-0-11 mdr: 2016-02-01 11:50:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:13473164593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192100085] [to:+18194141825] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054156396] [to:+15054446607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702294341] [to:+15705216454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097415] [to:18037418607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194127472] [to:+15817009047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:12262362197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:14193594394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328041751] [to:12818891519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:14087848721] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17242066788] [to:+17243200590] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739083939] [to:+18629551950] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-11 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605083196] [to:+13473899773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-11 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:16473621227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:50 ip-10-0-64-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:50 ip-10-0-0-10 mdr: 2016-02-01 11:50:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693096774] [to:12145790170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18036362792] [to:18037247725] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336227] [to:14072236394] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335170] [to:17064367742] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729402412] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15087285967] [to:+16412431366] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014688] [to:16132661760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167238819] [to:15165909331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679829985] [to:+12676860698] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023044133] [to:+19027042916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18577538216] [to:+14014680075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696442714] [to:+18173988580] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053024] [to:15857486292] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177313366] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122469038] [to:+19172835091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-10 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403969088] [to:+14403594541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:51 ip-10-0-64-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:51 ip-10-0-0-11 mdr: 2016-02-01 11:50:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:18156713542] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511076] [to:+19027058406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183886] [to:14083378287] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182622] [to:16506869406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524401544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015063192] [to:+12132950915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692244394] [to:12693298159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127051] [to:18013315816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198689822] [to:+12264555343] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258194] [to:14802327418] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577879] [to:19312445375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12678647323] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825016] [to:15856890672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022422550] [to:+13025958350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179951326] [to:+19039004599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899750827] [to:+16474952345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201644] [to:12403981665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:52 ip-10-0-64-10 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088200] [to:12263398027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104478132] [to:12057322677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169082350] [to:14193594394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057670491] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034775841] [to:+16465473159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199171506] [to:+12264570158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164811] [to:19197501012] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577879] [to:19312445375] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475456858] [to:+13024395388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053025935] [to:17054576010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072715570] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-10 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746334634] [to:+16465136984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:53 ip-10-0-0-10 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:53 ip-10-0-64-11 mdr: 2016-02-01 11:50:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388638503] [to:+15147004181] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404745] [to:13183155929] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086664] [to:14436940505] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164708134] [to:+12169295621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706090258] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557891] [to:16122393708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193814052] [to:+17027181093] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188471439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502519544] [to:+17866515792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166913020] [to:+12312663233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308121448] [to:+13308503770] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037316668] [to:+18572327502] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:13198444550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061506] [to:13182454586] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396451044] [to:+12139298201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:54 ip-10-0-0-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-11 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038313012] [to:+13478683140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:54 ip-10-0-64-10 mdr: 2016-02-01 11:50:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292534182] [to:+16465478518] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005545] [to:19122431783] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14236419046] [to:14234291404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375960] [to:17069105146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444603] [to:14126809382] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:14694351876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476666411] [to:+12017658838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663256] [to:19788943778] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389373568] [to:+15799000798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653366629] [to:+13478993284] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663256] [to:19788943778] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148880520] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894557043] [to:19899710511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709871579] [to:+13366452635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438601773] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438706653] [to:+14242866711] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024171154] [to:+13025850760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406480005] [to:+14062041863] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017074574] [to:+19172659182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635955208] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477039973] [to:+16475039618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026714248] [to:+19177730570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162393831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023962341] [to:+13025958971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106440146] [to:+18572193037] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038E0201] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168565542] [to:+13479978984] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925967] [to:14387641969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198173777] [to:+18193035103] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329962305] [to:+15163625194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248585738] [to:+12679232288] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818419749] [to:+19492981440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12813092881] [to:+12138063733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306317245] [to:+12138025369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138082107] [to:+14402526780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034220680] [to:+17248035565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702288066] [to:+13478961360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157270534] [to:+13477981686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14084729735] [to:+14804391895] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185884345] [to:+13479788009] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243499485] [to:+15209996955] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478231867] [to:+16474950652] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174981791] [to:+17185048826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149351342] [to:+12174889157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-11 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:55 ip-10-0-0-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512427463] [to:+15164724358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:55 ip-10-0-64-10 mdr: 2016-02-01 11:50:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:15303531067] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904245] [to:12035109984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697071] [to:12398495013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593988275] [to:+17786533232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157296] [to:13309377271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652191] [to:16043025027] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863078766] [to:+13866283590] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173531778] [to:+13479068790] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126052103] [to:+14126940316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797514] [to:17409632692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815611] [to:19178802674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-20 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674824] [to:+447977665991] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19145890311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016872201] [to:+19177730005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863078766] [to:+13866283590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:19734627799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15209121326] [to:+17027476644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059101916] [to:12493597006] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937637] [to:19057452411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:56 ip-10-0-64-11 mdr: 2016-02-01 11:50:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137285802] [to:+12485375315] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:56 ip-10-0-0-11 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035872] [to:19543473100] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163424384] [to:+17162790890] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12317455378] [to:17029362430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15733553895] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149296718] [to:+18192011537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177663759] [to:+19789697202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024017344] [to:+12497001686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192716591] [to:+16474953939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313366796] [to:+12135874339] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14198066824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722091497] [to:+17726175320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048188314] [to:+14157879193] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332499] [to:19175419133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-11 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003230201] -Feb 1 11:50:57 ip-10-0-64-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735925022] [to:+15178615544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:57 ip-10-0-64-11 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131091] [to:18325375883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:57 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525735425] [to:+17279986799] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643089711] [to:+18649995392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475456858] [to:+13024395388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003230202] -Feb 1 11:50:58 ip-10-0-64-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413508155] [to:+19718886470] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027047728] [to:+12026609447] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15032690424] [to:+15034555489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899750827] [to:+16474952345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-10 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893151734] [to:+13065004249] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-11 mdr: 2016-02-01 11:50:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125255329] [to:17123261714] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324103038] [to:19562154554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:58 ip-10-0-0-10 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:58 ip-10-0-64-11 mdr: 2016-02-01 11:50:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027003788] [to:19025793898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-20 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B00501] -Feb 1 11:50:59 ip-10-0-64-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-10 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783367] [to:12294121612] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-10 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-10 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-10 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-10 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174077188] [to:+16465138982] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:50:59 ip-10-0-0-11 mdr: 2016-02-01 11:50:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088486143] [to:+15094360143] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:50:59 ip-10-0-64-11 mdr: 2016-02-01 11:50:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033741] [to:17243324715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-20 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-21 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138227215] [to:17069368951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083378] [to:12019259552] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:00 ip-10-0-0-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108095698] [to:+12674862816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568461] [to:16476872120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857347] [to:12404215972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476666411] [to:+12017658838] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308832974] [to:+14402528569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-11 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:00 ip-10-0-64-10 mdr: 2016-02-01 11:51:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695484787] [to:+12149359761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147729541] [to:+12167990875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065353238] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16054997319] [to:16054308881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-21 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451203365] [to:+447502732995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140913] [to:12155892845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232818] [to:13174413436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063336782] [to:+12136349861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123988129] [to:+12138739798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088543] [to:15203385110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065692] [to:18137651761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:01 ip-10-0-0-10 mdr: 2016-02-01 11:51:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:01 ip-10-0-64-11 mdr: 2016-02-01 11:51:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:19172019130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703095970] [to:+13055017173] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450974] [to:15023863279] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216454] [to:15702294341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19057836587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609878] [to:12403551050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568671] [to:17275036839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18054203120] [to:17742722019] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14056213109] [to:14055410342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198651810] [to:+17607909089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697735926] [to:+14692175769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16043436571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663155] [to:18659355855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691337] [to:12052337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18192011523] [to:15147754709] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:02 ip-10-0-64-11 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-11 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:02 ip-10-0-0-10 mdr: 2016-02-01 11:51:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813504] [to:16104137050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450385] [to:16034555717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398714] [to:14437903577] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398519696] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703000482] [to:+19175805168] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161817] [to:19193403885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059191249] [to:+17053026236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056259899] [to:+12485375572] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398519696] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195983755] [to:+18193075983] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627776886] [to:17152059823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659107] [to:13214431753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:03 ip-10-0-64-11 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295808] [to:13046950934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:03 ip-10-0-0-10 mdr: 2016-02-01 11:51:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921432] [to:18193142399] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17406180377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17406180377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945342] [to:14384984686] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208184539] [to:+15204336362] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063687] [to:18593961382] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:16175996264] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782469081] [to:+13025851874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998209] [to:14507509545] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184102486] [to:+12184163616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921432] [to:18193142399] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:17805473228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044389489] [to:+19047587437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184102486] [to:+12184163616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479649122] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-11 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15063892498] [to:+15068018672] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-11 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:19712838467] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:04 ip-10-0-0-20 mdr: 2016-02-01 11:51:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:FreeMsg] [to:+447520621641] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:04 ip-10-0-64-10 mdr: 2016-02-01 11:51:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874005854] [to:14037154101] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-21 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460772252] [to:+447520674780] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134535846] [to:+18572402049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045913246] [to:+14242866278] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795788] [to:17578121904] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:18327680364] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566527066] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132661760] [to:+16137014688] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097092146] [to:+14242797563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184102486] [to:+12184163616] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027195866] [to:+16474919796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306638098] [to:+13309358238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875964582] [to:+15874087651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407795258] [to:+13072758953] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-0-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800625] [to:12037272863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14432261219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-11 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:05 ip-10-0-64-10 mdr: 2016-02-01 11:51:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195048936] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329920685] [to:+18328044291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528543] [to:15132922729] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040490] [to:+13479806709] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:15097318556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476191415] [to:15185787976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045366433] [to:+16503008359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082047] [to:18135147443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-11 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198276823] [to:+19199166501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-11 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139320] [to:12564608491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429140] [to:16099225922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:06 ip-10-0-0-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:06 ip-10-0-64-10 mdr: 2016-02-01 11:51:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137783] [to:17578373158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195907] [to:17743605405] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454015838] [to:+18459407297] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921410] [to:17743280806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585194] [to:13046277378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:16462559604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137179] [to:12048693506] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16308158383] [to:+12242140370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15036478149] [to:15034373897] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153260473] [to:14155326599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12048514701] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577196066] [to:+18046242265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-10 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694270171] [to:+19725348017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-20 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-10 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-20 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B00502] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022460491] [to:+17344365368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:07 ip-10-0-64-11 mdr: 2016-02-01 11:51:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:07 ip-10-0-0-11 mdr: 2016-02-01 11:51:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746755] [to:13137287672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077795] [to:12406260828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136999333] [to:+18134301187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245100727] [to:+19199163549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15734187124] [to:+12136036726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072680909] [to:14797390418] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039580] [to:15064694207] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001972] [to:16475501848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044640515] [to:+13479788769] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284467337] [to:+12136300374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044887751] [to:+14049004131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-21 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447879287611] [to:+447451212614] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-11 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-11 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-64-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:08 ip-10-0-0-10 mdr: 2016-02-01 11:51:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188819851] [to:+15186155639] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288178227] [to:+18285486367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016762356] [to:+19142817045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641283] [to:12098086725] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018669] [to:12315778021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133432628] [to:+19783231790] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16505497238] [to:+15087884059] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-20 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751278097] [to:+447418336927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656025056] [to:+13477981430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524545096] [to:+16513337048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177086664] [to:14436940505] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058871773] [to:+12138024647] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169157669] [to:+16169524391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039548341] [to:+19786919063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816839911] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720795] [to:18438268323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784208033] [to:+12677939175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154621541] [to:+16157776304] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394180] [to:16023970270] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16627750133] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246995090] [to:+19193072847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157296] [to:13309377271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-11 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146924709] [to:+14388079688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-11 mdr: 2016-02-01 11:51:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:09 ip-10-0-64-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14378000547] [to:+17059998113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:09 ip-10-0-0-10 mdr: 2016-02-01 11:51:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12397281677] [to:+16514105350] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259473946] [to:+15154438605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876723] [to:12528839924] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621900] [to:17865368408] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506869406] [to:+14086182622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412688677] [to:+17074099309] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12695755267] [to:18705010853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188785364] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657484745] [to:+16513377109] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960176] [to:17198493328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125202212] [to:+13133494385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293328] [to:18502911817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477039973] [to:+16475039618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16166913020] [to:+12312663233] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12092519182] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308815887] [to:+13302370234] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-20 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451241071] [to:+447736670697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12177308001] [to:+18722251065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450614] [to:+13108792211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17812430301] [to:+17816548758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-10 mdr: 2016-02-01 11:51:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:10 ip-10-0-64-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864871942] [to:+13055017808] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:10 ip-10-0-0-11 mdr: 2016-02-01 11:51:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068225012] [to:+12065195896] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481416] [to:17249686501] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16206151716] [to:+17194266096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329449192] [to:+17813862243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410204] [to:13043985021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038518547] [to:+13475184673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004009] [to:14039260338] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19145522462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15036196136] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163213] [to:19194360897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17194395708] [to:+13032198039] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-21 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324660] [to:+447881781019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892608778] [to:+12894600950] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:11 ip-10-0-64-10 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223583] [to:13154890500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:11 ip-10-0-0-11 mdr: 2016-02-01 11:51:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-20 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003B00503] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402137603] [to:+14402526318] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965132] [to:12139440733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522103124] [to:+13867428657] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15173488088] [to:+15172586952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473528974] [to:+17325274792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772696] [to:18329517266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204802] [to:+13134688647] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317985734] [to:+12313778044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864330312] [to:+13866018220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473164593] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-0-11 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319251] [to:+15852825057] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:12 ip-10-0-64-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187519416] [to:18439747892] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14785017825] [to:+14789745097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475568461] [to:16476872120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693314265] [to:+15169260635] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147957710] [to:+19175809117] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693298159] [to:+12692244394] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-20 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017204912] [to:+19142670129] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-20 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-11 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086540] [to:19012885827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-11 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:13 ip-10-0-64-10 mdr: 2016-02-01 11:51:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-21 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447853378335] [to:+447418328642] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:13 ip-10-0-0-10 mdr: 2016-02-01 11:51:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960548] [to:17192857743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817739286] [to:+18326509659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17173818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18145479183] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572244363] [to:+13216137381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573725737] [to:+17572969809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455422193] [to:+18452627612] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294121612] [to:+12134783367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524404155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:17075403276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065692] [to:18137651761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992135] [to:13099122833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312663364] [to:12313503992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968604] [to:12318860013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016872201] [to:+19177730005] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-11 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:14 ip-10-0-0-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:14 ip-10-0-64-10 mdr: 2016-02-01 11:51:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479748962] [to:17654917555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702481241] [to:17067660016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025469608] [to:+16233839291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793135202] [to:+13476303817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319688] [to:16164262442] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146633572] [to:+14388095185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042141366] [to:+17273332348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044282326] [to:+19047587834] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-21 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062598202] [to:+19027043651] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654159705] [to:+12138029747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-11 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543473100] [to:+13052035872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242007454] [to:+12243104326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-10 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736070] [to:17063154534] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525323333] [to:+19193072287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:15 ip-10-0-0-10 mdr: 2016-02-01 11:51:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:15 ip-10-0-64-11 mdr: 2016-02-01 11:51:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:19103090074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133002495] [to:+13133494384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898042508] [to:16472810986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889764] [to:17733291261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022992590] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064499554] [to:+15068039667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462071] [to:18482309359] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193345656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17209244020] [to:+14406587947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049124037] [to:+14153269786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-20 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328239] [to:+447596753307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15036196136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068225012] [to:+12065195896] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493108] [to:16788919017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798082] [to:17405179468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:16319237145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-10 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269778] [to:15107557356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:16 ip-10-0-64-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039902] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:16 ip-10-0-0-11 mdr: 2016-02-01 11:51:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222046] [to:18455420086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137640960] [to:+18193033347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315723861] [to:16314787780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16475224957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302316] [to:13048805031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025903474] [to:+13017710367] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526371238911] [to:+14804391083] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-21 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833253848] [to:+447451204948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B00504] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093495] [to:18035770363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095619] [to:12403510316] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:16039915990] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19493921638] [to:16063560839] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-10 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005327] [to:13346725709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-20 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:17 ip-10-0-64-11 mdr: 2016-02-01 11:51:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:17 ip-10-0-0-11 mdr: 2016-02-01 11:51:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760968] [to:12566069606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028301916] [to:+19027046182] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17032328547] [to:+17039516936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-21 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451220604] [to:+447769157436] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095398] [to:12267801551] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14044685411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572359854] [to:+12139927016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041863] [to:17406480005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044055534] [to:+19148988266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011233270026330] [to:+16025004565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891637] [to:+19175995918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624208708] [to:+14308087405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562190371] [to:+19893147434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-10 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:18 ip-10-0-64-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:18 ip-10-0-0-11 mdr: 2016-02-01 11:51:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603305] [to:18163590791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19193306119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:18635295264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547091594] [to:+13052037693] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588537] [to:14405676597] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19724835994] [to:18322662546] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144206] [to:19547083410] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148678] [to:12404317279] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632347777] [to:+18637347510] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-11 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-11 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903385] [to:18016873271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:19 ip-10-0-0-10 mdr: 2016-02-01 11:51:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697148] [to:19893956741] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:19 ip-10-0-64-10 mdr: 2016-02-01 11:51:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506617355] [to:+16784338237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532397267] [to:+12532657808] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393706] [to:12164696476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148246324] [to:+14388072408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248307] [to:19173622208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387651628] [to:+14387953928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804307406] [to:+16025004499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182138404] [to:+16463496485] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691583] [to:14172049145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927281] [to:14388378076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538685] [to:19194640884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675364614] [to:+17073009568] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942869] [to:16473866943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805419] [to:13155165632] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15745270188] [to:+15744850726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633279192] [to:+18637347520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-11 mdr: 2016-02-01 11:51:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13013294080] [to:12027132539] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:16099549088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404653] [to:13362548875] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:20 ip-10-0-64-10 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:20 ip-10-0-0-11 mdr: 2016-02-01 11:51:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347229744] [to:+12133773301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465136949] [to:18142736042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060783] [to:19567445242] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137480996] [to:+18133201086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147260115] [to:+14387945660] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199790] [to:17013013331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:14389945788] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853410701] [to:+16513184185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611268] [to:12693135905] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619587] [to:12072128655] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18585199790] [to:17013013331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923817] [to:15145669101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-11 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-11 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14046410553] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:21 ip-10-0-64-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:15702058402] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:21 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036034126] [to:+19038485585] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13617040359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:16039915990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293936183] [to:+16466288918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-20 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329388781] [to:+18328042951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677215893] [to:+12674377387] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393831] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-21 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412081635] [to:+18477561652] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740779] [to:14234809487] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-10 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474942869] [to:16473866943] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049080529] [to:+14844893346] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164166] [to:19194371187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-10 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:22 ip-10-0-64-11 mdr: 2016-02-01 11:51:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:22 ip-10-0-0-11 mdr: 2016-02-01 11:51:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149965651] [to:16148176578] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084085] [to:14234948978] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788098814] [to:+17784026969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12092519182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672058365] [to:+15413257888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315247259] [to:+16317705283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406213504] [to:+14706733490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627257] [to:13474187284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019684] [to:18703290803] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897681651] [to:19053487201] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706300068] [to:+13479067600] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003210201] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500038C0201] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333738] [to:19898178966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063629131] [to:+13477981382] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702031963] [to:+17702004930] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257764294] [to:+14156491908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:23 ip-10-0-0-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:13479946687] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:23 ip-10-0-64-11 mdr: 2016-02-01 11:51:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767336495] [to:+13369382388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500038C0202] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191111] [to:12629896110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398883501] [to:+16465138363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988998] [to:18042522727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195983755] [to:+18193075983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499552] [to:15132926605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475498377] [to:+16465641184] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:17049303003] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-10 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13253156712] [to:+14698740327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-20 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674924] [to:+447539354207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309377271] [to:+13309157296] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17206867545] [to:+15104555265] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-11 mdr: 2016-02-01 11:51:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991491] [to:14439831344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:24 ip-10-0-64-10 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:24 ip-10-0-0-11 mdr: 2016-02-01 11:51:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705992771] [to:+16156146891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436163482] [to:+18038519931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-20 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462519176] [to:+16467380831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-20 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003940301] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409632692] [to:+17408797514] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706300068] [to:+13479067600] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003210202] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874758] [to:13046691521] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293030] [to:13864667174] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040474] [to:+13369381231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142812951] [to:12027040900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305646923] [to:+16466329620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046768712] [to:+12132958123] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267984008] [to:15197549511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13194099788] [to:14845418888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432836] [to:16417581864] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305000] [to:12014860131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-0-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-11 mdr: 2016-02-01 11:51:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108123587] [to:+15174920449] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:25 ip-10-0-64-10 mdr: 2016-02-01 11:51:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627257] [to:13474187284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:12297983187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138590] [to:14017494795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092844] [to:13362578844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086110] [to:15146274232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730238] [to:17067414811] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144282224] [to:+13473898083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206231879] [to:16156804487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:14058196170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132082991] [to:+13477147484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197712975] [to:+14198777887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139578555] [to:+12132953721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018048198] [to:+12026090142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027178140] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-11 mdr: 2016-02-01 11:51:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:26 ip-10-0-0-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638082631] [to:+18638552176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:26 ip-10-0-64-10 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860698] [to:12679829985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269273669] [to:+16474963727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073456051] [to:+13478683020] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148146571] [to:18175663604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863076177] [to:+13866016452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601056] [to:19059231717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:12407720666] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134793] [to:12045583312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673220879] [to:+13479194059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:16289994874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-10 mdr: 2016-02-01 11:51:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-10 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:27 ip-10-0-0-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372728999] [to:+12139298337] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:27 ip-10-0-64-11 mdr: 2016-02-01 11:51:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185761423] [to:+15817018076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197083649] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13863154793] [to:+14158534857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018579783] [to:16464066584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587437] [to:19044389489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405784377] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604499] [to:16089291961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282432619] [to:+18285486367] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155071890] [to:+19298418175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156577037] [to:18125829347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194371187] [to:+19199164166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:28 ip-10-0-64-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415733] [to:+19027058167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-10 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059319758] [to:+16474910229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:28 ip-10-0-0-11 mdr: 2016-02-01 11:51:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164324868] [to:+15189529445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455494661] [to:+18452627451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-21 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179803713] [to:+16178634332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853185] [to:15132545307] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638203] [to:18438601773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454913] [to:17014251414] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13607884611] [to:13609570782] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857971] [to:12022883996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134290940] [to:+15133860695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095619] [to:18708974786] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-10 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863277] [to:13474471799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764214] [to:12485062878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968739] [to:16787643389] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193030720] [to:16138165081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:29 ip-10-0-64-11 mdr: 2016-02-01 11:51:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044050215] [to:+19047587687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141403] [to:18198165438] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720579] [to:18432455570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:29 ip-10-0-0-11 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209895639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0119779841536935] [to:+15303623335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17209895639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19048883888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072197506] [to:+17256660838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193868649] [to:+18192011501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14696470595] [to:+18175922852] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025050] [to:16783344270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366080062] [to:+13364500601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16133048546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236465] [to:15612946678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612327] [to:+14197459599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897211] [to:16052120179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179867] [to:12403551682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146346] [to:17654376662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-11 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-21 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520607931] [to:+447792166739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132662] [to:15143288838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:30 ip-10-0-64-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-20 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:30 ip-10-0-0-10 mdr: 2016-02-01 11:51:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152179465] [to:+18456220981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179654584] [to:+15165977849] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743055170] [to:+17749921556] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578970] [to:17654997871] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103357067] [to:12704991606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103357067] [to:12704991606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-10 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17047277742] [to:19802428566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:31 ip-10-0-64-11 mdr: 2016-02-01 11:51:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:31 ip-10-0-0-11 mdr: 2016-02-01 11:51:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025406] [to:12562250206] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17325328481] [to:+17324360512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257764294] [to:+14156491908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042437910] [to:12506137138] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784020219] [to:12508097595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191111] [to:12629308417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749278] [to:19104097991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185117] [to:13477604963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-21 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436167956] [to:+13479198525] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228952] [to:12034486036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-20 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663455] [to:16154560349] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000397] [to:13065277059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-10 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839353] [to:16628081970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:32 ip-10-0-64-11 mdr: 2016-02-01 11:51:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:32 ip-10-0-0-10 mdr: 2016-02-01 11:51:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293030] [to:13864667174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17087128267] [to:+17792039386] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068008649] [to:+15068039662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342147708] [to:+13309157184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941731] [to:14238396625] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19739539350] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:19053213034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038968] [to:12898398888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542208432] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082527102] [to:+13867425700] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] http://s.groupme.com/Obew4Rq] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432760749] [to:+13867423977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674758090] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740779] [to:14234809487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17075403276] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627257] [to:13474187284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:33 ip-10-0-0-10 mdr: 2016-02-01 11:51:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:33 ip-10-0-64-11 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039856748] [to:+12148149968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812311139] [to:+14157876796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282085430] [to:+17605896518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12015091513] [to:+18477969189] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:17153233466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473810534] [to:+16475568925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13303567705] [to:13304419770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13858870240] [to:16016655589] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-21 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204589] [to:13174296818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739511065] [to:+19086597109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173818636] [to:+13479376158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024196774] [to:+13024001273] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025442922] [to:+18133204740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19374501145] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-10 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:34 ip-10-0-64-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:34 ip-10-0-0-11 mdr: 2016-02-01 11:51:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476666411] [to:+12017658838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+13853361901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196416348] [to:+19199162332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17016454650] [to:14064781798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065965] [to:12706356710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365005043] [to:+13369381825] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-20 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447792023874] [to:+447520605185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16102008884] [to:18635292655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14755590949] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640470] [to:13046513282] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242847138] [to:18182338847] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337335] [to:12602249673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445839] [to:15052061946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162792426] [to:17163486643] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318030246] [to:+15175691410] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035196556] [to:+19038652094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108527028] [to:18105600031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:35 ip-10-0-0-11 mdr: 2016-02-01 11:51:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825000287] [to:+19725347621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-11 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:35 ip-10-0-64-10 mdr: 2016-02-01 11:51:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17318030246] [to:+15175691410] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725374] [to:12482540122] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168958] [to:15088276351] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899773] [to:18605083196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176838251] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019480074] [to:12253023844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559394] [to:19107891034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242007454] [to:+12243104326] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053738010] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305219] [to:16362956745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:19514457670] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13058126642] [to:+19546412717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122905873] [to:+17472339012] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659642321] [to:+18653473492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148244] [to:+17277053272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808598186] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:36 ip-10-0-64-11 mdr: 2016-02-01 11:51:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:36 ip-10-0-0-10 mdr: 2016-02-01 11:51:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067026] [to:14025703924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019118] [to:17097648050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742268433] [to:+15745667786] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126678] [to:18563009043] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498786986] [to:+17053003686] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694270171] [to:+19725348017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125194878] [to:+14126940837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587167] [to:19042481295] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302839] [to:14128774139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796261] [to:17405015949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387923817] [to:15145669101] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-21 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-11 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-0-11 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12408080984] [to:+12405732003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195510063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:37 ip-10-0-64-10 mdr: 2016-02-01 11:51:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878597] [to:13373047945] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029730] [to:15068711516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434046388] [to:+12406857829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15153205728] [to:+15156087738] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078309369] [to:+17607014401] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056718020] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406375060] [to:+17402017104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15049408248] [to:+17728004748] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498786986] [to:+17053003686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389945788] [to:+14506390028] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267792991] [to:19196340341] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035098602] [to:+16034132364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066262196] [to:+15068036657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786415861] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:38 ip-10-0-0-10 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:38 ip-10-0-64-11 mdr: 2016-02-01 11:51:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243824213] [to:+17865030636] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003525] [to:13098684822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072027409] [to:+15072626798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+15129526640] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-21 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451221447] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403520699] [to:+19529778934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19545489269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319331064] [to:+15817003178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-20 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-20 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432618144] [to:+447451221496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139570875] [to:+18133202513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-10 mdr: 2016-02-01 11:51:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+15129526640] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:39 ip-10-0-64-10 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:39 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889883] [to:18125641255] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365368] [to:12022460491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025050] [to:19195915804] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364735695] [to:+13366450593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+15129526640] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360512] [to:17325328481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024161845] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16098059665] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064610694] [to:+14703334217] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506013715] [to:+14502329947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-11 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388885420] [to:+15146136862] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074002043] [to:+17184812635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:40 ip-10-0-0-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097682] [to:17042396251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-11 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067994572] [to:+16026384151] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:40 ip-10-0-64-10 mdr: 2016-02-01 11:51:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043958] [to:14133167768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404317279] [to:+13477148678] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993335] [to:16475758689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328853247] [to:+18326501160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496485] [to:17182138404] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016873271] [to:+18018903385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103090074] [to:+19199164949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035976588] [to:+17747288411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-20 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674063] [to:+447502997487] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-20 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674063] [to:+447502997487] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14356309679] [to:+14357764128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127583377] [to:+17248033790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16317802443] [to:+16316141242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049010201] [to:+12678676987] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:41 ip-10-0-0-11 mdr: 2016-02-01 11:51:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-10 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946811] [to:12899195486] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:41 ip-10-0-64-11 mdr: 2016-02-01 11:51:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-10 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925814] [to:15146165355] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743472] [to:16789015405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325971084] [to:+18328045121] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183351715] [to:+18722134307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736012] [to:12673449362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-10 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-10 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045317039] [to:+15103135957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-21 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:17322999346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774507] [to:17322999346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-21 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447910826775] [to:+447520622877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:42 ip-10-0-0-11 mdr: 2016-02-01 11:51:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479199337] [to:18563009290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:42 ip-10-0-64-11 mdr: 2016-02-01 11:51:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213317808] [to:+13219998105] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413108] [to:17133450817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789549] [to:19736703560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491815] [to:17138255109] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162187703] [to:15166397120] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479748962] [to:17654917555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548511] [to:19076391033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708051794] [to:+12136348267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-64-10 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064993061] [to:+16367306333] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:43 ip-10-0-0-11 mdr: 2016-02-01 11:51:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023395192] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147308] [to:16157799942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:17868775200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868552000] [to:+13866015496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733490] [to:15406213504] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693325717] [to:12699086883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189529445] [to:17164324868] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014521] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316730] [to:18137587998] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194620411] [to:+18193033842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-21 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049616814] [to:+13475188704] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14345345484] [to:+13477149040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155620874] [to:16153741171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005327] [to:13346725709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045192] [to:19022771423] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:44 ip-10-0-0-10 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028399980] [to:+13475804812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:44 ip-10-0-64-11 mdr: 2016-02-01 11:51:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434629520] [to:+14243361150] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] I'm driving right now - I'll get back to you later.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263785051] [to:+12897683470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068019772] [to:15062601454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640470] [to:13046446196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064918] [to:19183140587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-10 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361810] [to:15012890125] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-11 mdr: 2016-02-01 11:51:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405389082] [to:+15102542440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039450] [to:15064259250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132277] [to:18173534994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253174327] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-64-11 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17348214640] [to:17344974664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813008] [to:14109636666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:45 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222410] [to:13154071346] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388086110] [to:15142466597] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065089580] [to:+16788164617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137025421] [to:16136687240] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-21 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447879551703] [to:+447451220294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12266008851] [to:+12264550320] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884760] [to:14439832454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036251822] [to:+12676076273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048805031] [to:+18134302316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-21 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702058402] [to:+15703977768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322161672] [to:+17328842605] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:19194806784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069909126] [to:+14706734234] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427797] [to:19165723173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-11 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-11 mdr: 2016-02-01 11:51:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:46 ip-10-0-64-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:46 ip-10-0-0-10 mdr: 2016-02-01 11:51:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13869169676] [to:+13866016659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17047277742] [to:18038045127] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853410701] [to:+16513184185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889883] [to:18125641255] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152059823] [to:+12627776886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164006425] [to:+17162792564] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179074507] [to:+15102549708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274792] [to:13473528974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198569941] [to:+18193035404] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532446324] [to:+12536422076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049811942] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302351677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-11 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-11 mdr: 2016-02-01 11:51:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122702774] [to:+19142060942] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:47 ip-10-0-0-21 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:47 ip-10-0-64-10 mdr: 2016-02-01 11:51:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14325993949] [to:+14697286076] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188819851] [to:+15186155639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186711405] [to:+19802092507] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833572] [to:19783640164] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065502515] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622603709] [to:+12139356629] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129151526] [to:+14159687870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864871942] [to:+13055017808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-0-11 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144747205] [to:+18458181056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17164006425] [to:+17162792564] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708051794] [to:+12136348267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:48 ip-10-0-64-10 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203354] [to:18136249272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-20 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414511147] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164949] [to:19103090074] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332499] [to:18135278417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077473325] [to:+13608498815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215440997] [to:+14025002603] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864136809] [to:+15204336271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406480005] [to:+14062041863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-20 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674899] [to:+447947918803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614980] [to:17086737601] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007629] [to:18089540211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:12146214559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363012603] [to:+13364500956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787698846] [to:+16784123990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-21 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16814434773] [to:+19703156519] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044957558] [to:+19802092133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408610399] [to:+17409102044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664206] [to:17722607734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-10 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17746138590] [to:14015561001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316730] [to:18137587998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:49 ip-10-0-0-20 mdr: 2016-02-01 11:51:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:49 ip-10-0-64-11 mdr: 2016-02-01 11:51:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215440997] [to:+14025002603] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388071706] [to:14507743019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:16473621227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-11 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122934453] [to:+17248032326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-10 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705283] [to:16315247259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:50 ip-10-0-64-10 mdr: 2016-02-01 11:51:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16122853982] [to:+15612319247] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:50 ip-10-0-0-11 mdr: 2016-02-01 11:51:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:16307461282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19087598234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059146415] [to:+12262437221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522726] [to:+12693366072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265499396] [to:+16265085423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-20 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14077581565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18288178227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794222] [to:19393347864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485062878] [to:+14357764214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-10 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092421325] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:51 ip-10-0-0-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525735425] [to:+17279986799] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:51 ip-10-0-64-11 mdr: 2016-02-01 11:51:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076221] [to:14792228543] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036879226] [to:+12092641527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186711405] [to:+19802092507] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046277378] [to:+15172585194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12085157848] [to:12089967473] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17639134213] [to:+16124448067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:16198905520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893956741] [to:+19895697148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108342949] [to:13023446056] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042928] [to:17133840582] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17652447262] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473873793] [to:+16198245816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153239677] [to:+14132715989] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-10 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500601] [to:13366080062] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:52 ip-10-0-0-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:52 ip-10-0-64-11 mdr: 2016-02-01 11:51:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059286980] [to:+12262411715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380831] [to:16462519176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025908626] [to:+18456220721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645487] [to:15617552720] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088276351] [to:+15084168958] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342312551] [to:15402870911] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586267] [to:15177486036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046182] [to:19028301916] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528143835] [to:+13479977996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109101010] [to:18329492570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174921010] [to:15097318556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:53 ip-10-0-0-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12154327143] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544758] [to:17063500154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479542804] [to:13309077781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175534129] [to:+16178634602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-10 mdr: 2016-02-01 11:51:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743280806] [to:+17749921410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:53 ip-10-0-64-11 mdr: 2016-02-01 11:51:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-20 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447858370549] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612875897] [to:14073049723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18567230339] [to:+18563182089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476903930] [to:13475459218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743987440] [to:+17604745441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096511732] [to:50371350753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-10 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342059357] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-21 mdr: 2016-02-01 11:51:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-64-11 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888259] [to:19103740759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:54 ip-10-0-0-10 mdr: 2016-02-01 11:51:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473492] [to:18659642321] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039516936] [to:17032328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582025050] [to:17248884766] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035348] [to:17406457273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197016437] [to:+12262716596] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17068471769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15203718626] [to:+16025721947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036193309] [to:+19035277046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138469184] [to:+15137259178] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242007454] [to:+12243104326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048821934] [to:+14703334110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632457952] [to:+18638557497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128019841] [to:+12136946367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793135202] [to:+13476303817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197710416] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876387] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12252288950] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16074237706] [to:+19172834428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453840272] [to:+18456220183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447714644096] [to:+15082711154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184739207] [to:+18188536414] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16099225922] [to:+18569429140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13035787865] [to:+16784338237] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046277378] [to:+15172585194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244256730] [to:+12134789283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042924739] [to:+18046244510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202034196] [to:+17205907473] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042812343] [to:+14157879260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572474411] [to:+18573001602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232158220] [to:+15612408365] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499552] [to:15132926605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019184921] [to:18629007669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16072715570] [to:+14243365391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:55 ip-10-0-0-10 mdr: 2016-02-01 11:51:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:55 ip-10-0-64-11 mdr: 2016-02-01 11:51:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043410865] [to:17066646251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694140955] [to:+12182031197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473730424] [to:+17185675113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045356702] [to:+19046947606] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432261219] [to:+14436813008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045390082] [to:+13475087081] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13059343930] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519931] [to:18436163482] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-21 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042162] [to:16315765187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066395398] [to:+15068031164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853700366] [to:+12677669363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157779175] [to:16154148860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064499554] [to:+15068039667] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:56 ip-10-0-64-11 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:56 ip-10-0-0-10 mdr: 2016-02-01 11:51:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087186170] [to:+19083897047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478980929] [to:+19172592328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138857705] [to:+16137014696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562154554] [to:+18324103038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12762378196] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020093] [to:13155696832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892701540] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016001728] [to:+19172751271] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370644] [to:12162027440] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796261] [to:13306005548] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199163054] [to:19195250504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566069606] [to:+12135760968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018393] [to:19016539906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167779982] [to:+12167776619] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16106999834] [to:16103100675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18452004834] [to:+18459407229] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17874641141] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092026782] [to:+18563125100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:57 ip-10-0-64-10 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109774735] [to:+19788209280] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:57 ip-10-0-0-11 mdr: 2016-02-01 11:51:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-21 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157296] [to:13309377271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523154104] [to:+19193072246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228308] [to:19189780798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-21 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233981] [to:+447940715468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605433625] [to:17603937462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804289] [to:15737215886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193086173] [to:+19196516158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706356710] [to:+12138065965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466876505] [to:16466696824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-20 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:14699521483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-11 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:58 ip-10-0-64-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:58 ip-10-0-0-10 mdr: 2016-02-01 11:51:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249938983] [to:17244481278] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158432012] [to:19312529796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064549440] [to:+12062588126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004867] [to:17802398503] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15612218858] [to:+15612404551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012689667] [to:+12405732298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347613] [to:13344245535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067026] [to:14025703924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17036251822] [to:+12676076273] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18635955208] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377110] [to:12342285889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005075] [to:16788569702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15795003083] [to:14388620679] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15795003083] [to:14388620679] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606025230] [to:+12604077536] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-21 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561038] [to:19365492006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703000482] [to:+19175805168] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:51:59 ip-10-0-0-11 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:51:59 ip-10-0-64-10 mdr: 2016-02-01 11:51:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19514424912] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498305] [to:15088344846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804307406] [to:+16025004499] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342054] [to:14235350420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056862016] [to:+19286605465] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146165355] [to:+14387925814] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:16129631215] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182138404] [to:+16463496485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474910479] [to:16476319416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063861605] [to:+18653473237] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364715] [to:+13219993650] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:00 ip-10-0-64-10 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896162] [to:14079256230] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-21 mdr: 2016-02-01 11:52:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336001] [to:+447743466006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:00 ip-10-0-0-10 mdr: 2016-02-01 11:52:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178182104] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079688] [to:15146924709] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681925] [to:15162443109] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:14179883942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156308976] [to:+19148812959] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144647] [to:13027278086] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002485] [to:14049315032] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535381] [to:17732207153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033341564] [to:+18039784501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609447] [to:12027047728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056905093] [to:+17053021583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473621227] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035968675] [to:+15873154569] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302146] [to:14122953105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-10 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-11 mdr: 2016-02-01 11:52:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085109352] [to:+19175995418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:01 ip-10-0-0-20 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338054] [to:+447415734517] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:01 ip-10-0-64-11 mdr: 2016-02-01 11:52:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298413108] [to:17133450817] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925993] [to:14388691738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403466209] [to:+15672057169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703006437] [to:19706312744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-21 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329641] [to:+447599835354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523154104] [to:+19193072246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592370] [to:17177062536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-20 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107417] [to:13522236098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122690252] [to:+19122005903] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-10 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033097] [to:17244668593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-10 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482023480] [to:+15672057136] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:02 ip-10-0-64-11 mdr: 2016-02-01 11:52:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:02 ip-10-0-0-11 mdr: 2016-02-01 11:52:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064259250] [to:+15068039450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122690252] [to:+19122005903] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-20 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033341564] [to:+18039784501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985467] [to:13056137113] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16148965015] [to:14192103248] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777057] [to:14194900705] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179275904] [to:+15172527017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219269322] [to:13215360473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-11 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19529778934] [to:17403520699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465648320] [to:12038183618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:03 ip-10-0-64-10 mdr: 2016-02-01 11:52:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493302] [to:15303395054] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:03 ip-10-0-0-11 mdr: 2016-02-01 11:52:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233312589] [to:+18649997404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038369245] [to:+15873232679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109486192] [to:12709450635] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142736042] [to:+16465136949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038756519] [to:+16137014521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-11 mdr: 2016-02-01 11:52:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312188586] [to:12055451319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:04 ip-10-0-64-10 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:04 ip-10-0-0-11 mdr: 2016-02-01 11:52:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196312662] [to:+19199161857] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045583312] [to:+12048134793] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316454912] [to:+12313318320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193403885] [to:+19199161817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788478782] [to:+16042594637] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079496314] [to:+15617665043] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047555911] [to:+19046946904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033238743] [to:+18438720441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524404155] [to:+13477737992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086751296] [to:+18046245816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16268485236] [to:+19285992636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092026782] [to:+18563125100] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860189] [to:16505348105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955878] [to:17866410456] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476857] [to:19313022610] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173663773] [to:+16576668078] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:05 ip-10-0-0-10 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249686501] [to:+19705481416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:05 ip-10-0-64-11 mdr: 2016-02-01 11:52:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800164] [to:13169900153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451242884] [to:+447794092992] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550320] [to:12266008851] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347552346] [to:+17274937161] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039516936] [to:17032328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067044] [to:16015750905] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626003745] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062078497] [to:+16784968544] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102548464] [to:15103592199] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12184163597] [to:13182770612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:15702058402] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:16064075331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148880520] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063560839] [to:+19493921638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166397120] [to:+15162187703] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743340945] [to:+19142671738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882116] [to:15307365874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699449176] [to:+12695755099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-21 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-10 mdr: 2016-02-01 11:52:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067414811] [to:+14706730238] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:06 ip-10-0-0-10 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:06 ip-10-0-64-11 mdr: 2016-02-01 11:52:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807746] [to:16067483848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003030202] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327502] [to:12605737629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12257764294] [to:+14156491908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326871014] [to:+15713929729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029016844] [to:17024718154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049225333] [to:+13024002136] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587461] [to:14406547192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096564857] [to:+14096833679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-20 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143365309] [to:+14144005707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767406] [to:17346931009] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069801700] [to:+14693537435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:16198905520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-11 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:07 ip-10-0-0-10 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093565332] [to:+15103405431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-10 mdr: 2016-02-01 11:52:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:07 ip-10-0-64-11 mdr: 2016-02-01 11:52:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218242] [to:+16465037603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958467] [to:13109138690] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822851] [to:15852782291] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659887] [to:13098835595] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479823269] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048201] [to:12095415037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:17184165222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202548038] [to:+17205028352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19047555911] [to:+19046946904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039217074] [to:+13475076339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:17054444210] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18635955208] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16479649122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:13108016025] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13239877288] [to:+13853361901] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:08 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025511153] [to:+14153405424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:08 ip-10-0-64-11 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782795084] [to:+13473436992] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874095846] [to:+16474992191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634269] [to:13854951014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824814] [to:18628885963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18178184909] [to:12546628841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19024031522] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12072296429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740229] [to:15049080575] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048780677] [to:+18046246117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038341190] [to:+13479789882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193078289] [to:18193345656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-10 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214884] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:09 ip-10-0-0-10 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126564669] [to:+14158532272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:09 ip-10-0-64-11 mdr: 2016-02-01 11:52:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076249071] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-21 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447512808184] [to:+447451215609] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043493500] [to:+19046947229] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022402201] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-21 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18506617355] [to:+18506313805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613459173] [to:+15612910569] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029744957] [to:+15022083472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17799990452] [to:18725881369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136165484] [to:14792257462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18656046939] [to:+13477974688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003250201] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126678] [to:18563009043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997866] [to:18153864981] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995392] [to:18643089711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407142] [to:18432243211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193796790] [to:+13479788089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-10 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612875897] [to:14073049723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482540122] [to:+18107725374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:10 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860695] [to:15134290940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-10 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:10 ip-10-0-64-11 mdr: 2016-02-01 11:52:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768508] [to:15044955572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169717475] [to:+12166499708] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079946] [to:17863285098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193401843] [to:+17344365372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522416563] [to:+18133208003] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:18622356222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003250202] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524262] [to:16164196971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162332] [to:19196416348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312122134] [to:+19018426117] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086979012] [to:+12627774695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506396870] [to:14182416566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973305] [to:17178109402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177082735] [to:+15852822188] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557827] [to:17724185045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808598186] [to:+16025721217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392588028] [to:+19142816889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023944721] [to:+12262414235] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-11 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059231717] [to:+12894601056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927647] [to:14073462120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478999339] [to:15416619185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734021] [to:17069382656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070698] [to:12603667671] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-10 mdr: 2016-02-01 11:52:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:11 ip-10-0-0-20 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:11 ip-10-0-64-10 mdr: 2016-02-01 11:52:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164463284] [to:+16163266402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12018579783] [to:13472902129] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:16099638051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:14046679918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289576] [to:14037414913] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004806] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474198258] [to:+19142671509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062619284] [to:+14242768750] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478804359] [to:+17185040564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-20 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451204224] [to:+447954099423] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:13018048198] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059146415] [to:+12262437221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606286222] [to:+14422207633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889883] [to:18125641255] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:12 ip-10-0-64-10 mdr: 2016-02-01 11:52:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053021583] [to:17056905093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:12 ip-10-0-0-10 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785656383] [to:+12132952449] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266422] [to:17189304183] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162451258] [to:+15873232525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-20 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405091] [to:13867959387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-20 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053574822] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405063919] [to:+16149964034] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705283] [to:16315247259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244108] [to:18043076781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370606] [to:5524988268395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413165627] [to:13194838421] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175905] [to:13057487877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:13 ip-10-0-0-10 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504055550] [to:+13053400809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939212] [to:12675931697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-10 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:13 ip-10-0-64-11 mdr: 2016-02-01 11:52:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130225] [to:18572588553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174726139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578280744] [to:+19148812082] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192775562] [to:+14199304531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567039329] [to:+12816034992] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298201] [to:12396451044] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473626251] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528569] [to:13308832974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-11 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892190] [to:19375469953] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898178966] [to:+16784333738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-20 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492164] [to:18632299053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:14 ip-10-0-64-10 mdr: 2016-02-01 11:52:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407297] [to:18454015838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:14 ip-10-0-0-11 mdr: 2016-02-01 11:52:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12506137138] [to:+16042437910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017494795] [to:+17746138590] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014893] [to:14188026973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594234] [to:14406502489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388378076] [to:+14387927281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585194] [to:13046277378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168701644] [to:+19162908742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139226246] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107417920] [to:+16108804267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387922141] [to:15146777813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297455] [to:14232739356] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362640709] [to:+13369381156] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294621335] [to:+19177320395] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:15 ip-10-0-0-10 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072762946] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:15 ip-10-0-64-11 mdr: 2016-02-01 11:52:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177085796] [to:16014335977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434819] [to:17322411942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13098684822] [to:+18724003525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139507] [to:19032317348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995918] [to:16462891637] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:12893389946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699687] [to:15138070353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065502515] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12248569319] [to:+18477568451] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968426] [to:15026149266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-20 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064390] [to:17573769963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001799] [to:14803191592] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198669260] [to:+19199164945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-10 mdr: 2016-02-01 11:52:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343929901] [to:+12135295462] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697148] [to:19893956741] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-64-10 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349861] [to:17063336782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:16 ip-10-0-0-11 mdr: 2016-02-01 11:52:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207277898] [to:14802294469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154606910] [to:+13473438874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212084602] [to:+13219993117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033410477] [to:+14692051259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039667] [to:15064499554] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031133] [to:19286498343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347727286] [to:+17344366646] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326027681] [to:+12816436253] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084524] [to:17802069854] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067376] [to:13377186573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621737] [to:15409071974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775402] [to:13046199357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-11 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528760] [to:18102936576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-20 mdr: 2016-02-01 11:52:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-64-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:17 ip-10-0-0-10 mdr: 2016-02-01 11:52:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862152878] [to:+16463496281] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086622462] [to:+13479372396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17176838251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-21 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196293375] [to:17194227635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851926] [to:13023962358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593956] [to:15703570508] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-21 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-21 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13362544616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13039030308] [to:+14253697808] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:18 ip-10-0-64-10 mdr: 2016-02-01 11:52:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127468] [to:16314550159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:18 ip-10-0-0-11 mdr: 2016-02-01 11:52:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024989887] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14233642401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025175145] [to:+12243104899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614288713] [to:+19253269284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-20 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-20 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736504] [to:14132219821] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19045053305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673356211] [to:+17278602700] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559394] [to:19102318718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676076356] [to:12677771495] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654917555] [to:+13479748962] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126809382] [to:+12678444603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17622417233] [to:+12087574177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13183155929] [to:+15103404745] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:19 ip-10-0-0-11 mdr: 2016-02-01 11:52:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:19 ip-10-0-64-10 mdr: 2016-02-01 11:52:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797514] [to:17409632692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048313257] [to:+14043411399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873175089] [to:13065017124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139570875] [to:+18133202513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024001799] [to:13033247704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356768] [to:18163795147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177329462] [to:19172161003] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17312122134] [to:+17315744425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008987] [to:15405784377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083314687] [to:+13052037143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408600] [to:15615840086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752242379] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314329969] [to:+12135295777] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-10 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227470] [to:17406058986] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:20 ip-10-0-0-20 mdr: 2016-02-01 11:52:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:20 ip-10-0-64-11 mdr: 2016-02-01 11:52:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361704] [to:19122125395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361150] [to:14434629520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244668593] [to:+17248033097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033122704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339244] [to:15309574824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339244] [to:15309574824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339244] [to:15309574824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476137246] [to:+16463490951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156693511] [to:+13025955832] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566107311] [to:+17702005035] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627323] [to:17313946876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866896] [to:17572984403] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17207379653] [to:+15103131888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197294330] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853535522] [to:+15852821244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336485] [to:16513074296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485401] [to:18322894127] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128872510] [to:+13473436210] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406842] [to:19057469763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735126] [to:19122729815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184185] [to:17853410701] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001602] [to:18572474411] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-10 mdr: 2016-02-01 11:52:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:21 ip-10-0-0-11 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:21 ip-10-0-64-10 mdr: 2016-02-01 11:52:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659869192] [to:17653980850] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14085023379] [to:+17162791211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194478245] [to:+17078974876] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402372684] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16066279815] [to:+13476304521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058406555] [to:+19172661320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195310488] [to:+12264559709] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343054127] [to:+13479801355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:15158299096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:16473621227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543380832] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991128] [to:13024193196] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048137179] [to:1204814119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175517] [to:18286781304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058186329] [to:+12262411617] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-11 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865749] [to:+14696293934] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:22 ip-10-0-0-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997853] [to:14237233747] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406457273] [to:+17248035348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784710455] [to:+18649995532] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049266565] [to:+14242837864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921410] [to:17743280806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144206] [to:19547083410] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749164] [to:18564730464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557827] [to:17724185045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801749701527] [to:+19018422553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134546713] [to:+18133203345] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-20 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238369] [to:+447590203521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374281304] [to:+12698838159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436531995] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328022971] [to:12102372221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856985865] [to:+15852823735] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577491602] [to:+13477148564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387925814] [to:15146165355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784710455] [to:+18649995532] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407169984] [to:+12404084762] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-20 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208386602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-20 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447468486323] [to:+447418325133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149989955] [to:+15146134241] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17208386602] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408600] [to:15615840086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699938528] [to:+12696356093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-11 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137759] [to:17166387161] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:23 ip-10-0-64-10 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-11 mdr: 2016-02-01 11:52:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:23 ip-10-0-0-10 mdr: 2016-02-01 11:52:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777128] [to:17323189895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14049369749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062695] [to:19022992590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301191] [to:14159025712] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053060702] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318320] [to:12316454912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418175] [to:13155071890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142793432] [to:15852054912] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577491602] [to:+13477148564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14126940316] [to:14126052103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324103038] [to:19562154554] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572588553] [to:+13479130225] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013313349] [to:+13017786256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13148998380] [to:13147954868] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-11 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:24 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300824] [to:16627052890] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-10 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435982039] [to:+19196504493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:24 ip-10-0-64-11 mdr: 2016-02-01 11:52:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072137532] [to:12293083646] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577491602] [to:+13477148564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003210201] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037418607] [to:+19802097415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-20 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997853] [to:14237233747] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085028158] [to:+15103402596] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043853] [to:16132071747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346725709] [to:+17702005327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:14237746597] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003210202] -Feb 1 11:52:25 ip-10-0-0-21 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-10 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790284] [to:17164891334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-10 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:25 ip-10-0-64-11 mdr: 2016-02-01 11:52:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:25 ip-10-0-0-11 mdr: 2016-02-01 11:52:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675744473] [to:+12677988893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084634847] [to:+13478023371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19034592263] [to:19037871897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288196] [to:18314029101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551830] [to:12017570940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178833599] [to:+18722258246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045997016] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18632296808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-20 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940925473] [to:+447418331182] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049237174] [to:+19802093652] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787049510] [to:+13477361611] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067017] [to:14798494364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868661] [to:13364596905] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:26 ip-10-0-64-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-10 mdr: 2016-02-01 11:52:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:26 ip-10-0-0-11 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478682670] [to:13479309090] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138430] [to:16036613946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702748076] [to:+16784348771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372677] [to:18283207677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13068502506] [to:+13065003915] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668359] [to:16066273039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023221] [to:14238836824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:16474592315] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:12504159006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874901] [to:17856390625] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165770429] [to:+16474913988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256412] [to:18633262894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602514470] [to:+12342517699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262128] [to:19737521939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:27 ip-10-0-64-11 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:27 ip-10-0-0-10 mdr: 2016-02-01 11:52:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232679] [to:14038369245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039983935] [to:+19282325226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466696824] [to:+16466876505] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604975952] [to:+14132736243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142067017] [to:14798494364] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032746] [to:17174914965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475019817] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206232348] [to:17602197139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308073] [to:14075564692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-21 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222173] [to:18455418365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035386814] [to:+13234984213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14347284753] [to:+19148486074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345969615] [to:+12135760580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15672399237] [to:+12135295802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044184] [to:18328837972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403551682] [to:+13019179867] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-20 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613459173] [to:+15612910569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817000859] [to:15819964011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406842] [to:19057469763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-0-21 mdr: 2016-02-01 11:52:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-10 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:28 ip-10-0-64-11 mdr: 2016-02-01 11:52:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172595150] [to:12074041401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028717] [to:12086080803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003450401] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147813110] [to:+18193073670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388620679] [to:+15795003083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065277059] [to:+13064000397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695341117] [to:+16163266475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039217074] [to:+13475076339] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505310159] [to:+15817005248] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673356211] [to:+17278602700] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043078615] [to:+19785334082] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:29 ip-10-0-64-10 mdr: 2016-02-01 11:52:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951313] [to:15813193817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:29 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784333738] [to:19898178966] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136448] [to:17656694732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927781] [to:19026806564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003450403] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635295264] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076204] [to:+18039784501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842605] [to:17322161672] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764928296] [to:+12135596753] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031522] [to:+19027021768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012439] [to:14184361024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966291] [to:12075776659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319572] [to:15615770433] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786332923] [to:+14706733294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18302826524] [to:18303557289] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222173] [to:18455418365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:30 ip-10-0-64-11 mdr: 2016-02-01 11:52:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:30 ip-10-0-0-10 mdr: 2016-02-01 11:52:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789882] [to:18038341190] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702058402] [to:+15703977768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003450404] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322161672] [to:+17328842605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009335] [to:19028402398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764128] [to:14356309679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19366413872] [to:+19148291617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096512703] [to:15093365177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946759] [to:19048023594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16138908838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977856] [to:15166337185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498305] [to:17745532797] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068144] [to:15025986819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634995457] [to:+15635622342] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138023221] [to:14238836824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-11 mdr: 2016-02-01 11:52:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745441] [to:15743987440] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:31 ip-10-0-0-11 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562250206] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:31 ip-10-0-64-10 mdr: 2016-02-01 11:52:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868286] [to:13164619779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022100037] [to:+19027062432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14017494795] [to:+17746138590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265231530] [to:+16269881512] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133732786] [to:+14242863361] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021620] [to:19025371991] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:15752242379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072137532] [to:12293083646] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072626798] [to:15072027409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17186631598] [to:+16466288578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165646746] [to:+19895334270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454898503] [to:+19177370408] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106108798] [to:+14437203362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526655329] [to:+12132954633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476673641] [to:18023738748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437140] [to:16134386397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505228920] [to:+14506390064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635896625] [to:+18638557943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13207610888] [to:+15632317298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611692] [to:18508008387] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17048994909] [to:17048391048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-11 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896496] [to:+14156493781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18189210907] [to:+19172835279] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408173923] [to:+17089612911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:32 ip-10-0-64-10 mdr: 2016-02-01 11:52:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505585613] [to:+14388086134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:32 ip-10-0-0-11 mdr: 2016-02-01 11:52:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709998205] [to:12708893056] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199373385] [to:+19715124018] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193086173] [to:+19196516158] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-21 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451237139] [to:+447946034230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471749] [to:18657052076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-21 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451237139] [to:+447946034230] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852782291] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157779779] [to:19316984118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479935] [to:19734091739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471819] [to:18659647707] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024415024] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-10 mdr: 2016-02-01 11:52:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194660121] [to:+12262409891] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:33 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295777] [to:17314329969] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:33 ip-10-0-0-10 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563125321] [to:18564187365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18312228929] [to:18034311064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977540] [to:15709834861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796414] [to:17405529452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149088543] [to:15202210285] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789341630] [to:+14156499716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125605080] [to:+13473899291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621846] [to:19036896021] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542232988] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137936189] [to:+16136041711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063725246] [to:+17028158463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-11 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039222621] [to:+19783619361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137689932] [to:+15087884625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:34 ip-10-0-0-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:34 ip-10-0-64-10 mdr: 2016-02-01 11:52:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715128189] [to:15033024214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789181801] [to:+16784338501] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125641255] [to:+13176889883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746243] [to:16095569243] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404461] [to:19892728565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002892] [to:17866124716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035153] [to:16133042041] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035153] [to:16133042041] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487227] [to:14237551807] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740528] [to:+16463492699] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-11 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142666688] [to:+16149964316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719938] [to:14436982306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:35 ip-10-0-0-10 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973459] [to:19739800782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:35 ip-10-0-64-11 mdr: 2016-02-01 11:52:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12173710401] [to:+18133316695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324079596] [to:+17325274690] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982412] [to:12034303933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436122] [to:12817438310] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085207301] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053446344] [to:+16139093010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042633606] [to:+13866015760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-10 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292323857] [to:+19715124018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329599] [to:19103746899] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029880079] [to:+16136047175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:36 ip-10-0-64-10 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075816] [to:18195881337] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:36 ip-10-0-0-11 mdr: 2016-02-01 11:52:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802802358] [to:+16233837745] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509383738] [to:+15103136328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073422588] [to:+15304882961] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233130169] [to:+12138610628] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747198] [to:18082258848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14708852301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660155] [to:12057374489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187173536] [to:+17279166446] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14344416606] [to:+13214062368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18027821603] [to:+13477691857] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764402] [to:18035076398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190404] [to:15186057694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:13475960450] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502320133] [to:15148339203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121798] [to:19712721884] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782172359] [to:14782449658] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204740] [to:15025442922] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173951387] [to:+16673083165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479410778] [to:+19177248013] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:37 ip-10-0-64-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-11 mdr: 2016-02-01 11:52:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:37 ip-10-0-0-10 mdr: 2016-02-01 11:52:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156068019] [to:+13477962486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223361] [to:13373229195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573290113] [to:+13479193417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479311252] [to:+16474933304] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779603] [to:13309624125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146257539] [to:+14388095324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12068613225] [to:+13392304719] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13316431562] [to:+13126145667] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138159707] [to:+13477981896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654917555] [to:+13479748962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294621737] [to:+18052537844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454898503] [to:+19177370408] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017262580] [to:+19738462544] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:38 ip-10-0-0-10 mdr: 2016-02-01 11:52:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-10 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:38 ip-10-0-64-11 mdr: 2016-02-01 11:52:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628884119] [to:19202905085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042945872] [to:+12048098341] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156215088] [to:+18724009509] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103408423] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435134857] [to:+17604746640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195510063] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046874864] [to:+18572645872] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569428980] [to:18165277306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15062327893] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15055150431] [to:15053061059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-21 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097634218] [to:+17097022779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179926677] [to:+16172132610] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-11 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194838421] [to:+16413165627] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004462] [to:14046219591] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-11 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700604] [to:19804777069] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:39 ip-10-0-0-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:39 ip-10-0-64-10 mdr: 2016-02-01 11:52:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:17874641141] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823735] [to:15856985865] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184694] [to:17188258505] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015750905] [to:+13214067044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806174500] [to:+15873233059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547594] [to:13187160320] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894449832] [to:+19894020045] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14239562070] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146777813] [to:+14387922141] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12065196309] [to:12532453335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022622554] [to:+12087574092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614189545] [to:+16614024481] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205996253] [to:17198213556] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17609179883] [to:+19718886196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141419] [to:18192303626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246519765] [to:+13478086076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657116] [to:12697188073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12069533567] [to:+12062585740] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043567] [to:19028040052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014522178] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473034887] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:40 ip-10-0-64-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613155] [to:17325150226] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-11 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474971889] [to:+12267794238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:40 ip-10-0-0-10 mdr: 2016-02-01 11:52:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13094336018] [to:+13093069720] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488540] [to:15412955595] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812774] [to:14432955673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:15158299096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138068069] [to:17172628754] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346481536] [to:+13134246179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B20301] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017262580] [to:+19738462544] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404316] [to:19375455814] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024857525] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566903190] [to:+19177370164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126052103] [to:+14126940316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158881442] [to:+17816548829] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556613] [to:15195677285] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156804487] [to:+17206231879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865323458] [to:+18582237637] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123733] [to:16785986983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161385] [to:15595474696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145168303] [to:+19196517030] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303951] [to:14109713973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496751] [to:13474231596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:41 ip-10-0-64-11 mdr: 2016-02-01 11:52:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094647146] [to:+16474916835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-11 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864753356] [to:13523282921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:41 ip-10-0-0-10 mdr: 2016-02-01 11:52:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808431355] [to:+16026384615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449930] [to:13176089239] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479649122] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185217131] [to:+16177064186] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103923077] [to:+15865747557] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402001530] [to:+16463497005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939175] [to:16784208033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17659869148] [to:17656674872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812635] [to:12074002043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005718] [to:19125413667] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005718] [to:19125413667] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036721] [to:18196358478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:42 ip-10-0-0-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496267] [to:16465780045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-11 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659777] [to:15185938664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026256] [to:14022240031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:42 ip-10-0-64-10 mdr: 2016-02-01 11:52:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632299053] [to:+18639492164] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659777] [to:15185938664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613155] [to:17325150226] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622966358] [to:+17097019096] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789009503] [to:+14706734046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372870183] [to:+12139296071] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:14072762946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724862] [to:15164500397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16783941536] [to:18653825767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19738617975] [to:+16467381069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407720666] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103923077] [to:+15865747557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469386783] [to:+16463496786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745715] [to:15406427393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161817] [to:19193403885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293991] [to:18505900022] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243186] [to:18134040043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543142658] [to:13366752694] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034594813] [to:+14438550338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672058365] [to:+15413257888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:43 ip-10-0-64-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246720849] [to:+18508950340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-11 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346481536] [to:+13134246179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B20302] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308792] [to:14437456817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:43 ip-10-0-0-10 mdr: 2016-02-01 11:52:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194158126] [to:19106918682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157345906] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14436531995] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062279108] [to:+13064000298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622458142] [to:+19738462657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126052103] [to:+14126940316] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19072059643] [to:+19543144923] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743671562] [to:+15799770348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157345906] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18018334001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19393347864] [to:+19142794222] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:44 ip-10-0-64-11 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806827634] [to:+12135596563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049529021] [to:+17279166379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-10 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298337] [to:19372728999] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:44 ip-10-0-0-11 mdr: 2016-02-01 11:52:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072408] [to:15148246324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609479] [to:15193288225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299470899] [to:+13477147141] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159342317] [to:+16157777090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012836848] [to:+19015621467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477994787] [to:16474922502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882116] [to:15307365874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15148899634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132209225] [to:+16136043706] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703055342] [to:+16158617990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177375400] [to:17657148370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523704970] [to:+18046242498] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14256917619] [to:+14259478739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:45 ip-10-0-64-10 mdr: 2016-02-01 11:52:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:45 ip-10-0-0-11 mdr: 2016-02-01 11:52:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237593825] [to:+16025527052] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15873350070] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562391199] [to:+12138025406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-20 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418324605] [to:+447423005369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496751] [to:13474231596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175303034] [to:+19177730547] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873175089] [to:13065017124] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346481536] [to:+13134246179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B20303] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314550159] [to:+16318127468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16412432510] [to:15123174596] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031495] [to:18183840830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193240433] [to:19193399123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-10 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163006638] [to:+16474950969] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:46 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:46 ip-10-0-0-11 mdr: 2016-02-01 11:52:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172566] [to:17092172842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812774] [to:13012135180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-21 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634604] [to:16176429105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198319759] [to:+17053026704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326484986] [to:+17323770526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-11 mdr: 2016-02-01 11:52:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:47 ip-10-0-64-10 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092817200] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:47 ip-10-0-0-11 mdr: 2016-02-01 11:52:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107693473] [to:+12105560975] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525602096] [to:+13479787610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12184815496] [to:+12184163586] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874004477] [to:17809199020] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-21 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213828] [to:+447749786938] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13602592380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034080398] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-21 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451213828] [to:+447749786938] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572474411] [to:+18573001602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145288287] [to:+13478029729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798355] [to:17408776254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19127049068] [to:+18583603381] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243079] [to:13522586352] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147813110] [to:+18193073670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:48 ip-10-0-64-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:18622356222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:48 ip-10-0-0-10 mdr: 2016-02-01 11:52:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063336782] [to:+12136349861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104306] [to:16306564283] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569388242] [to:+17605896566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034486036] [to:+15103228952] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919796] [to:19027195866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017710039] [to:18138471731] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815076254] [to:+16178619641] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073330] [to:12134342510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064851] [to:12053404509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102318718] [to:+18572559394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866278] [to:13045913246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072847] [to:17246995090] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253174327] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712526848] [to:+17749921552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032064778] [to:+12132958818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364097] [to:+17073419263] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595536479] [to:+12138733781] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-11 mdr: 2016-02-01 11:52:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:49 ip-10-0-64-11 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:49 ip-10-0-0-10 mdr: 2016-02-01 11:52:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185300142] [to:+17185212268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053446344] [to:+16139093010] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197223799] [to:+14197316149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132957408] [to:13526102616] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927781] [to:14384035820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152012121] [to:+13214067628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138028717] [to:12082509491] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737312] [to:15402887732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794235] [to:17758150576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738147997] [to:19107337711] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282150670] [to:+17187479069] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134290940] [to:+15133860695] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450390] [to:16035831739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713500291] [to:18042343225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17409632692] [to:+17408797514] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023490021] [to:+19027046119] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294156876] [to:+18176125728] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183886] [to:14083378287] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18103393562] [to:18108344207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642443] [to:19206649347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869260] [to:13479222090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887014] [to:18076314741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496751] [to:13474231596] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197600408] [to:+16136048043] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500473] [to:15185707697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302179005] [to:+13302374642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-10 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:17062509374] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18503293504] [to:18502416697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864107079] [to:12392185872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:50 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346101190] [to:+18503293035] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-11 mdr: 2016-02-01 11:52:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309541] [to:13213171797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:50 ip-10-0-64-10 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+12264570364] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816385428] [to:+12816035455] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-21 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077502034] [to:16614934223] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146023] [to:593984844661] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-21 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447947918803] [to:+447520674899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415325] [to:18764755688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132320] [to:16036576986] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415325] [to:18764755688] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696433711] [to:19016035465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569817] [to:15703176246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227198] [to:13409980893] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154274] [to:+13437001520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102340703] [to:+13217308761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-10 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807732044] [to:+15874051076] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-20 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767320118] [to:+17726179239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:51 ip-10-0-64-11 mdr: 2016-02-01 11:52:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:51 ip-10-0-0-11 mdr: 2016-02-01 11:52:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107417920] [to:+16108804267] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18015997949] [to:+18018906351] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252382406] [to:19252066514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12158668546] [to:+12678676167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804777069] [to:+17049700604] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479556848] [to:+15162526886] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705010853] [to:+12695755267] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572645087] [to:13017504029] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788089767] [to:+16042594863] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-0-10 mdr: 2016-02-01 11:52:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:52 ip-10-0-64-11 mdr: 2016-02-01 11:52:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477024725] [to:+16474941122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-21 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332467] [to:+447521129474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12696356093] [to:12699938528] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029946822] [to:+17607013424] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638442916] [to:+17863726930] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-21 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418332467] [to:+447521129474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779603] [to:13309624125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14137289370] [to:18604612947] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282913606] [to:+19175804891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313379586] [to:+17702005251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13614450558] [to:13613364145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176145479] [to:+17036628794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039165579] [to:+13473798476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15168282027] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13602592380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024989887] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-10 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022563294] [to:+16466288167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-10 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120563] [to:16133411694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-0-11 mdr: 2016-02-01 11:52:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165988552] [to:+17162791725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:53 ip-10-0-64-11 mdr: 2016-02-01 11:52:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610628] [to:14233130169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721217] [to:14808598186] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572169554] [to:15016725775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038369245] [to:+15873232679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:13049914906] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509819012] [to:+16049019044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-11 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:54 ip-10-0-64-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18105600031] [to:+18108527028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:54 ip-10-0-0-10 mdr: 2016-02-01 11:52:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193290864] [to:+18192011152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630941] [to:18326569117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13347825712] [to:+19142817883] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334110] [to:18048821934] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559394] [to:19102318718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745715] [to:15406427393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199513179] [to:+13309157346] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425882] [to:19125773887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067407181] [to:+14502324037] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050260] [to:16046741196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262362197] [to:+13436001615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004748] [to:15049408248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789341630] [to:+14156499716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476303817] [to:14793135202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165723173] [to:+17072427797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159109315] [to:+16109102365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673440742] [to:+14582016798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526190219] [to:+17248032913] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439928444] [to:+18438888279] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17082657162] [to:+12138063358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003030201] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015661842] [to:+15107799608] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014637390] [to:+12138028437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292534182] [to:+16465478518] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703163304] [to:+19703156034] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438145086] [to:+12404668756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475517551] [to:+16474941589] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046140894] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166593612] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174871477] [to:+16172193091] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044961310] [to:+13057355979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706406741] [to:+16692252597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892530980] [to:+12264550282] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042989185] [to:+16025721202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18634100078] [to:+14128193090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079256230] [to:+19784896162] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049957930] [to:+12048183396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12088816404] [to:+12086202651] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003450402] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15418160731] [to:+15415392144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708508473] [to:+17813862580] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314137101] [to:+16319801005] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196803655] [to:+17408797666] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676830872] [to:+12672732640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075564692] [to:+13217308073] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18148880520] [to:+18638555227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19899152361] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027158995] [to:+17027794061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109399754] [to:+12135296757] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156538761] [to:+12012344321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18722203892] [to:+16513335524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439831344] [to:+12029991491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189304183] [to:+17125266422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168567392] [to:+16474954385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057634] [to:18176837928] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-10 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694611268] [to:12692351114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:55 ip-10-0-64-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003928] [to:19063671977] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:55 ip-10-0-0-11 mdr: 2016-02-01 11:52:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064663984] [to:+14703336341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19028807119] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500410] [to:18019531785] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405923] [to:19057038491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048880731] [to:+13479789213] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195882065] [to:+15799000685] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268843] [to:16468234723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381069] [to:19738617975] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208484] [to:12566055170] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079308] [to:13135051484] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812774] [to:14439752605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491348] [to:16065212517] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:18602681121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-10 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:56 ip-10-0-0-11 mdr: 2016-02-01 11:52:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505585613] [to:+14388086134] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:56 ip-10-0-64-11 mdr: 2016-02-01 11:52:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404540383] [to:12407430066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789015405] [to:+17604743472] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:17049616814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024031522] [to:+19027021768] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192420051] [to:+12262401189] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437591538] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12156068019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17869751096] [to:+13475087669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638045] [to:16463271913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14233642401] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167440139] [to:+17135883492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711358] [to:+13064000804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-10 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12816593896] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-11 mdr: 2016-02-01 11:52:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:57 ip-10-0-64-11 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:57 ip-10-0-0-10 mdr: 2016-02-01 11:52:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19529778850] [to:19144792334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437903577] [to:+13024398714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751364] [to:17409636941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-21 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045704302] [to:+18046650539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004024] [to:16788158272] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706055872] [to:+17277679572] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17608492253] [to:+16105718609] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231954] [to:16037023650] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402870911] [to:+12342312551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055351381] [to:+13479808083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313067399] [to:+17015872156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-64-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475684] [to:+18102218517] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-10 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044849638] [to:+14049004548] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004325] [to:14072854738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:58 ip-10-0-0-11 mdr: 2016-02-01 11:52:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026780] [to:16062350022] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638557943] [to:18635896625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093135415] [to:+12677938913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082047] [to:18135147443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024718154] [to:+17029016844] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958467] [to:13105058262] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794235] [to:17758150576] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-21 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432011735] [to:+447451211332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B60201] -Feb 1 11:52:59 ip-10-0-0-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18169201381] [to:+16513184804] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262415325] [to:18764755688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126062] [to:14845220126] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:52:59 ip-10-0-64-10 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063725246] [to:+17028158463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:52:59 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18137859522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:52:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037529] [to:16307880583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196322681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668489] [to:17725847150] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390350] [to:14389983683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190969] [to:16173310077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13303567705] [to:13304419770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-10 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-11 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:00 ip-10-0-0-11 mdr: 2016-02-01 11:53:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12259368262] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:00 ip-10-0-64-10 mdr: 2016-02-01 11:53:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744170622] [to:+12039904425] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824775] [to:19082026499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-20 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432011735] [to:+447451211332] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B60202] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-21 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182770612] [to:+12184163597] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853544009] [to:+13479787448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342285889] [to:+13302377110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166314] [to:19125510166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204171452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:18637972149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17204171452] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237159772] [to:+12132958267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-0-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-10 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:01 ip-10-0-64-11 mdr: 2016-02-01 11:53:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077397] [to:15143470488] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176341698] [to:+19142815269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148122] [to:+15852824368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055800569] [to:+16474910046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-10 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132590] [to:16038511402] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-10 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:02 ip-10-0-64-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:02 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237551807] [to:+15109487227] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592136352] [to:+17274937792] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435624994] [to:+14437202554] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265983676] [to:+14153161549] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-11 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:17057885675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:13068810505] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:16622551377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-10 mdr: 2016-02-01 11:53:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667786] [to:15742268433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-11 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438774285] [to:+14155493961] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:03 ip-10-0-64-10 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14183789717] [to:+16474955955] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:03 ip-10-0-0-20 mdr: 2016-02-01 11:53:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447884073798] [to:+447451227459] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688372] [to:16465314696] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15124007308] [to:15126651574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258223] [to:15012069212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479568795] [to:13364254601] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383047] [to:13365968897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284467337] [to:+12136300374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087396] [to:14075419885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232818] [to:13097509204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039611] [to:15066256094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047130400] [to:+19802094703] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474592315] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629135] [to:15084939294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-21 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468587] [to:17088564683] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767320118] [to:+17726179239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-11 mdr: 2016-02-01 11:53:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-0-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440249] [to:15186377901] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-10 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:04 ip-10-0-64-11 mdr: 2016-02-01 11:53:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13023993500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474859484] [to:+17189628981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886939] [to:12252230522] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12709849054] [to:12709916863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739349] [to:17068717311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005718] [to:14048255123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053271477] [to:+16474968388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734025] [to:17068253914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817027974] [to:+12816034769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147541410] [to:+14387920216] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625887932] [to:+19298006295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179936467] [to:+17278197248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13093978211] [to:+18729996147] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675968241] [to:+12678444088] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16825000287] [to:+19725347621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193403885] [to:+19199161817] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046199357] [to:+12627775402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162210505] [to:+15852824855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-64-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404551] [to:15612218858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-11 mdr: 2016-02-01 11:53:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035098602] [to:+16034132364] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:05 ip-10-0-0-10 mdr: 2016-02-01 11:53:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046720042] [to:+13476672879] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593986127584] [to:+13478303802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132523] [to:15089441605] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16138185151] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174509614] [to:+17604746265] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162908742] [to:19168701644] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17408796728] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19793249766] [to:+14426007946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450390] [to:16035831739] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264550282] [to:12892530980] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533147764] [to:+12533289573] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734096748] [to:+18563126254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:06 ip-10-0-0-10 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788346882] [to:+16785868192] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:06 ip-10-0-64-11 mdr: 2016-02-01 11:53:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18605083196] [to:+13473899773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135076732] [to:+12139213154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179312] [to:+19175638683] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023068171] [to:+19027062781] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-20 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451234654] [to:+447930075810] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436531995] [to:+12134017703] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15405784377] [to:+15403008987] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089967473] [to:+12085157848] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134616037] [to:+13477865052] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159755311] [to:+16158076271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216137438] [to:19102419252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17349255350] [to:+17344366112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:07 ip-10-0-0-10 mdr: 2016-02-01 11:53:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122982312] [to:+14122302879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:07 ip-10-0-64-11 mdr: 2016-02-01 11:53:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:15732810942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049633973] [to:+14703334436] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097022779] [to:17097634218] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546842979] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145980983] [to:+16149965167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799608] [to:15015661842] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186539266] [to:+13477989729] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383996700] [to:+14388078058] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709168576] [to:+17162790942] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323189895] [to:+12672777128] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006239] [to:12505665234] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042235316] [to:+19298411285] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15107750759] [to:+13025830121] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17016404259] [to:+17016454474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-11 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022949799] [to:+15022083277] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927781] [to:19023002122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18566691629] [to:+16095434064] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:08 ip-10-0-0-11 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008563] [to:13235462165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:08 ip-10-0-64-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036437] [to:17096400987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339567] [to:19168043465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086492] [to:16309564506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724009166] [to:16183106810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18178916951] [to:+18175922026] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13085207301] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387941908] [to:15148800782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754483318] [to:15759934417] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593537177] [to:+12139352294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163433] [to:13212036697] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196416348] [to:+19199162332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705071536] [to:+15703973415] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997910] [to:18607195823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297983187] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432455570] [to:+18438720579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122702774] [to:+19142060942] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629491569] [to:+16106999943] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:09 ip-10-0-64-10 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587581] [to:14404533565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:09 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18102936576] [to:+18108528760] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202554] [to:14435624994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329492570] [to:+16109101010] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124907] [to:12489431568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862663] [to:+19149338611] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066677] [to:15092009268] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752242379] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492453106] [to:17147529815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143911960] [to:+14146006995] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402528192] [to:14402618172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149299626] [to:+14387931038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-11 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:10 ip-10-0-64-10 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335810] [to:17063508346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-10 mdr: 2016-02-01 11:53:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:10 ip-10-0-0-11 mdr: 2016-02-01 11:53:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102365] [to:12159109315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653276198] [to:+13479978196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593291603] [to:+13392305428] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783601054] [to:+12138026450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076249071] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16056366000] [to:14125731088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041859] [to:+17185676091] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643373010] [to:+13479192110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500956] [to:13363012603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18076314741] [to:+18077887014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16786435546] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-11 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045022703] [to:+19252398553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:11 ip-10-0-0-10 mdr: 2016-02-01 11:53:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059060759] [to:+12262436839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:11 ip-10-0-64-11 mdr: 2016-02-01 11:53:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429018] [to:18593335749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434057452] [to:+18133209059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148366315] [to:+14387923278] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628981] [to:13474859484] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617665890] [to:13302120328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683263] [to:18605141998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851926] [to:14433665795] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242060831] [to:+14242527875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873175089] [to:15144243892] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258108] [to:18123900304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163486643] [to:+17162792426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361704] [to:19122125395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494353] [to:13602411933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303578332] [to:+12626483448] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197431782] [to:+18193037291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16084158205] [to:+19047587493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013068353] [to:+19738147962] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-10 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990721] [to:12162722231] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:19796655195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-10 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292721] [to:15109789261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036896021] [to:+17812621846] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:12 ip-10-0-64-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:12 ip-10-0-0-11 mdr: 2016-02-01 11:53:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479378705] [to:12035921699] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449567] [to:17737154084] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493540] [to:18632142471] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044338372] [to:+13477735318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997765] [to:17204980091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16013572876] [to:+17604747437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964316] [to:16142666688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905426] [to:18129634314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913988] [to:14165770429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242525875] [to:17038889834] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913166] [to:16474614052] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057350441] [to:13474213854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-10 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17633015532] [to:14237411708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:18438581703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481536] [to:16093697792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:13 ip-10-0-64-11 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044887751] [to:+14049004131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:13 ip-10-0-0-10 mdr: 2016-02-01 11:53:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739812] [to:12038100073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192311446] [to:+15612407945] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436982306] [to:+14439719938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976080] [to:17078329827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860695] [to:15134290940] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292918414] [to:+18639491879] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739882] [to:19285757527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:15715023583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197223799] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13164619779] [to:+14242868286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15067407181] [to:+14502324037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468587] [to:17088564683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852137] [to:14108296397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048172832] [to:14357314913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500034A0201] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-21 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751278097] [to:+447418336927] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673189728] [to:+14199649065] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137544626] [to:+13477055697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:14 ip-10-0-64-10 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:18282012763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-11 mdr: 2016-02-01 11:53:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400809] [to:18504055550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:14 ip-10-0-0-10 mdr: 2016-02-01 11:53:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500034A0202] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068037735] [to:15063211352] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158258599] [to:12017808657] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19709886047] [to:+18133088899] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:18325408389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045037] [to:15142479030] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008819] [to:16185991576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649053] [to:19785968044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108538047] [to:19377187793] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:15166593612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334022] [to:19899921527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154503127] [to:+12138619156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303531067] [to:+17016454913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-10 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402228753] [to:19403997433] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:15 ip-10-0-64-11 mdr: 2016-02-01 11:53:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:15 ip-10-0-0-11 mdr: 2016-02-01 11:53:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149779968] [to:+19148250922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147541410] [to:+14387920216] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18633279192] [to:+18637347520] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301503] [to:14127080897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135076732] [to:+12139213154] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334082] [to:17043078615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046352] [to:19024739763] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370408] [to:18454898503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186057694] [to:+18572190404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12542232988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817019743] [to:15813093013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-11 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-0-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-11 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19073547745] [to:+19172669376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:16 ip-10-0-64-10 mdr: 2016-02-01 11:53:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026704] [to:15198319759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476319416] [to:+16474910479] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-20 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502732995] [to:+447451203365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030A0201] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304304] [to:16073771416] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093057816] [to:+12026609416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569388242] [to:+17605896566] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19093590225] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466876505] [to:16466696824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327502] [to:17037316668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175918] [to:17725597491] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022107030] [to:+19027062682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025201094] [to:+13477696424] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053060702] [to:+17053025935] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996776] [to:19703180968] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19709996776] [to:19703180968] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204126] [to:13013312674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14044541497] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-64-11 mdr: 2016-02-01 11:53:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-11 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:17 ip-10-0-0-10 mdr: 2016-02-01 11:53:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897785340] [to:14167060433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-21 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418333625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13067172109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672302919] [to:+12039904243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896602] [to:12135058613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174965420] [to:+16413165184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142618999] [to:+15148198684] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132139877] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803544811] [to:+18653470290] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894986043] [to:15022038063] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:12055169427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14795612945] [to:+12138023825] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067144516] [to:+12065827184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337048] [to:19524545096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158617990] [to:12703055342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305498] [to:12673432852] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508212349] [to:+14387923883] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16302582099] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:18 ip-10-0-0-10 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-10 mdr: 2016-02-01 11:53:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:18 ip-10-0-64-11 mdr: 2016-02-01 11:53:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13125025308] [to:+14153269688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153407511] [to:12764921945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995814] [to:13472903163] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688372] [to:16465314696] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722251065] [to:12177308001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054488581] [to:+13473897159] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603492208] [to:+17605899368] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336344] [to:12092213572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286781304] [to:+13054175517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566771182] [to:+19725346680] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003450201] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16186042842] [to:+16367305355] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787793896] [to:+19047581337] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19807857458] [to:+19802094538] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875909565] [to:+15874003153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364688] [to:+16467380593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-11 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062849488] [to:+18316122372] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:19 ip-10-0-64-10 mdr: 2016-02-01 11:53:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472014704] [to:+15167238778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:19 ip-10-0-0-11 mdr: 2016-02-01 11:53:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739840] [to:12815131031] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062298368] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817438310] [to:+12816436122] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:12017072163] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274937161] [to:17347552346] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316450418] [to:+12313318175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802977883] [to:+15874005542] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410521] [to:17049291164] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-10 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815269] [to:17176341698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:20 ip-10-0-0-10 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:20 ip-10-0-64-11 mdr: 2016-02-01 11:53:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892007806] [to:+12897805325] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-21 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418339384] [to:+447543193689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823886] [to:15859444917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038708] [to:17862178747] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592232331] [to:15592316389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137074544] [to:16133609907] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16265231530] [to:+16269881512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473020] [to:18654382913] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142708885] [to:+19298410820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372728999] [to:+12139298337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012648] [to:13866032987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083177851] [to:+12087633812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335524] [to:18722203892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127684] [to:18045036887] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817027974] [to:+12816034769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737182] [to:13346189970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566771182] [to:+19725346680] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003450202] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163433] [to:13212036697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-10 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193091] [to:16174871477] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044701798] [to:+12048134485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336211] [to:17069411451] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822128] [to:13216950008] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:21 ip-10-0-64-11 mdr: 2016-02-01 11:53:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17142612134] [to:14437625590] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-11 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048255123] [to:+17702005718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:21 ip-10-0-0-10 mdr: 2016-02-01 11:53:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033238743] [to:+18438720441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123916922] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105286618] [to:+13478084059] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679122] [to:16612100957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434057452] [to:+18133209059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362548875] [to:+15103404653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19737521939] [to:+15713262128] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506391330] [to:15146219171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496429] [to:17863035354] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028402398] [to:+12497009335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160816] [to:14077155727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:14787033715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-10 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089726779] [to:+17278603107] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-0-20 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447940715468] [to:+447451233981] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329388781] [to:+18328042951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178759983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:22 ip-10-0-64-11 mdr: 2016-02-01 11:53:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17178759983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566055170] [to:+19148208484] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334022] [to:19899921527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025785003] [to:+13475076170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16089291961] [to:+16264604499] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292415476] [to:+17185044844] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109297518] [to:+18328025673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093057816] [to:+12026609416] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924456] [to:14388221032] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:23 ip-10-0-64-11 mdr: 2016-02-01 11:53:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892430] [to:16307701552] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-11 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133411694] [to:+16139120563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:23 ip-10-0-0-10 mdr: 2016-02-01 11:53:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031495] [to:18183840830] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437456817] [to:+14156308792] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437456817] [to:+14156308792] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062350022] [to:+12138026780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017073518] [to:+17607013448] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188191030] [to:+13476670104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436183] [to:14782583835] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812490] [to:17876140128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374899] [to:13302058130] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777057] [to:14194900705] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072402162] [to:14437561330] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16236706789] [to:+14806664595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479789605] [to:12482318252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344349622] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017975] [to:19043157139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-11 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:15715023583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-11 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673220879] [to:+13479194059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-0-10 mdr: 2016-02-01 11:53:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:24 ip-10-0-64-10 mdr: 2016-02-01 11:53:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667656] [to:16307461282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234897157] [to:+13477146459] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037080] [to:12508120914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808030080] [to:+15874006697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003150202] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416615583] [to:+19417029765] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148960573] [to:+16149963041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809822154] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032F0201] -Feb 1 11:53:25 ip-10-0-64-11 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974030] [to:15708325220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-10 mdr: 2016-02-01 11:53:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:25 ip-10-0-64-10 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817078895] [to:+12819421586] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:25 ip-10-0-0-11 mdr: 2016-02-01 11:53:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736711972] [to:+15873232525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897214] [to:19163081851] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977856] [to:15166337185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018449503] [to:+15155127266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455970373] [to:+17749921920] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419602] [to:18083712476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032F0202] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035071942] [to:+13477145618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181096] [to:18052980921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534079] [to:50240774665] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-21 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418335434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632070960] [to:+18639493799] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628081970] [to:+14242839353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127753776] [to:+15129523446] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446737] [to:14232001052] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-11 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14798494364] [to:+19142067017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348267] [to:12708051794] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-11 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:26 ip-10-0-0-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175249776] [to:+14242838249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13025615522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17402067760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:26 ip-10-0-64-10 mdr: 2016-02-01 11:53:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16616367343] [to:+16156147607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431994] [to:+16158100311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632296808] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024857525] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929426] [to:15878972221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347520] [to:18633279192] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:13182285839] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329517266] [to:+18327772696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-11 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153404370] [to:13305180312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474916097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878530] [to:18503204485] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:27 ip-10-0-64-10 mdr: 2016-02-01 11:53:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:27 ip-10-0-0-11 mdr: 2016-02-01 11:53:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622165253] [to:+18629551607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532657708] [to:18606058757] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17725597491] [to:+17726175918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567110] [to:15066540923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125510166] [to:+17279166314] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13123308199] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797809] [to:18439747282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605569143] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524913862] [to:+19292009941] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12524913862] [to:+19292009941] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-10 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:28 ip-10-0-64-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16146579381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967172] [to:19313032393] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-10 mdr: 2016-02-01 11:53:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:28 ip-10-0-0-11 mdr: 2016-02-01 11:53:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866284125] [to:13187174745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692696025] [to:+16136045275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436183] [to:14782583835] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12169295537] [to:12163945779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669125] [to:17738851359] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028567] [to:+12267982318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18569429238] [to:18565010575] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17279067911] [to:+17278578114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674084560] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474913166] [to:16474614052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282976080] [to:17075969558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-10 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-10 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:29 ip-10-0-64-11 mdr: 2016-02-01 11:53:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707889] [to:16314331732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:29 ip-10-0-0-11 mdr: 2016-02-01 11:53:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375947901] [to:+12139927757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476762841] [to:19084443853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436982306] [to:+14439719938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136226] [to:19373055064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679122] [to:13234558445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136297717] [to:+12134787835] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296656] [to:19895820749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15133860657] [to:15132508826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015972677] [to:+17745654113] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-10 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-21 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468283] [to:13153720394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:30 ip-10-0-64-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002648] [to:13026327408] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:30 ip-10-0-0-11 mdr: 2016-02-01 11:53:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593765] [to:12059606602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405919847] [to:+15204333286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635955208] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AD0201] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212227052] [to:+14076336335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14385808778] [to:+14388078836] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-21 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447511075565] [to:+447418336845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266402] [to:16164463284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-10 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:31 ip-10-0-0-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-10 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:31 ip-10-0-64-11 mdr: 2016-02-01 11:53:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018769] [to:13526394932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635955208] [to:+17074031864] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003AD0202] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033610521] [to:+13478966271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817814903] [to:+17604749017] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237247792] [to:+13473798200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348650088] [to:+19417256629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302839] [to:14128774139] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223124] [to:12516802983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369291032] [to:+13369440738] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093057816] [to:+12026609416] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216950008] [to:+15852822128] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:19046739614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530684] [to:16025385101] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634885] [to:17327034208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046513282] [to:+16465640470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465688372] [to:16465314696] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194365] [to:16625232099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359447] [to:19122203538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:32 ip-10-0-64-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193345656] [to:+18193078289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475763406] [to:+17185042100] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-11 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186377901] [to:+15183440249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:32 ip-10-0-0-10 mdr: 2016-02-01 11:53:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263765560] [to:+12138062444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:13475960450] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015805866] [to:19733030680] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366341] [to:12692777984] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428874] [to:19043187636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967169] [to:19313383917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817883] [to:13347825712] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004775] [to:14044160190] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138335098] [to:+15178161867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897797983] [to:16477787480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708371223] [to:+16465138363] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-20 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14045502237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500956] [to:13363012603] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374184] [to:14072855695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109101010] [to:18329492570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13067172109] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305393] [to:13474692540] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14233642401] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036196136] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174138533] [to:+17816548592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-10 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:33 ip-10-0-64-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475446554] [to:+16474941995] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:33 ip-10-0-0-11 mdr: 2016-02-01 11:53:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402023943] [to:+14197767985] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15804611921] [to:+15109486125] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19376214096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149618423] [to:+14387931214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432441561] [to:+18039784394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138830292] [to:+13658002822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015916] [to:17752408920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562750765] [to:+19177229427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128447737] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042609989] [to:+12048177563] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503847] [to:14047095813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028567] [to:+12267982318] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374184] [to:14072855695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:19734096748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:34 ip-10-0-64-11 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136895] [to:16623800862] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:34 ip-10-0-0-10 mdr: 2016-02-01 11:53:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439118] [to:18609780700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965300] [to:17047348651] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076598572] [to:+14158907499] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082384247] [to:+17472014516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868286] [to:13164619779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035109984] [to:+12039904245] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048821934] [to:+14703334110] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165770429] [to:+16474913988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167730302] [to:+16163266122] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133339686] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064075331] [to:+19142797123] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525735425] [to:+17279986799] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-10 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673530753] [to:+13475088602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:35 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:35 ip-10-0-0-11 mdr: 2016-02-01 11:53:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479254927] [to:+19142286245] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691249] [to:13158790613] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512138149] [to:+12515819883] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022366163] [to:+16466998127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122125395] [to:+14243361704] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786839] [to:17073621123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786839] [to:17073621123] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786839] [to:17073621123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358305079] [to:+14353391601] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149475446] [to:+16475569918] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14237777842] [to:14237731463] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074097095] [to:16619007266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:36 ip-10-0-0-10 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133568194] [to:+16178619678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:36 ip-10-0-64-11 mdr: 2016-02-01 11:53:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174539281] [to:+19148812082] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18312728298] [to:+18316107671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18156308976] [to:+19148812959] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916097] [to:12899195486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899368] [to:17603492208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009335] [to:19028402398] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873272412] [to:14163203924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034486036] [to:+15103228952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325273813] [to:18489928447] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390417] [to:14185503432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033349441] [to:+16612285595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:37 ip-10-0-64-11 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408365] [to:14232158220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:37 ip-10-0-0-10 mdr: 2016-02-01 11:53:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309157098] [to:18596619358] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995566] [to:12706254110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419602] [to:18083712476] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693095437] [to:12147537863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070353] [to:12607061608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566771182] [to:+19725346680] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13103658168] [to:+12135455228] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045012037] [to:+13866012796] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155416] [to:15183800638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14184361024] [to:+15817012439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976357] [to:13182285839] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365016391] [to:+13477145160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179192220] [to:+13478082069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018235] [to:13865034091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760968] [to:12566069606] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338501] [to:16789181801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19285757527] [to:+19177739882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-11 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593956] [to:15703570508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122412685] [to:+13479373273] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-11 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205028352] [to:17202548038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:38 ip-10-0-0-10 mdr: 2016-02-01 11:53:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139189607] [to:+16129305604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:38 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13658001661] [to:15199035384] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304521] [to:16066279033] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:15752242379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070353] [to:12607061608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509000995] [to:17785878066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13362907193] [to:13369548051] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:16627750133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398233936] [to:+13214067248] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991508] [to:12405850128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363653632] [to:+13364500944] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122412685] [to:+13479373273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+12086202624] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306950] [to:18163848024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508069548] [to:+15817040494] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:39 ip-10-0-64-10 mdr: 2016-02-01 11:53:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:39 ip-10-0-0-11 mdr: 2016-02-01 11:53:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995575] [to:18642015532] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-21 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14422207633] [to:17606286222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026697106] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014401] [to:19078309369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704050210] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-10 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-10 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233642401] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:40 ip-10-0-0-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727161] [to:12488302472] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:40 ip-10-0-64-11 mdr: 2016-02-01 11:53:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094422] [to:17703634852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993439] [to:19045053305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225857] [to:13372077694] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225857] [to:13372077694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179365] [to:16626433420] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19024031522] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153695405] [to:+19142817241] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076137973] [to:+19543142094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200669] [to:17246404827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15137259405] [to:15138144443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076339] [to:12039217074] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-21 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710193392] [to:+447451236689] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052753043] [to:+18053943010] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003560202] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436242954] [to:+14433453595] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500031B0301] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436242954] [to:+14433453595] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031B0303] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052753043] [to:+18053943010] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003560201] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19076391033] [to:+15102548511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304419770] [to:+13303567705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929426] [to:13062501823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-10 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:41 ip-10-0-0-11 mdr: 2016-02-01 11:53:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:41 ip-10-0-64-11 mdr: 2016-02-01 11:53:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-21 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451227459] [to:+447884073798] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037023650] [to:+19783231954] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048896314] [to:+15617665916] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020050] [to:19893355086] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109789261] [to:+14696292721] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402130484] [to:+16178634842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363027171] [to:+13369381984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668771] [to:12406021369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376182400] [to:+12133550105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-64-11 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176451728] [to:+18572404145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-11 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179239] [to:12767320118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:42 ip-10-0-0-10 mdr: 2016-02-01 11:53:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149968] [to:19039856748] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:19412688677] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444429] [to:12674014225] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:15146257539] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581337] [to:16787793896] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763852099] [to:+16466328079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19057833650] [to:+16474982779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:12012685342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024739763] [to:+19027046352] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192126619] [to:+18193035300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132206950] [to:+18133088610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15057055032] [to:+15052572594] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13018048198] [to:+12026090142] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433665795] [to:+13025851926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-11 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734627799] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:43 ip-10-0-0-10 mdr: 2016-02-01 11:53:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12406857829] [to:14434046388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:43 ip-10-0-64-10 mdr: 2016-02-01 11:53:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196219193] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262011663] [to:+17053029735] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419602] [to:18083712476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:16786826753] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022371516] [to:+18077883185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19196516303] [to:19199287317] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146213437] [to:+16475039835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314013] [to:12512073524] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632398] [to:+16139097163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047348651] [to:+19173965300] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:44 ip-10-0-0-10 mdr: 2016-02-01 11:53:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:44 ip-10-0-64-11 mdr: 2016-02-01 11:53:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412099] [to:17708457217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549271] [to:16047513281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056500069] [to:+19382385018] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632398] [to:+16139097163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095487] [to:13063201212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819422130] [to:18324888716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704945546] [to:+15703973518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16136685053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159392702] [to:+12679525428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:12297983187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712828325] [to:+15152034044] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136579083] [to:+13479804016] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801715721959] [to:+14706734411] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102265] [to:18598163201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19157275406] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666157] [to:17085518375] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19157030615] [to:+16025527446] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586608] [to:12692015328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14073462120] [to:+12139927647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058406] [to:19027511076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058406] [to:19027511076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-0-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:18035537324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-10 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:45 ip-10-0-64-11 mdr: 2016-02-01 11:53:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15136962152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619694] [to:17813092365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474916697] [to:17023430844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527239079] [to:+13476677407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262202486] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473617634] [to:+16466876380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17138347908] [to:+13478020354] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657206646] [to:+15103225211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545899656] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142165340] [to:+16149180276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12764921945] [to:+14153407511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12672302919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057374489] [to:+19172660155] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018982] [to:18023237021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545899656] [to:+19082809477] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057374489] [to:+19172660155] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:46 ip-10-0-64-10 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223856] [to:14438678276] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:46 ip-10-0-0-11 mdr: 2016-02-01 11:53:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340968] [to:13368759078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282156581] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845461661] [to:+14846339277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035071942] [to:+13477145618] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173833642] [to:+13859851230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15617146328] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:19172262945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044541497] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336335] [to:13212227052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475076170] [to:18025785003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603287] [to:19063228266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:47 ip-10-0-0-10 mdr: 2016-02-01 11:53:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-11 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12897751866] [to:+12894600983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:47 ip-10-0-64-10 mdr: 2016-02-01 11:53:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092817200] [to:+12086252417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849353] [to:12526196095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784811661] [to:+16784348597] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388221032] [to:+14387924456] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15012436773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012648] [to:13866032987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477697190] [to:13179972097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025527052] [to:16237593825] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232679] [to:14038369245] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073312156] [to:+13479543976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672104] [to:16063156654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144747205] [to:+18458181056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16192046365] [to:+12132957696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911730] [to:17186195408] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190561] [to:16163899916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818169] [to:19142589667] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364849] [to:+15109486186] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822128] [to:13216950008] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12014794258] [to:19737895064] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921786] [to:19176515319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12569973187] [to:+14706734101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:48 ip-10-0-0-10 mdr: 2016-02-01 11:53:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:48 ip-10-0-64-11 mdr: 2016-02-01 11:53:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702944040] [to:+14845363323] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:18325408389] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476670104] [to:15188191030] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188026973] [to:+15817014893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149676387] [to:+14388072409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164172356] [to:+16474954121] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147541410] [to:+14387920216] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136030839] [to:+15103222398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465319241] [to:16464003559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18678880172] [to:17059172489] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16064833625] [to:+19148608093] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753184499] [to:+13475087388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727802] [to:13604704425] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727802] [to:13604704425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-11 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044052849] [to:+16784338170] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:49 ip-10-0-0-10 mdr: 2016-02-01 11:53:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150248820323] [to:+15169267023] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-11 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:49 ip-10-0-64-10 mdr: 2016-02-01 11:53:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609727802] [to:13604704425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402870911] [to:+12342312551] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144912552] [to:+14692058705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19018598533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897098] [to:17174142753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475149] [to:15108834702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626004657] [to:+17344365453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043459584] [to:+18038519308] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166387161] [to:+16465137759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313076578] [to:+16313867646] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132364] [to:16035098602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646435212] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796170] [to:18122098039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106918682] [to:+19194158126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176341698] [to:+19142815269] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-11 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:50 ip-10-0-0-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13106546786] [to:+17747288441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:50 ip-10-0-64-10 mdr: 2016-02-01 11:53:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594369545] [to:+14158536821] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093049057] [to:+13478084601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752683878] [to:+15058006635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063141864] [to:+13069929419] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672699789] [to:+12156667437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024989887] [to:+12026015235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14145222920] [to:+17607013696] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17577423152] [to:+19148252122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462891637] [to:+19175995918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136249272] [to:+18133203354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374642] [to:13302179005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681672] [to:14076806461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349650] [to:14232484945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:13236389935] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606355355] [to:12606245272] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093547310] [to:+14155698756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179192220] [to:+13478082069] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:51 ip-10-0-0-10 mdr: 2016-02-01 11:53:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658506144] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:51 ip-10-0-64-11 mdr: 2016-02-01 11:53:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041919] [to:15069770694] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:19015814838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479429689] [to:+14132736504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862772310] [to:+15865748754] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13473390594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076137973] [to:+19543142094] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436122] [to:12817438310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498772408] [to:+17053001438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146134124] [to:15147016886] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-11 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095324] [to:14842019790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:52 ip-10-0-64-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:52 ip-10-0-0-10 mdr: 2016-02-01 11:53:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133346461] [to:+13436001559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15416619185] [to:+13478999339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048882222] [to:+14043900637] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195244758] [to:+19199161653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134125702] [to:+15107799290] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148339203] [to:+14502320133] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016035465] [to:+14696433711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153720394] [to:+19148468283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967169] [to:19313383917] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493799] [to:18632070960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18288178227] [to:+18285486367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19165723173] [to:+17072427797] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-21 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605185] [to:+447792023874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053160] [to:13054168812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-21 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336927] [to:+447751278097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:53 ip-10-0-64-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168043465] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:53 ip-10-0-0-10 mdr: 2016-02-01 11:53:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434530428] [to:13016769455] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13148145700] [to:+13214068150] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296992087] [to:+14782397113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:18036142819] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375646] [to:12695895918] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782205219] [to:14787033715] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475763406] [to:+17185042100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927158] [to:19125907332] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-64-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232739356] [to:+12135297455] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18596404874] [to:+13478969560] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-11 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315693] [to:15178616251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:54 ip-10-0-0-10 mdr: 2016-02-01 11:53:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026579174] [to:+12026609497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13527898282] [to:+13479978382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15044101619] [to:+18583605269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069306628] [to:+13065004634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390417] [to:14185570868] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134787824] [to:14702221731] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093813] [to:17042317612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855633745] [to:+15852822822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13023445421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046739614] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147025992] [to:+14388075511] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12014463533] [to:+19175630638] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439832454] [to:+14108884760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445145] [to:19014685475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18576151773] [to:+13476678452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052035982] [to:15309908155] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16147369801] [to:+17408798858] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17177230125] [to:+19142817580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029211556] [to:+19027058512] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142345251] [to:+15169267695] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313067399] [to:+17162792790] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14793533708] [to:+14155698309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152301148] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003150201] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253855496] [to:+14073371708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434608693] [to:+14108745829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166593612] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478523029] [to:+15612407739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13109718122] [to:+13479805870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043007350] [to:+13054174721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12135058613] [to:+12132896602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198060986] [to:+15817005356] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142891021] [to:+17607013071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657148370] [to:+19177375400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369293440] [to:+17605897711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892007806] [to:+12897805325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15592577650] [to:+15592239417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056831574] [to:+14156499878] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133407387] [to:+16139120848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022332792] [to:+19148291293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-10 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436242954] [to:+14433453595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031B0302] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178802674] [to:+19142815611] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802327418] [to:+14158258194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188926719] [to:+15186500115] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044033129] [to:+13052036900] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:55 ip-10-0-64-11 mdr: 2016-02-01 11:53:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697034076] [to:+17042280709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:55 ip-10-0-0-11 mdr: 2016-02-01 11:53:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596449] [to:17655888938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053402259] [to:+13217309779] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026772759] [to:+14242842803] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500488] [to:13368752101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476876387] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17135823065] [to:+17189629215] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040651] [to:+13479544339] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013153721] [to:+16784348354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622356222] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595750553] [to:+14703334128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328439118] [to:18609780700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-20 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520626643] [to:+447596432668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046213921] [to:+17728004705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792257462] [to:+12136165484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064577341] [to:+14156491327] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069411451] [to:+14703336211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:56 ip-10-0-64-11 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:56 ip-10-0-0-10 mdr: 2016-02-01 11:53:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192706021] [to:+12262416902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14323865749] [to:+14696293934] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126651574] [to:+15124007308] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165667232] [to:+16163239003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410521] [to:17049291164] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003634] [to:19547073462] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835519] [to:19372711173] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175995804] [to:13473590150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673617] [to:13022426145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-0-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481442] [to:16083591745] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403583402] [to:+19149338728] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-11 mdr: 2016-02-01 11:53:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313611] [to:18285828161] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:57 ip-10-0-64-10 mdr: 2016-02-01 11:53:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527239079] [to:+13476677407] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18658506144] [to:+19033076669] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214062368] [to:14344416606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193403885] [to:+19199161817] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475446554] [to:+16474941995] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547083410] [to:+19543144206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739882] [to:19285757527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844375] [to:+19709996038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096400987] [to:+15068036437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19705481416] [to:17249686501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775402] [to:13046199357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19713005847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12167047470] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977009] [to:15737959548] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12039904243] [to:12672302919] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19152565159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:16479649122] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779563] [to:+14242768620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:58 ip-10-0-0-10 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:58 ip-10-0-64-11 mdr: 2016-02-01 11:53:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578737] [to:15747035500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019179537] [to:13013286556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062620499] [to:+15068045486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951716] [to:16472858749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676736] [to:19378698361] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817012439] [to:14184361024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135275800] [to:+18134302556] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985467] [to:13056137113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102090311] [to:+16105718386] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12526190219] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402572247] [to:+19802093233] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19524545096] [to:+16513337048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-11 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12048942036] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-0-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:53:59 ip-10-0-64-10 mdr: 2016-02-01 11:53:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033898457] [to:+16137014521] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155606340] [to:+13479138730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025009] [to:17742661995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:12564054304] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479749106] [to:13213562102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069909796] [to:+14706730689] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824194] [to:15857525001] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639650] [to:15614201809] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093391] [to:18192103932] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:00 ip-10-0-64-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-10 mdr: 2016-02-01 11:54:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844375] [to:+19709996038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474941122] [to:16477024725] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885478] [to:12405870051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885478] [to:12405870051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:00 ip-10-0-0-11 mdr: 2016-02-01 11:54:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012885478] [to:12405870051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003928] [to:17793020334] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373242] [to:13214447446] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186209963] [to:+12132959257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:16064075331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737287] [to:15743540792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985308] [to:12673563047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038877] [to:15713312491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096838764] [to:+17097004837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737287] [to:15743540792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246334] [to:19139123328] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784009407] [to:13174809278] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18045036887] [to:+14157127684] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12705067623] [to:+17729797332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156494916] [to:18163850764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+15745667656] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704278506] [to:+19175804432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029525] [to:13523167983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978382] [to:13527898282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17123826183] [to:17123636560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816035268] [to:17138536006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-10 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817019743] [to:15813093013] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-20 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:01 ip-10-0-0-10 mdr: 2016-02-01 11:54:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:01 ip-10-0-64-11 mdr: 2016-02-01 11:54:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393943] [to:15203140944] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163662929] [to:+13064003148] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463634695] [to:+14018677632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542132843] [to:+17542003056] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173833642] [to:+13859851230] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-11 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13866032987] [to:+13866012648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:16196219193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18622187489] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893322474] [to:+18106414119] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423566] [to:12067478504] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085165132] [to:+13476675037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844375] [to:+19709996038] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13374444201] [to:13372965214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477145238] [to:16148323242] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:02 ip-10-0-64-10 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:02 ip-10-0-0-11 mdr: 2016-02-01 11:54:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702889366] [to:+17077507973] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179972097] [to:+13477697190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:16786826753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194369934] [to:+13477691594] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12312996347] [to:12313576617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784030979] [to:12508572363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072217] [to:19194081047] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072217] [to:19194081047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404668841] [to:12402372560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015235] [to:12024989887] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198066935] [to:+14158531348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605251407] [to:+17816138564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-10 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-10 mdr: 2016-02-01 11:54:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142368193] [to:+14144007043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:03 ip-10-0-64-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677088] [to:15704451436] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:03 ip-10-0-0-11 mdr: 2016-02-01 11:54:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163898071] [to:+12898047330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:19015814838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899773] [to:18605083196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475149] [to:15108834702] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405992] [to:12896810376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153269786] [to:15049124037] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15032690424] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638552245] [to:18638777370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783231954] [to:16037023650] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314331732] [to:+16317707889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262436867] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162476276] [to:+12085012509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:16143988147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329492570] [to:+16109101010] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126674] [to:18565007874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:04 ip-10-0-0-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-10 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:04 ip-10-0-64-11 mdr: 2016-02-01 11:54:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178634032] [to:1907] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402049] [to:18134535846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188191030] [to:+13476670104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17327137969] [to:+17322582167] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449068] [to:+17273629381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402049] [to:18134535846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12089967473] [to:+12085157848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087823454] [to:+17605899243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788145] [to:16014551872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:14182918680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468283] [to:13153720394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17137326039] [to:+12677938810] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14154251503] [to:+15103222939] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149296531] [to:+14387921486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12137693399] [to:+12135297502] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187174745] [to:+13866284125] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193796790] [to:+13479788089] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318965233] [to:+19312577960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505900022] [to:+18503293991] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126204828] [to:+15135124116] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248337661] [to:+17248032617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388287178] [to:+14388077826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629491569] [to:+16106999943] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656376204] [to:+14155493967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474213854] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055143583] [to:+14703335067] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747800870] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381790] [to:12768065885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165547569] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202548038] [to:+17205028352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276449068] [to:+17273629381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895820749] [to:+12135296656] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109481131] [to:15055449502] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137689932] [to:+15087884625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148130076] [to:+17736667474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:05 ip-10-0-64-11 mdr: 2016-02-01 11:54:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298337] [to:19372728999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-11 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:05 ip-10-0-0-10 mdr: 2016-02-01 11:54:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614018638] [to:+16612287486] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192965379] [to:+15672057151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108792442] [to:13234399504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024482191] [to:+14318003788] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179181] [to:17346428241] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13017504029] [to:+18572645087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062610] [to:19022120835] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19412642443] [to:19206649347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981896] [to:15138159707] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053929552] [to:+17185044190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699086638] [to:+12692207064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:06 ip-10-0-0-11 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:06 ip-10-0-64-10 mdr: 2016-02-01 11:54:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479653554] [to:+19738147984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016037351] [to:+18046244135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344366646] [to:17347727286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132206950] [to:+18133088610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12025533767] [to:+15203376187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184812872] [to:12053591570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076806461] [to:+14072681672] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146219171] [to:+14506391330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144217] [to:17863171456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272804765] [to:+18506315325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824301] [to:15512252683] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162807] [to:13044215190] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-10 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-11 mdr: 2016-02-01 11:54:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:07 ip-10-0-64-11 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:07 ip-10-0-0-10 mdr: 2016-02-01 11:54:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12092213572] [to:+15204336344] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158908087] [to:12145431529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872989588] [to:+15873154683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040494] [to:14508069548] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19079476537] [to:+14242836010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030986] [to:12027666011] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273084721] [to:+19148988261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342227497] [to:16063591793] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13026697106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177343] [to:12678647643] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025816223] [to:+17027794792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18137209924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199755449] [to:+13122754397] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066639092] [to:+15068041533] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199848347] [to:+17185212271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062737608] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335838] [to:14707289524] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-11 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527239079] [to:+13476677407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847355722] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:08 ip-10-0-0-11 mdr: 2016-02-01 11:54:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:08 ip-10-0-64-10 mdr: 2016-02-01 11:54:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108101988] [to:+14022060621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253685683] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235462165] [to:+16574008563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594863] [to:17788089767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14358301052] [to:+14353391601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17344365403] [to:14048015396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390417] [to:14188174416] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449362] [to:+12138736012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477019474] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18164197261] [to:+16465139617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:16013410056] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045317039] [to:+15103135957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:09 ip-10-0-64-11 mdr: 2016-02-01 11:54:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-10 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:09 ip-10-0-0-11 mdr: 2016-02-01 11:54:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706732374] [to:17063126273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034462954] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477360694] [to:13523254786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853091811] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13134755028] [to:+13479977446] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473032339] [to:+16474946802] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18164197261] [to:+16465139617] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12109544725] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072167992] [to:+19782169348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405036673] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318965233] [to:+19312577960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16198074347] [to:+16574008863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-11 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819108616] [to:+18328041959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-11 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062257983] [to:+12135297705] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15027791121] [to:+12136163423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:10 ip-10-0-64-10 mdr: 2016-02-01 11:54:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:10 ip-10-0-0-10 mdr: 2016-02-01 11:54:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045997016] [to:+19047581198] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407366] [to:18438040986] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572407366] [to:18438040986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804891] [to:18282913606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14507743019] [to:+14388071706] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:15624523541] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046292158] [to:+16572211626] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277053058] [to:13302988265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506130473] [to:+14388076080] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986799] [to:13525735425] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162392344] [to:+13303567604] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129523446] [to:15127753776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573032791] [to:+19176635266] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767449] [to:14193864874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:18286341003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17805236815] [to:+16475039411] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394405] [to:12162131090] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165823536] [to:+16319800398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533986675] [to:+12533289212] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-10 mdr: 2016-02-01 11:54:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15304926705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:11 ip-10-0-64-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:11 ip-10-0-0-11 mdr: 2016-02-01 11:54:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026327408] [to:+13024002648] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068150] [to:13148145700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:12624983041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+14088683465] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-20 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447581405161] [to:+447451200875] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142249236] [to:+18194140051] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025385101] [to:+14158530684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768104] [to:17346809919] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037272863] [to:+16319800625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19096621069] [to:+19092931182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562263332] [to:+14694237806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336604] [to:12144377652] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466696824] [to:+16466876505] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010555] [to:14189972546] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-21 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15123758131] [to:+19715123774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-11 mdr: 2016-02-01 11:54:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:12 ip-10-0-64-11 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235889203] [to:+14155698735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:12 ip-10-0-0-10 mdr: 2016-02-01 11:54:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526196095] [to:+17636849353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047513281] [to:+17786549271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912745] [to:14163339844] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072094015] [to:+14502339380] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17856390625] [to:+12135874901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14088438912] [to:+18316107708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-10 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525489398] [to:+15103228094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17093301425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:13 ip-10-0-0-11 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220200] [to:19147551125] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-11 mdr: 2016-02-01 11:54:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13605569143] [to:+13608607893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:13 ip-10-0-64-10 mdr: 2016-02-01 11:54:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433731110] [to:+19735479870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023993276] [to:+17036466896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706165190] [to:+14049002714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19402495440] [to:18067521634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562263332] [to:+14694237806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046207392] [to:+12132955695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:14196311887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011213541494715] [to:+17279353434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163175700] [to:+12162396694] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690373] [to:13136763495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12762261220] [to:13369849981] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046352] [to:19024739763] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019384336] [to:+19148486483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194158126] [to:19105842678] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179164] [to:15305548064] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474073950] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007043] [to:14142368193] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13137690373] [to:13136763495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18456366025] [to:+19543639904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:14 ip-10-0-0-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044931329] [to:+13477869011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:14 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18028291264] [to:+19148208756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334128] [to:18595750553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:12297983187] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997075] [to:14164181762] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328079] [to:12763852099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046119] [to:19023490021] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-20 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643109348] [to:+17279165346] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823244] [to:17162627375] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562946348] [to:+15817008339] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444603] [to:14126809382] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894449832] [to:+19894020045] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479017974] [to:+12019480175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15312890489] [to:+14029997040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-21 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149296531] [to:+14387921486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955878] [to:17866410456] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093405368] [to:19096765584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:15 ip-10-0-64-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:15702058402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852133] [to:14052150687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-11 mdr: 2016-02-01 11:54:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139352294] [to:18593537177] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:15 ip-10-0-0-10 mdr: 2016-02-01 11:54:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096972550] [to:+17097019103] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639243] [to:18628995941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126809382] [to:+12678444603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13178937286] [to:13177305118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12674441461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16104068032] [to:+17027478258] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372965214] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706181777] [to:+14308088086] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:15192126619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512995853] [to:19518786247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-0-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043458] [to:19022371776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940591] [to:16042170120] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768508] [to:15044955572] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220484] [to:18133126754] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-10 mdr: 2016-02-01 11:54:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237731463] [to:+14237777842] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:16 ip-10-0-64-11 mdr: 2016-02-01 11:54:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15019600774] [to:+16572211789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105991407] [to:+12139354123] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185894756] [to:+14502338307] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108745829] [to:14434608693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472338566] [to:+16474953739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450974] [to:19104092646] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-64-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415309365] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13065004634] [to:13069306628] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-11 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129327924] [to:+13479131354] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600983] [to:12897751866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:12817078895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866284125] [to:13187174745] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-21 mdr: 2016-02-01 11:54:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:17 ip-10-0-0-10 mdr: 2016-02-01 11:54:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13215360473] [to:+13219269322] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506782898] [to:+14506393032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138026780] [to:16062350022] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141435] [to:18192150964] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346809919] [to:+14197768104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963082] [to:17205699818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:18 ip-10-0-64-10 mdr: 2016-02-01 11:54:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164463284] [to:+16163266402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-11 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347108] [to:15125400439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:18 ip-10-0-0-10 mdr: 2016-02-01 11:54:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184804] [to:18169201381] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18077085470] [to:+16474942744] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892001166] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149169769] [to:16039217973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12252288950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199960841] [to:+12262407268] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104043723] [to:+18102218447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+14153227988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654371439] [to:+12135760874] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246995090] [to:+19193072847] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787996610] [to:+19784896162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989652] [to:17194397061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:19 ip-10-0-64-10 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:19 ip-10-0-0-10 mdr: 2016-02-01 11:54:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17869305433] [to:+17866515751] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12042235041] [to:+12048183367] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13045946178] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:13185198743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:15195056879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135046] [to:14806211211] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15138550155] [to:15132030036] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19545195973] [to:18655856600] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794792] [to:17025816223] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:20 ip-10-0-0-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-10 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E20201] -Feb 1 11:54:20 ip-10-0-0-11 mdr: 2016-02-01 11:54:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550701] [to:15133538581] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:20 ip-10-0-64-11 mdr: 2016-02-01 11:54:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388858299] [to:+14388078722] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734101] [to:12569973187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12018397833] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133609907] [to:+16137074544] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026690617] [to:+13019094073] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127051] [to:18013315816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034506395] [to:+18649997003] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029177090] [to:+17048994909] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132927510] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371708] [to:12253855496] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392185872] [to:+17864107079] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20202] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026090142] [to:13018048198] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864545158] [to:+17702005170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594369545] [to:+14158536821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164190] [to:16467175982] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354428] [to:14124037991] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997370] [to:12896818125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-10 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:21 ip-10-0-64-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:21 ip-10-0-0-11 mdr: 2016-02-01 11:54:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026449163] [to:+15022083510] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624874] [to:12096665055] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624874] [to:12096665055] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736831497] [to:+12137978349] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195279700] [to:+19193240575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677579874] [to:14133020569] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182285839] [to:+13479976357] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109138235] [to:+14433453887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:14125202212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046119] [to:19023490021] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034397481] [to:+17077236567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865870820] [to:+19548379923] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353588] [to:18134181381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377187793] [to:+15108538047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:22 ip-10-0-0-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:22 ip-10-0-64-11 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674444050] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19545313866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:14792564065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058224852] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843979247] [to:14844260438] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14843979247] [to:14844260438] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894702] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802092331] [to:19803181549] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991491] [to:14439831344] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973415] [to:15705071536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863171456] [to:+19543144217] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12067478504] [to:+12536423566] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169267381] [to:18044955528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361378] [to:12762987718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18108528597] [to:15864192323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429565] [to:15042512006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309312] [to:12404470102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232158220] [to:+15612408365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733182] [to:17065646385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-10 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:23 ip-10-0-0-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:23 ip-10-0-64-11 mdr: 2016-02-01 11:54:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19152457507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135051484] [to:+17866079308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125300624] [to:+13476677518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398222453] [to:+17864804623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493258] [to:18633323767] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318843162] [to:+12315987439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065739527] [to:+17625859151] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15594160051] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525650] [to:17173164181] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368752101] [to:+13364500488] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736258] [to:14134046199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-20 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451211332] [to:+447432011735] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161867] [to:15138335098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302861] [to:15168088035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124728822] [to:+17605897755] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-11 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:24 ip-10-0-64-10 mdr: 2016-02-01 11:54:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16125599682] [to:+16129305847] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:24 ip-10-0-0-10 mdr: 2016-02-01 11:54:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15135124116] [to:18126204828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794152] [to:17027724063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13217477363] [to:+13025958421] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369200] [to:12539616204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14022060621] [to:16108101988] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725348798] [to:12145978670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12606245272] [to:+12606355355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239126] [to:17204160576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028131167] [to:+14434530407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282156581] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-20 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003940301] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-20 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003940302] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169302126] [to:+17162793442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17868594721] [to:+17864801591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149787374] [to:+14387928127] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14109051246] [to:+14437201492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474952355] [to:16476571810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17199637056] [to:+12137978857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-10 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783341905] [to:+12138029590] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137181144] [to:+18458181239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:25 ip-10-0-64-11 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-10 mdr: 2016-02-01 11:54:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609419] [to:12023512698] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:25 ip-10-0-0-11 mdr: 2016-02-01 11:54:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362597906] [to:+17278600141] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145319626] [to:+18572329854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396183] [to:18003043107] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370781] [to:13309848559] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246815626] [to:+14122301956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340501] [to:14345473564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483185543] [to:+12483282284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:16316185618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15207278696] [to:17406491675] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-10 mdr: 2016-02-01 11:54:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155696832] [to:+13478020093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:26 ip-10-0-0-11 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786985811] [to:+16784338556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:26 ip-10-0-64-10 mdr: 2016-02-01 11:54:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12107879729] [to:+15129524199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485870] [to:18502106965] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043522178] [to:+14049001429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606271414] [to:+13476675154] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318965233] [to:+19312577960] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028184076] [to:+19027021926] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525675183] [to:+12133756943] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479218136] [to:13022938908] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797026] [to:15402064151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155400072] [to:+12626482538] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:18484699172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-21 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447929774329] [to:+447451233638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003940303] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004325] [to:14146409318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836143] [to:12673779741] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:19787671171] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158240] [to:19703160307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:27 ip-10-0-64-10 mdr: 2016-02-01 11:54:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997370] [to:12896818125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:27 ip-10-0-0-10 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722607734] [to:+15617664206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245367432] [to:+13108814826] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155731049] [to:+16156147432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167238819] [to:15168068113] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186833581] [to:+18572400584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475446554] [to:+16474941995] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833701] [to:14093381069] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402887732] [to:+14439737312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155449114] [to:+12627778189] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:16476876387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0118801749701527] [to:+19018422553] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051002] [to:19035306969] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138592] [to:12049798739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187174745] [to:+13866284125] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17198213556] [to:+17205996253] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-10 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-20 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447577995319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-64-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192110] [to:18643373010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:28 ip-10-0-0-11 mdr: 2016-02-01 11:54:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194156567] [to:19194408770] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777057] [to:14194900705] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059628990] [to:+12892756995] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126896589] [to:+14122301310] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095323322] [to:+16095434556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293083646] [to:+13072137532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003890201] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500034B0201] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17405036673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500034B0202] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524096564] [to:+13217308951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154683] [to:15872989588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315714301] [to:+12313778398] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13145610064] [to:+18722258796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169830791] [to:+19783649740] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185894756] [to:+14502338307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690284] [to:12892741885] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19188518008] [to:+17249939181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14406222657] [to:+14403594754] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816034232] [to:18322315345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:29 ip-10-0-0-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-10 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293083646] [to:+13072137532] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003890202] -Feb 1 11:54:29 ip-10-0-0-10 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:29 ip-10-0-64-11 mdr: 2016-02-01 11:54:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19897804417] [to:+19894557029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052450] [to:19039268925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912745] [to:14163339844] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845772851] [to:17576472297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336962] [to:14077323175] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15715023583] [to:+15713273942] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068030027] [to:15066540306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724003928] [to:17793020334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049080529] [to:+14844893346] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073393803] [to:+17074033497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184804] [to:18169201381] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19014685475] [to:+19014445145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593961382] [to:+12138063687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418429] [to:17702867403] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735985] [to:16788154111] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025808454] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288686] [to:15206687386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036437] [to:17096400987] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812741] [to:12405007005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196358249] [to:+12132950379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199164190] [to:16467175982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193073704] [to:18196686132] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607014069] [to:14137689670] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327491516] [to:19568987036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862580] [to:12708508473] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074320495] [to:+16034132213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-10 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107777309] [to:+12135874391] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:30 ip-10-0-64-11 mdr: 2016-02-01 11:54:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790662] [to:17162884950] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:30 ip-10-0-0-10 mdr: 2016-02-01 11:54:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479757329] [to:+16304893470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715463] [to:14138835916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444581] [to:13179932347] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953721] [to:13139578555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068008649] [to:+15068039662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500031F0201] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571738] [to:15053852047] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232337] [to:14127356792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19415656265] [to:+17126428292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367444133] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056020225] [to:+18053666729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512371857] [to:+12132955682] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126809382] [to:+12678444603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145735165] [to:+19414173077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802093233] [to:15402572247] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948230] [to:17343955970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15307188470] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249686501] [to:+19705481416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-0-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162581989] [to:+12264551200] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790961] [to:17169069455] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981896] [to:15138159707] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:16474073950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-11 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:31 ip-10-0-64-10 mdr: 2016-02-01 11:54:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17055714543] [to:+17053006015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500033F0201] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14787183623] [to:+18572329562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138097] [to:15148350490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522870123] [to:+13479377262] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088849964] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500031F0202] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045166203] [to:+16784348279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079513644] [to:+15873277839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500033F0202] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782442634] [to:+14706733898] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572192819] [to:13367697377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16306491189] [to:+17736667534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893355086] [to:+19894020050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782861539] [to:+15614916182] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17743570393] [to:19018302409] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193864874] [to:+14197767449] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151509] [to:18026730565] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-11 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137046470] [to:+14197767721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182558101] [to:593998294776] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:32 ip-10-0-64-10 mdr: 2016-02-01 11:54:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:32 ip-10-0-0-10 mdr: 2016-02-01 11:54:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141731] [to:18192663240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-21 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451233981] [to:+447940715468] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008804] [to:15062928558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046946451] [to:19044363828] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14032008283] [to:+15873280484] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587756] [to:15138074764] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+14153227988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039902] [to:15065435714] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095569243] [to:+17604746243] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969307] [to:12055853926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228825] [to:+12262414729] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031653] [to:19027542344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15126501234] [to:+13479319363] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191080] [to:14199302036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-10 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12154363546] [to:+12138026906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:33 ip-10-0-64-11 mdr: 2016-02-01 11:54:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:33 ip-10-0-0-10 mdr: 2016-02-01 11:54:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544262] [to:17173332002] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033610521] [to:+13478966271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18679880102] [to:14168233550] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220124] [to:17574022766] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705943996] [to:+15703974172] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12253685683] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-21 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228825] [to:+12262414729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:34 ip-10-0-64-10 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173192766] [to:+17746138554] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:34 ip-10-0-0-11 mdr: 2016-02-01 11:54:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206365] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472294417] [to:+16474937887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14104305046] [to:+13015699673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304817271] [to:+13302370835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001438] [to:12498772408] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19283776421] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-10 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564187365] [to:+18563125321] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-64-10 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056137113] [to:+19732985467] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874003153] [to:15875909565] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:35 ip-10-0-0-11 mdr: 2016-02-01 11:54:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073007799] [to:12106063310] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564187365] [to:+18563125321] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:13476337912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12568542389] [to:+19149089080] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168565542] [to:+13479978984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862223610] [to:+15865748339] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186500115] [to:15188926719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037909] [to:18147622621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072710226] [to:+12816433324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388079503] [to:15148356864] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16168565542] [to:+13479978984] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991960] [to:18432742157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19712721884] [to:+19715121798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16184437332] [to:+18722259054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157962265] [to:+12677533806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15594160051] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874704] [to:17655064143] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029717] [to:15069200013] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508218813] [to:+15799000798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570155] [to:15197197743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:36 ip-10-0-0-10 mdr: 2016-02-01 11:54:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137767] [to:13375166600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:36 ip-10-0-64-11 mdr: 2016-02-01 11:54:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525148715] [to:+19172720848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348058162012] [to:+15874006157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031C0201] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031505] [to:12294602587] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024739763] [to:+19027046352] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639243] [to:18155492152] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679829985] [to:+12676860698] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164489431] [to:+15169260170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413916205] [to:+15412488820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027609712] [to:+12029991594] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151509] [to:18026730565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500039F0201] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133555402] [to:+16139096988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628377] [to:19786881955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195048081] [to:+16412432465] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886799] [to:+19149798145] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:37 ip-10-0-0-11 mdr: 2016-02-01 11:54:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672287800] [to:+12155961015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:37 ip-10-0-64-10 mdr: 2016-02-01 11:54:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16196219193] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088602] [to:12673530753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475037910] [to:14165547569] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053312810] [to:+17059102326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-21 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451200875] [to:+447581405161] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-20 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447763356061] [to:+447520627250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948145] [to:16169029169] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18703216242] [to:+16466999825] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142794572] [to:17759976086] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306212674] [to:+12342315752] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475501848] [to:+13437001972] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122953105] [to:+14122302146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:38 ip-10-0-0-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376214096] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-11 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:38 ip-10-0-64-10 mdr: 2016-02-01 11:54:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742842961] [to:+13479067271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282977004] [to:16235563496] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095788140] [to:+16612705414] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348058162012] [to:+15874006157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500031C0202] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144106] [to:18038257445] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477424349] [to:16475304370] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512237918] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477146459] [to:14234897157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134302419] [to:18135625054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16025385101] [to:+14158530684] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12398519696] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783681924] [to:+12133756938] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039991717] [to:+19298411171] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403579902] [to:+17409102301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863924] [to:16469421894] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151548] [to:15185728781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029946822] [to:+17607013424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089468710] [to:14042687887] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-10 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:39 ip-10-0-0-11 mdr: 2016-02-01 11:54:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18598038784] [to:+14242395946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:39 ip-10-0-64-11 mdr: 2016-02-01 11:54:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500039F0202] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17097433788] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:18609978853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-20 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320352] [to:+447946591836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-20 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418320352] [to:+447946591836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13374968827] [to:+19364173977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056046941] [to:+15054445960] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612100957] [to:+17277679122] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477981673] [to:15182250160] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16158851362] [to:+14153260100] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19259574242] [to:13045797941] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800164] [to:13169900153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473785] [to:16155713299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401227] [to:17162809475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572402049] [to:18134535846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036690562] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14806691429] [to:+19512281313] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-10 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414511147] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-10 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:40 ip-10-0-64-11 mdr: 2016-02-01 11:54:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:40 ip-10-0-0-11 mdr: 2016-02-01 11:54:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162392344] [to:+13303567604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669884] [to:18646067297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162392344] [to:+13303567604] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045239] [to:16478646909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354428] [to:14124037991] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234865874] [to:12673537407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155698735] [to:14235889203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177067649] [to:16178512983] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019184905] [to:16068312971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328595137] [to:+17133099109] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844893346] [to:18049080529] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362539856] [to:+13364500488] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16174339158] [to:16172407331] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18039784394] [to:18432441561] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13392305375] [to:15082984960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526529] [to:13309075668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436801726] [to:+14152377126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-0-11 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324913029] [to:+18639491238] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-11 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13046693616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12196541941] [to:+13057350441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:41 ip-10-0-64-10 mdr: 2016-02-01 11:54:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18137859522] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19792188086] [to:+18324103005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671284] [to:12299770399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047813665] [to:+14049001721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774681] [to:17328090586] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13368752101] [to:+13364500488] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139185112] [to:+13476677301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-21 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194900705] [to:+14198777057] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299390443] [to:+12136163363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995566] [to:12706011833] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001438] [to:12498772408] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043600014] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-10 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19034616860] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:42 ip-10-0-0-10 mdr: 2016-02-01 11:54:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:42 ip-10-0-64-11 mdr: 2016-02-01 11:54:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994988] [to:15072131325] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14025001629] [to:16788017982] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146579381] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372544] [to:19109757731] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372544] [to:19109757731] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219993852] [to:16842585482] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269943] [to:16166387097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437588083] [to:+13479130028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039915] [to:16132655801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-10 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437205620] [to:14439737568] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-10 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477791548] [to:+16474989742] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474946570] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-11 mdr: 2016-02-01 11:54:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:43 ip-10-0-64-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788158272] [to:+14049004024] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:43 ip-10-0-0-11 mdr: 2016-02-01 11:54:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406180377] [to:+17407853067] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134418813] [to:+14136854992] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476530] [to:17029815682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030F0202] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500030F0201] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997003] [to:18034506395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-20 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16627521870] [to:+14027694379] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334217] [to:17064610694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789493238] [to:+14043900800] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18157864769] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243442] [to:18044411769] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17196290791] [to:17199637914] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348283] [to:15202738872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:15594160051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012379679] [to:+12405732118] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477997370] [to:12896818125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024739763] [to:+19027046352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995575] [to:18646435212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536422764] [to:13608104225] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-10 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-11 mdr: 2016-02-01 11:54:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:44 ip-10-0-64-11 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:44 ip-10-0-0-10 mdr: 2016-02-01 11:54:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14694351876] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015327319] [to:+14437205727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136762523] [to:+18327774567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405507] [to:13056809826] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185308821] [to:+13478083047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477361378] [to:12762987718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040318] [to:+15103403172] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950013] [to:16472968765] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605895876] [to:12037100662] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158008854] [to:+19292209653] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19034616860] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725254334] [to:14692003207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370642] [to:18287883012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-10 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14018677601] [to:14015852254] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:45 ip-10-0-64-10 mdr: 2016-02-01 11:54:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13867959387] [to:+15103405091] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:45 ip-10-0-0-11 mdr: 2016-02-01 11:54:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000622] [to:17097437806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17089612911] [to:15408173923] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179844885] [to:+14844893191] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533369547] [to:13306518334] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143505483] [to:+17142153047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859444917] [to:+15852823886] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743472] [to:16789015405] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228134] [to:17243014963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13023993500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:17314991485] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637858] [to:17204256319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477132406] [to:+13478303293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089017331] [to:+19175808856] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953739] [to:16472338566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197768104] [to:17346809919] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196617102] [to:+13437001426] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:12263485291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12898045239] [to:16478646909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893833349] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008196] [to:16023730391] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505171442] [to:+19047587115] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363409674] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13395459601] [to:18282801625] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862178747] [to:+13052038708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427731] [to:13604864958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018014183] [to:+19018428106] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-10 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028567] [to:+12267982318] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-64-11 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:46 ip-10-0-0-10 mdr: 2016-02-01 11:54:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892001166] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107258875] [to:+16177065562] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312419607] [to:+19312577530] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162300139] [to:+19712611143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002648] [to:13026327408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-21 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154423] [to:+16319800609] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16412514599] [to:+16413908298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632347777] [to:+18637347510] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018014183] [to:+19018428106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:47 ip-10-0-64-10 mdr: 2016-02-01 11:54:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:47 ip-10-0-0-11 mdr: 2016-02-01 11:54:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175797584] [to:+13476675405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010106] [to:13205237496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19179325749] [to:+17185044003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17092172842] [to:+12048172566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536422764] [to:13608104225] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19402611193] [to:+19404638531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048033459] [to:+16042651839] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173371316] [to:+17185043734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476675715] [to:13852108132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200259] [to:16787538120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733770] [to:14783572402] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732003] [to:16313554367] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664206] [to:17722607734] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888277] [to:18432679828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-11 mdr: 2016-02-01 11:54:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-0-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19018014183] [to:+19018428106] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-10 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022755125] [to:+15088343288] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:48 ip-10-0-64-11 mdr: 2016-02-01 11:54:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19289234769] [to:+19282976024] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755891] [to:17154172359] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035537324] [to:+14703335894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478968897] [to:17183081070] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743987440] [to:+17604745441] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19726249010] [to:+14696725966] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14047889224] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864802313] [to:17863623893] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479870] [to:18433731110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886397] [to:14406628107] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604215988] [to:16199469176] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089738179] [to:+19172668408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197640] [to:19123194520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732003] [to:16313554367] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334567] [to:17873887208] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423493] [to:19158502266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515266] [to:12392468252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-11 mdr: 2016-02-01 11:54:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058301543] [to:+17279987054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:49 ip-10-0-64-10 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:49 ip-10-0-0-11 mdr: 2016-02-01 11:54:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479805870] [to:13109718122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774175] [to:13472808490] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734190] [to:14047719371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085026837] [to:+19088425188] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305654] [to:+15412488228] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:15195056879] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17875647541] [to:+18133206367] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046790739] [to:+12048132601] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19087232613] [to:+13059014525] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078735220] [to:+13219998276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14107258875] [to:+16177065562] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019277] [to:17784015340] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168226959] [to:+15068009288] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533806] [to:12157962265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737154084] [to:+18724449567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248337661] [to:+17248032617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163203924] [to:+15873272412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14387643323] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412955595] [to:+15412488540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-11 mdr: 2016-02-01 11:54:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:50 ip-10-0-64-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134547901] [to:13175124133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:50 ip-10-0-0-10 mdr: 2016-02-01 11:54:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335894] [to:19128447737] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018976] [to:19152580796] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822452] [to:17165603377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774175] [to:13472808490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692351114] [to:+12694611268] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107331523] [to:+12139298798] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063992968] [to:+16516664751] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737273517] [to:+14242866448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16176429105] [to:+16178634604] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16692252597] [to:15706406741] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-10 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:15023875985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:51 ip-10-0-64-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900139] [to:14043265508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:51 ip-10-0-0-11 mdr: 2016-02-01 11:54:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12522870123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632412060] [to:+18639493274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193628863] [to:16196211024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528951203] [to:+13478961564] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078806798] [to:+17073464562] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868439] [to:13189348307] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699673] [to:14104305046] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475960450] [to:+17325274461] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328579305] [to:+19513070656] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097006] [to:16137610146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493967] [to:17656376204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649065] [to:15673189728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406491675] [to:+15207278696] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13364864294] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477171843] [to:+16475037670] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528951203] [to:+13478961564] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027026814] [to:+13019179939] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146257539] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479481] [to:18455703692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-10 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842745746] [to:+18623082152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:52 ip-10-0-64-11 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:52 ip-10-0-0-20 mdr: 2016-02-01 11:54:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447432665580] [to:+447520622789] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674862816] [to:16108095698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179626054] [to:+15862488047] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13022418145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259054] [to:16184437332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:16025090085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392906019] [to:+12134017229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486367] [to:18288178227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:14352332191] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198067490] [to:+12262410233] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951736] [to:16479074537] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265821885] [to:+16477992839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951736] [to:16479074537] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479686] [to:13476593122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610859] [to:19178643638] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407577] [to:15614600754] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:15166593612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-11 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435409863] [to:+18438720710] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-11 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:53 ip-10-0-64-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:53 ip-10-0-0-10 mdr: 2016-02-01 11:54:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838423] [to:15107768053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783028762] [to:+17278602949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108838423] [to:15107768053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282012763] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132004289] [to:+19148818316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19287812820] [to:+17736690633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140051] [to:15142249236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817739286] [to:+18326509659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142489187] [to:+17185042242] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064694596] [to:+15874005777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13179932347] [to:+13176444581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18103364651] [to:+18103393252] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706270021] [to:+17605896539] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018907412] [to:13852497736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:54 ip-10-0-0-11 mdr: 2016-02-01 11:54:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:54 ip-10-0-64-11 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402212336] [to:+17408796733] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248514] [to:19294221202] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324913029] [to:+18639491238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629020396] [to:19734184458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016017405] [to:+15084168729] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132403449] [to:+18194140964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405041190] [to:+17408797591] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192228980] [to:+12262410722] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426900] [to:19014513437] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136063] [to:19033303468] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024000176] [to:14108104361] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302179005] [to:+13302374642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185089429] [to:+15817040417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19144792334] [to:+19529778850] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403570149] [to:+17408798133] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263479304] [to:+12262407966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564057439] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15752242379] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048942036] [to:+12048138592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162882576] [to:+17166661183] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183275415] [to:+19172834396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14024803969] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842019790] [to:+14388095324] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045053305] [to:+13219993439] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035606373] [to:+15873322839] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076598572] [to:+14158907499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18479757329] [to:+16304893470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038579248] [to:+19715129905] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19794366918] [to:+19794265598] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407274266] [to:+17409101877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036232163] [to:+13478083006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076598572] [to:+14158907499] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17655064143] [to:+12135874704] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14788411616] [to:+13478303915] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025449802] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893321217] [to:+13473897188] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016017405] [to:+15084168729] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18129897737] [to:+18126709094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023593144] [to:+16162390214] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199015115] [to:+13364500702] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216465] [to:18324700747] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18647049893] [to:+16783941438] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16416805776] [to:+16418437934] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063105974] [to:+16465641141] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049056909] [to:+17047505772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-64-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-20 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447788212505] [to:+447418338332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003630202] -Feb 1 11:54:55 ip-10-0-64-11 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-11 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:16035661725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097332755] [to:+19092932432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547083410] [to:+19543144206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096075278] [to:+15096519264] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574022766] [to:+17542220124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:55 ip-10-0-0-10 mdr: 2016-02-01 11:54:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036191946] [to:+15873323464] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277679122] [to:16612100957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842745746] [to:+18623082152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037963] [to:16074277611] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195930514] [to:+18193039778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185308821] [to:+13478083047] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609978853] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734627799] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010240] [to:12524699137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504523] [to:13232417495] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134783496] [to:12538024566] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423648] [to:14063578054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243014963] [to:+16149228134] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438144322] [to:+12135874232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043224217] [to:+13479971776] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14197223799] [to:+14197316149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198430883] [to:14193075169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:56 ip-10-0-64-11 mdr: 2016-02-01 11:54:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:56 ip-10-0-0-10 mdr: 2016-02-01 11:54:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862858290] [to:+13059014057] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713273942] [to:15715023583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094587752] [to:+13312087203] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19123397935] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026975] [to:17056502760] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575098255] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123636560] [to:+17123826183] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612705414] [to:19095788140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615432301] [to:+19172668748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-10 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062611259] [to:+13069929302] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-11 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:57 ip-10-0-64-11 mdr: 2016-02-01 11:54:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:57 ip-10-0-0-10 mdr: 2016-02-01 11:54:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024351842] [to:+14156918952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19032039362] [to:+18175921246] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042831027] [to:+19178093952] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408797644] [to:17403198857] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039921] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835843] [to:13158366781] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096296] [to:18193607677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646345250] [to:+17727740656] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163190023] [to:16162942798] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498772408] [to:+17053001438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767337157] [to:+13479801578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15624805634] [to:+12486393254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135957] [to:13045317039] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-10 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069770694] [to:+15068041919] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187036] [to:12105191443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074480876] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:58 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743512] [to:13139262959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-11 mdr: 2016-02-01 11:54:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644019526] [to:+17604749144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:58 ip-10-0-64-10 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833701] [to:14097249939] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985245] [to:19738889695] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163203924] [to:+15873272412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985245] [to:19738889695] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985245] [to:19738889695] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133081384] [to:16149724698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032713525] [to:+15129527822] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046681817] [to:+14043412747] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785700121] [to:+19172592879] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009664] [to:13472286480] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:14383464988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15152301148] [to:+15614916668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185728781] [to:+15184151548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-10 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149089080] [to:12568542389] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789144710] [to:+13479193437] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-10 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062345670] [to:+17073007351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:54:59 ip-10-0-64-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:54:59 ip-10-0-0-11 mdr: 2016-02-01 11:54:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164051759] [to:+19149027453] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082913] [to:13082332373] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159458403] [to:+12139926409] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15207882230] [to:+16236664648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045704302] [to:+18046650539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14437591538] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-20 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159458403] [to:+12139926409] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046547848] [to:+13476674011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533289212] [to:12533986675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425810] [to:13869837924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593587700] [to:+16467389396] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381140] [to:17049634700] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159458403] [to:+12139926409] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786990] [to:13015731038] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072218527] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572329854] [to:16145319626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-11 mdr: 2016-02-01 11:55:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12567014245] [to:+12628005452] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-20 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-11 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:00 ip-10-0-64-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317705380] [to:16317667449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:00 ip-10-0-0-10 mdr: 2016-02-01 11:55:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411507] [to:12036429642] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988918] [to:17176599000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610859] [to:19172502531] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15737198808] [to:+12135596348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407945] [to:14192311446] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163812390] [to:+17162793134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900637] [to:18048882222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600674] [to:12396035622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476677301] [to:13139185112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142904349] [to:+17408796865] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053949556] [to:+12894601909] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156310534] [to:+19318968162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:01 ip-10-0-64-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388096296] [to:18193607677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474922502] [to:+16477994787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132444147] [to:+15865747278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:01 ip-10-0-0-10 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953406] [to:14189554499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953406] [to:14189554499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157878286] [to:15022298037] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017571004] [to:+14243361810] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-10 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-10 mdr: 2016-02-01 11:55:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523676321] [to:+12136946581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:02 ip-10-0-0-11 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910501] [to:12605795229] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:02 ip-10-0-64-10 mdr: 2016-02-01 11:55:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15128621361] [to:15709264602] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:12038079073] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085385] [to:13042100651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436812741] [to:12405007005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555781] [to:16477721187] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839639] [to:19105384960] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062083] [to:16467031838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415309365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:13059785955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16305994982] [to:16302583787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542164573] [to:+18572191863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13062211546] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518334] [to:+12533369547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:03 ip-10-0-0-10 mdr: 2016-02-01 11:55:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18053773263] [to:+18053666572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:03 ip-10-0-64-11 mdr: 2016-02-01 11:55:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084601] [to:16093049057] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375853] [to:13138264243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-21 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703452513] [to:+12139359332] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:19372603770] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248034671] [to:17243328547] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043002470] [to:+18046245528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13017786990] [to:13015731038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053001788] [to:16476203683] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708401878] [to:+15703973427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043493225] [to:+19047587899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-11 mdr: 2016-02-01 11:55:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467175982] [to:+19199164190] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:04 ip-10-0-64-10 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502333801] [to:18194313155] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:04 ip-10-0-0-11 mdr: 2016-02-01 11:55:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15082984960] [to:+13392305375] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096400987] [to:+15068036437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189627326] [to:16073424038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132807250] [to:+15612404875] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500030D0201] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155493961] [to:18438774285] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243162] [to:18047670963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026772759] [to:+14242842803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049665799] [to:+13052037931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038235022] [to:+13475088486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069200013] [to:+15068029717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856890672] [to:+15852825016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-11 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014094] [to:13177906180] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14199755449] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:05 ip-10-0-0-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998151] [to:12527147304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-10 mdr: 2016-02-01 11:55:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815702] [to:13373315833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:05 ip-10-0-64-11 mdr: 2016-02-01 11:55:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649997796] [to:18644919517] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692091576] [to:+16694002307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067129] [to:13213170858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13019094337] [to:12405439372] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13162021994] [to:+18458181060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814674363] [to:+18322464246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309805] [to:13219462118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14025948991] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003270302] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145695763] [to:+16465470434] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095487371] [to:+16784338417] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003270303] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232152365] [to:+14152377880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148927516] [to:+14388072636] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18594942384] [to:+18597777342] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12674444050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863498102] [to:+17864801399] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13127351553] [to:+18477561860] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703672429] [to:+16789495653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341331] [to:15415905648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159544237] [to:+12674140824] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-10 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661361] [to:15173669382] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542164573] [to:+18572191863] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:06 ip-10-0-64-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463490232] [to:12055633393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-11 mdr: 2016-02-01 11:55:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:06 ip-10-0-0-10 mdr: 2016-02-01 11:55:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14032008283] [to:+15873280484] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437818273] [to:+13473439820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158907294] [to:13023638165] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19092932432] [to:19097332755] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018235] [to:13865034091] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243499485] [to:+15209996955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737287] [to:15742022395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364804] [to:+13203075233] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132807250] [to:+15612404875] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500030D0202] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376228530] [to:+17604747396] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853869261] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434802838] [to:+17189629961] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-10 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847979249] [to:+14842522504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145855378] [to:+19177374766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-10 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:07 ip-10-0-0-11 mdr: 2016-02-01 11:55:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656376204] [to:+14155493967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:07 ip-10-0-64-11 mdr: 2016-02-01 11:55:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13134711779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146419750] [to:+18328044662] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412090] [to:15195502740] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17046894702] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139927018] [to:12403544403] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370803] [to:19124258290] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162809475] [to:+18572401227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089540211] [to:+14426007629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476908618] [to:14842747005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732003] [to:16313554367] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202896] [to:14438398787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029561277] [to:+19027043619] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803949309] [to:+16474937035] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797563] [to:16097092146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:16036748012] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903385] [to:18016873271] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:08 ip-10-0-0-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-10 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154605476] [to:+13476677996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:08 ip-10-0-64-11 mdr: 2016-02-01 11:55:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17325274461] [to:16786826753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377126] [to:18436801726] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485062878] [to:+14357764214] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837899] [to:19106357939] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702867403] [to:+19298418429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478677617] [to:+13479749363] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308951] [to:13524096564] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192723018] [to:+15172586355] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15102556306] [to:+13853361901] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266481] [to:15672424117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564054304] [to:+17726179181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715121338] [to:19199203570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048088839] [to:12044500524] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027031604] [to:17094545228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692695981] [to:+19715128808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-11 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672506106] [to:14194807138] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-10 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:09 ip-10-0-0-11 mdr: 2016-02-01 11:55:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:09 ip-10-0-64-10 mdr: 2016-02-01 11:55:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:19736870717] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197197743] [to:+12264570155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048842] [to:18604622066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751838] [to:+18126709104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609497] [to:12026579174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17037316668] [to:+18572327502] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593541] [to:14345790411] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0112348058162012] [to:+15874006157] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962864] [to:17036222795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068009288] [to:14168226959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15099895547] [to:+15092828506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039902] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046171335] [to:+16474955528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163891] [to:13049210733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052205964] [to:+12262416114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020294] [to:19892056932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140964] [to:16132403449] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043002470] [to:+18046245528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14036690562] [to:+15874049912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14349421329] [to:+18046245734] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12092320646] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-11 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:10 ip-10-0-0-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866284125] [to:13187174745] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:10 ip-10-0-64-10 mdr: 2016-02-01 11:55:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358113] [to:13304669261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18102218447] [to:18104043723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751580] [to:19184309525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073419740] [to:12702141311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177370164] [to:12566903190] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437602887] [to:+12135878944] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027893605] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163363] [to:12299390443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604078380] [to:+12604076707] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802086773] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068717311] [to:+12138739349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15413257888] [to:12672058365] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16264604031] [to:18184425364] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063156654] [to:+13476672104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548592] [to:16174138533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192121344] [to:+14197767486] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562881299] [to:+18569550282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158535082] [to:16622957420] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-10 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14096833679] [to:14096564857] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535381] [to:17732207153] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16209605604] [to:+14242835718] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:11 ip-10-0-0-11 mdr: 2016-02-01 11:55:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535381] [to:17732207153] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:11 ip-10-0-64-11 mdr: 2016-02-01 11:55:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16782580020] [to:+14706731194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449156] [to:+17727747348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17343955970] [to:+16167948230] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236151234] [to:+19175804241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19714447921] [to:15415305939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408173923] [to:+17089612911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-20 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328642] [to:+447853378335] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142904349] [to:+17408796865] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966271] [to:12033610521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190842] [to:14847976112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15748578975] [to:12696154394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13059014094] [to:13177906180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237590106] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235889203] [to:+14155698735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:12 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132807250] [to:+15612404875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:12 ip-10-0-64-11 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374348] [to:13306801487] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898357] [to:12038079073] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977228] [to:15702445755] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19788209247] [to:16617790645] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:15023875985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066086618] [to:+15068045309] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-20 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447919970510] [to:+447418333947] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263162814] [to:+12262436867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134616] [to:+15799770358] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785656383] [to:+12132952449] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17056266855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525428] [to:12159392702] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162394593] [to:12167386973] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515544632] [to:+19542718559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129527822] [to:18032713525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16187078427] [to:+13476969040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095331] [to:15149958668] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162332] [to:19196416348] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:13 ip-10-0-0-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609978853] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-11 mdr: 2016-02-01 11:55:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:13 ip-10-0-64-10 mdr: 2016-02-01 11:55:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364554] [to:+12243104359] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530244] [to:12563384497] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476969308] [to:15738372782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403815129] [to:+13012311295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718062] [to:14846640033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-21 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187036] [to:12105191443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-11 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:14 ip-10-0-64-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:14 ip-10-0-0-10 mdr: 2016-02-01 11:55:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139095] [to:16623749045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406463037] [to:+15109480320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862337079] [to:+13867422374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16177355446] [to:+16178634327] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374642] [to:13302179005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472320748] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064926] [to:17039947119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167047470] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058512] [to:19029211556] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542543076] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175124133] [to:+12134547901] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309708879] [to:15673039071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12488347563] [to:12562889006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143107750] [to:+19039005820] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165845387] [to:14028803315] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477349422] [to:+17636560158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033895920] [to:+16474951782] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:15 ip-10-0-64-11 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196303050] [to:+19199161012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:15 ip-10-0-0-10 mdr: 2016-02-01 11:55:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302839] [to:14128774139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725866] [to:15865676677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12144912552] [to:+14692058705] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796183] [to:17408011044] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12155961015] [to:12672287800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158366781] [to:+19172835843] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084939294] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883765] [to:15305927629] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883765] [to:15305927629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605800299] [to:+18572400493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18192785157] [to:+14692055000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064220] [to:19123816387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403726530] [to:+12026609910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804743] [to:14026208452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:16 ip-10-0-0-11 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14043600014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844797659] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-11 mdr: 2016-02-01 11:55:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148940625] [to:+15817003075] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:16 ip-10-0-64-10 mdr: 2016-02-01 11:55:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691249] [to:13159452012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196470] [to:12297980966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695895918] [to:+12485375646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306919781] [to:+14155945408] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018655] [to:15872010645] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863623893] [to:+17864802313] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899243] [to:18087823454] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196303050] [to:+19199161012] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126254] [to:12017136786] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147163] [to:19893591804] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:15879661413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:15879661413] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148252747] [to:17577273845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-10 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-0-11 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-10 mdr: 2016-02-01 11:55:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026327408] [to:+13024002648] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:17 ip-10-0-64-11 mdr: 2016-02-01 11:55:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:0500039F0201] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148150970] [to:15133707355] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035370197] [to:+15103227615] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155731049] [to:+16156147432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488394] [to:15414184495] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:1843096169] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603287] [to:19063228266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283200547] [to:+13366452487] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500039F0202] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134789862] [to:15592747030] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715129863] [to:15415107858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044887751] [to:+14049004131] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862793926] [to:+13214063870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-11 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178616251] [to:+15863315693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138097] [to:15148350490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14438252749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725178] [to:18108450471] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:18 ip-10-0-64-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725178] [to:18108450471] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:18 ip-10-0-0-10 mdr: 2016-02-01 11:55:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779550] [to:13309490609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12676945386] [to:+12677988803] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055739708] [to:+15054446938] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405348527] [to:+17278197313] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:16019943396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066396263] [to:+15068039670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702051038] [to:13167655106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459702] [to:19374891405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525650] [to:17175214401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316244] [to:14192706072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990556] [to:12163966733] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13603138930] [to:19417132944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746243] [to:16095569243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048045910] [to:+16789495759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107725178] [to:18108450471] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661926] [to:14435296099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165197687] [to:15165920131] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15166593612] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:19 ip-10-0-0-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652409541] [to:+18572400870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:19 ip-10-0-64-11 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228823] [to:16143778052] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077541395] [to:+13477962452] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018499048] [to:18017927627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074031864] [to:18632296808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708268341] [to:+13479190757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026772759] [to:+14242842803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15206311287] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056328982] [to:+13218328096] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287021780] [to:+18285486155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:19313371219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046620733] [to:+13479787116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214065692] [to:18137651761] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197640] [to:19123194520] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534425] [to:15614102691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938411] [to:12156849889] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606905610] [to:+19298413259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13346189970] [to:+12138737182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19059060759] [to:+12262436839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042314465] [to:+17408796728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15206311287] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14162627425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173321781] [to:+17659869250] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175869438] [to:+13479376267] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372419520] [to:+12133773185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16474946570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538385] [to:12406267868] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-10 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-10 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:20 ip-10-0-64-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:20 ip-10-0-0-11 mdr: 2016-02-01 11:55:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17869427301] [to:+17864802258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237590106] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676570] [to:13026026046] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052037931] [to:14049665799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300303] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144448615] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543933194] [to:+19543142739] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-10 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043051562] [to:+19046947152] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-64-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-10 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13366136840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:21 ip-10-0-0-11 mdr: 2016-02-01 11:55:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643089711] [to:+18649995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048138284] [to:12046980784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001772] [to:13059751656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14845472742] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127985509] [to:+13125099949] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16072218527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072163709] [to:14074868858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-21 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786881955] [to:+17189628377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434461436] [to:+17027794349] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14345473564] [to:+14342340501] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049315841] [to:+18046650458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407229] [to:18452004834] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068036437] [to:17096400987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025179375] [to:+13479478247] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:12035929776] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162968275] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166408] [to:17743193418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:22 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:22 ip-10-0-64-10 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089868482] [to:+17636346377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136011728] [to:+16139126249] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523254786] [to:+13477360694] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135064325] [to:+18133205860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:12766204045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094545228] [to:+19027031604] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789015405] [to:+17604743472] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16104137050] [to:+14436813504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168592045] [to:+15169341282] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144206] [to:19547083410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065590442] [to:+13203737767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500037A0301] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784967057] [to:17622099493] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-10 mdr: 2016-02-01 11:55:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786476] [to:17659930251] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:23 ip-10-0-64-10 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:23 ip-10-0-0-11 mdr: 2016-02-01 11:55:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973914] [to:17173836145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313554367] [to:+16317732003] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065590442] [to:+13203737767] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500037A0302] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14065590442] [to:+13203737767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500037A0303] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196470] [to:12296690599] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706735431] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19036896021] [to:+17812621846] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-20 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14194807138] [to:+15672506106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262716692] [to:12268028117] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095432125] [to:+17315744063] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124818076] [to:+19122084341] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-10 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138363] [to:17708371223] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:24 ip-10-0-64-11 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-10 mdr: 2016-02-01 11:55:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16615334477] [to:18127187555] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:24 ip-10-0-0-11 mdr: 2016-02-01 11:55:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383210339] [to:+15146007433] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16087284335] [to:+18133088511] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550105] [to:19376182400] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623219949] [to:+19178777716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439179780] [to:+12133773130] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373070] [to:14074480876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:7:06080400860301] -Feb 1 11:55:25 ip-10-0-64-11 mdr: 2016-02-01 11:55:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:25 ip-10-0-0-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703641147] [to:+17072427715] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:25 ip-10-0-64-10 mdr: 2016-02-01 11:55:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022600] [to:+19709997818] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375315] [to:13137285802] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13159451402] [to:+13476303528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134181381] [to:+17279353588] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953279] [to:18768569131] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581395] [to:19044052412] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179010378] [to:+17605736029] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098915] [to:17606600860] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19512281261] [to:19512506500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133202039] [to:17277767139] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12539616204] [to:+12533369200] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:06080400860302] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813330684] [to:+16474919067] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095334] [to:16156782362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309424709] [to:+12342312293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273423732] [to:+17277569257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425737] [to:12016445211] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055866567] [to:+17864802873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-11 mdr: 2016-02-01 11:55:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:26 ip-10-0-64-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076249071] [to:+12816436492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-10 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:26 ip-10-0-0-11 mdr: 2016-02-01 11:55:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12033610521] [to:+13478966271] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576962614] [to:+19148291492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:06080400860303] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17657023974] [to:+12604070375] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795734] [to:14788324181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082332373] [to:+13478082913] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594513] [to:16623038373] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103225211] [to:17657206646] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577688] [to:19314503335] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19097267800] [to:+12138613875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900800] [to:16789493238] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479976463] [to:18164683836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250548] [to:14324259395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497888] [to:19705844179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123464739] [to:14126079340] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-21 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418338470] [to:+447500177717] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19078788018] [to:+19014445114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542003056] [to:19542132843] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192400330] [to:+12262407471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:27 ip-10-0-64-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-10 mdr: 2016-02-01 11:55:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:27 ip-10-0-0-11 mdr: 2016-02-01 11:55:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15124967749] [to:+15129523826] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-20 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176508216] [to:+19177329778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15016502039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692053428] [to:14199612620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:12038953440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046693616] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144373555] [to:+16139096612] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-21 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026609497] [to:12026579174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178778622] [to:13474479196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046650539] [to:15045704302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404975367] [to:+17402017970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377186573] [to:+13214067376] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203413] [to:16144066528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19085255479] [to:+19088992566] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15016502039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709453357] [to:+19705500289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204256319] [to:+17204637858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052028682] [to:+17542003689] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220573] [to:18455147677] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18043105386] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:28 ip-10-0-64-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-10 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357762463] [to:14357107685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:28 ip-10-0-0-11 mdr: 2016-02-01 11:55:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-20 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944588] [to:16069224147] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738462657] [to:18622458142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478969307] [to:12055853926] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069933131] [to:13062211546] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466635312] [to:+17144554626] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622392784] [to:+14158253095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172262945] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401589] [to:15055891522] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15815784187] [to:+15817014898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205235] [to:18137784005] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704451436] [to:+13476677088] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818316] [to:15132004289] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133568194] [to:+16178619678] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673449156] [to:+17727747348] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:29 ip-10-0-64-11 mdr: 2016-02-01 11:55:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:29 ip-10-0-0-10 mdr: 2016-02-01 11:55:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:19734627799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13016024909] [to:+13017786698] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924173] [to:12022102089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312124278] [to:+17184169914] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322461335] [to:19563247128] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362578344] [to:+13369381682] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924173] [to:12022102089] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264570155] [to:15197197743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602949] [to:14783028762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19139370806] [to:+12135298835] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464246] [to:12814674363] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-20 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064105578] [to:+14706735651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463496267] [to:16465780045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-20 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15754941615] [to:+12138024785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:30 ip-10-0-64-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404357778] [to:17015096311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16155498172] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-10 mdr: 2016-02-01 11:55:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408365] [to:14232158220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:30 ip-10-0-0-11 mdr: 2016-02-01 11:55:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603578355] [to:+13474340857] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209059] [to:18434057452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12565571419] [to:+16465479200] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512506500] [to:+19512281261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147065113] [to:+14387920529] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12525584844] [to:19197252445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132896726] [to:19514220119] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504310] [to:18143201547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092050523] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816548679] [to:12294064456] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17807187255] [to:+15817016678] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153908618] [to:+13473798193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:31 ip-10-0-64-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025851874] [to:16782469081] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:31 ip-10-0-0-10 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644918906] [to:+16172193323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003DB0201] -Feb 1 11:55:31 ip-10-0-0-11 mdr: 2016-02-01 11:55:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15087235642] [to:+13479378190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17873887208] [to:+16615334567] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885561] [to:13616480312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474911909] [to:17276876750] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916835] [to:17094647146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039662] [to:15068008649] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19124728822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644918906] [to:+16172193323] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003DB0202] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-20 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738681704] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026216743] [to:+14804392278] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-20 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418337306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958635] [to:19104955232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405304] [to:15306912996] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611611] [to:12166323512] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725672254] [to:+14022560918] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242839023] [to:13377394231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862858290] [to:+13059014057] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18019531785] [to:+18018500410] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:32 ip-10-0-0-10 mdr: 2016-02-01 11:55:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-11 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:32 ip-10-0-64-10 mdr: 2016-02-01 11:55:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562672537] [to:+13478992504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168014284] [to:+17097015582] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12049157640] [to:+12048086764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323770201] [to:17326107172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14049405232] [to:+16784348924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13363409674] [to:+13369382055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038611636] [to:+17748557040] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13138448317] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194484006] [to:+18193039646] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032326] [to:19122934453] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196470] [to:17048856177] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320459] [to:12072297556] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162689638] [to:+12162396132] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037023650] [to:+19783231954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214581788] [to:+13216136927] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:33 ip-10-0-0-11 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125485523] [to:+17182558682] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-10 mdr: 2016-02-01 11:55:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:33 ip-10-0-64-11 mdr: 2016-02-01 11:55:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869967] [to:17654144859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550887] [to:18016903727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:15714251008] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12546613259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858310193] [to:+15852823026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059785955] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703160307] [to:+19703158240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12087574173] [to:12083163346] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:12035929776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436210] [to:18128872510] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963727] [to:12269273669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:12407720666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242868618] [to:12562889490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702510667] [to:+12139298247] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16474854669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187726718] [to:+19179772592] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157778266] [to:19314469583] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-11 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-10 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616338365] [to:+15817009897] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:34 ip-10-0-64-10 mdr: 2016-02-01 11:55:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18482288775] [to:19082749653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:34 ip-10-0-0-21 mdr: 2016-02-01 11:55:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447810485760] [to:+447451224409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329343] [to:13478930547] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14352298521] [to:+18585047570] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278517900] [to:+16785861019] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17803701882] [to:+15873277919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097019103] [to:17096972550] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024627] [to:17048983826] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:18136797220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183007668] [to:+15187340190] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963490] [to:16477870499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334145] [to:17069922350] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973518] [to:15704945546] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794349] [to:18434461436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139120848] [to:16132139877] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748458] [to:13135958293] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005632] [to:19123229507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-10 mdr: 2016-02-01 11:55:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15738182357] [to:15736938544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:35 ip-10-0-64-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13014565486] [to:+19298411558] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:35 ip-10-0-0-11 mdr: 2016-02-01 11:55:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14074859311] [to:+14073373070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927283] [to:15146554614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160359] [to:13867489005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15015231667] [to:+14146006019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813387] [to:14439738545] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954737] [to:16477019474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076562] [to:19035217692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15747035500] [to:+15748578737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527171269] [to:+14158257291] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-21 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447709606494] [to:+447451218105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324992] [to:16156069995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083177851] [to:+12087633812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343867940] [to:+14342340394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16673055316] [to:+14108884988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:36 ip-10-0-0-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15156087738] [to:15158903942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-10 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:36 ip-10-0-64-11 mdr: 2016-02-01 11:55:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742661995] [to:+12138025009] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16015024183] [to:+19014445065] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072409] [to:15142339633] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263384221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15045704302] [to:+18046650539] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896699] [to:12705620938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138834538] [to:+19292688291] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106188520] [to:+18103393988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467175982] [to:+19199164190] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19194158126] [to:19106918682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038611636] [to:+17748557040] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18144311857] [to:+19142817867] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12282387488] [to:+16503377722] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16179010338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594513] [to:12283414022] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476568050] [to:16073488381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403577342] [to:+19177374008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646435212] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787901312] [to:+19782169004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088640] [to:15147050583] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:37 ip-10-0-64-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-11 mdr: 2016-02-01 11:55:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:15815784187] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:37 ip-10-0-0-10 mdr: 2016-02-01 11:55:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435396746] [to:+13477963904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17034017260] [to:+12405538794] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622187489] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815702] [to:13376558023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744009647] [to:+14018677620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18438268323] [to:+18438720795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16155498172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13109067667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255342] [to:18638443593] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13032192303] [to:17203183209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094538] [to:19807857458] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-0-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024491428] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-11 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16169524391] [to:16169157669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:38 ip-10-0-64-10 mdr: 2016-02-01 11:55:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896699] [to:12705620938] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572326419] [to:14349420639] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628037193] [to:+19018430794] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069382656] [to:+14706734021] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12406021369] [to:+12404668771] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003220201] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:0608047B830201] -Feb 1 11:55:39 ip-10-0-0-20 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003D10201] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411616] [to:19058757378] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953889] [to:17096855625] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433614] [to:15043302664] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074586737] [to:+13479319374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056332] [to:19026911492] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384615] [to:14808431355] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042436759] [to:17789886224] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649740] [to:17169830791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708268341] [to:+13479190757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990556] [to:12162968275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:39 ip-10-0-0-11 mdr: 2016-02-01 11:55:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:39 ip-10-0-64-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:7:0608047B830202] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178177250] [to:+17187479197] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154045727] [to:+19148485925] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178257224] [to:+18575764371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478674642] [to:+15028041612] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284045256] [to:+12677988820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148800782] [to:+14387941908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148940625] [to:+15817003075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-10 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:40 ip-10-0-64-11 mdr: 2016-02-01 11:55:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433733266] [to:+12405457893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16236664648] [to:15207882230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-11 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:40 ip-10-0-0-10 mdr: 2016-02-01 11:55:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236218] [to:14156400057] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178643638] [to:+19172610859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:16039535036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323029105] [to:+17133894129] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125893678] [to:+14125350996] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691184] [to:12487030383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542425445] [to:+19542993760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486483] [to:16019384336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:18126102907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782445068] [to:+14782397113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159543286] [to:+12677938939] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736870717] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809477] [to:19545899656] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893152837] [to:+12262716776] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209862] [to:18134557036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-21 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447983249349] [to:+447418321077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003D10202] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14105643607] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512537860] [to:+13475188182] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17014122234] [to:19293301880] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470434] [to:18145695763] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:16103938174] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235234913] [to:+16026384287] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026401868] [to:+14242838671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220200] [to:19147551125] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-10 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787931] [to:16034568207] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:41 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608499] [to:15709800777] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:41 ip-10-0-64-11 mdr: 2016-02-01 11:55:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093499] [to:16462496018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449567] [to:17737154084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523427885] [to:+13478085721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152816039] [to:+12679077721] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043265508] [to:+14043900139] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220777] [to:14842749952] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433245311] [to:+15162526929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178027939] [to:+15175691342] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438505645] [to:+12136036349] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142626510] [to:+13149320402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17739917220] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:42 ip-10-0-64-10 mdr: 2016-02-01 11:55:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815611] [to:19178802674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:42 ip-10-0-0-11 mdr: 2016-02-01 11:55:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384018015] [to:+14387931066] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837835] [to:16026339066] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040555] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500036A0202] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850370] [to:15743896493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19178093952] [to:13042831027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507685] [to:19096318761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611825] [to:13182103922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384018015] [to:+14387931066] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434710] [to:17327622944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076313084] [to:+13479788962] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709035928] [to:+19177086452] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163266402] [to:16164463284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196687336] [to:+18194141002] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15066261286] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304883765] [to:15305927629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-64-10 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673563047] [to:+17279985308] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-11 mdr: 2016-02-01 11:55:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:43 ip-10-0-0-10 mdr: 2016-02-01 11:55:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136300886] [to:13366096662] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411507] [to:12036429642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612100957] [to:+17277679122] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864667174] [to:+14696293030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018200] [to:12085016476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19718886196] [to:17609179883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408011044] [to:+17408796183] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530684] [to:16025385101] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17745498325] [to:14437846129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:12407720666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245734] [to:14349421329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491558] [to:13362805143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603287] [to:19063228266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19725672254] [to:+14022560918] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708718493] [to:+17278196902] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874244] [to:13043898996] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067887] [to:18632862021] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146007433] [to:14383210339] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246995090] [to:+19193072847] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168088035] [to:+15168302861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027026] [to:16477455143] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-64-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361497] [to:12538449766] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-10 mdr: 2016-02-01 11:55:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13172922657] [to:+12342313996] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:44 ip-10-0-0-11 mdr: 2016-02-01 11:55:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842803] [to:16026772759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232396096] [to:+15625534548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263786033] [to:+12264556621] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704841881] [to:+12672732907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607398857] [to:+13479976095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028305624] [to:+19027058477] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-21 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466329343] [to:13478930547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073824] [to:15733808654] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859310] [to:14133012995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185500523] [to:+14502323266] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314469583] [to:+16157778266] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139918] [to:12694558225] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15175128180] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196303050] [to:+19199161012] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-11 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:45 ip-10-0-64-10 mdr: 2016-02-01 11:55:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:45 ip-10-0-0-11 mdr: 2016-02-01 11:55:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268286] [to:17172865257] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124365987] [to:+19122005572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812959] [to:18156308976] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14024803969] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012893720] [to:+19015042657] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19034138742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929426] [to:13062501823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709104] [to:16069751838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729997931] [to:12172745868] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866410456] [to:+13025955878] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992839] [to:12265821885] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163966733] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022333966] [to:+16475569456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043671] [to:19027540010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474731464] [to:+16474918912] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12607398857] [to:+13479976095] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13195729371] [to:+16418632068] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734190] [to:14047719371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-20 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-11 mdr: 2016-02-01 11:55:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:15615043533] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:46 ip-10-0-0-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858990149] [to:+15852824043] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-11 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:46 ip-10-0-64-10 mdr: 2016-02-01 11:55:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143892205] [to:+17348210698] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532446017] [to:17029729619] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194311666] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479139918] [to:12694558225] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18673222138] [to:12532344509] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103405091] [to:13867959387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032934] [to:13184557124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724005233] [to:16184191809] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345301] [to:14438059000] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011213541494715] [to:+17279353434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497260] [to:15756542890] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:16474904168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-21 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520609622] [to:+447960263209] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068038867] [to:15065021354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:15752242379] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361625] [to:15142473228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:14404786461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:15144448615] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062298368] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204637986] [to:17208391758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594774] [to:14404786461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:18433096169] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220513] [to:17865129038] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-10 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326669187] [to:+17604745845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:47 ip-10-0-64-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:47 ip-10-0-0-11 mdr: 2016-02-01 11:55:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543385376] [to:+14703336423] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473194798] [to:+14242769469] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14706735431] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842747005] [to:+13476908618] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094343499] [to:+15164724184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364291] [to:+17279353219] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145855378] [to:+19177374766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538138] [to:12542208432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024857525] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19518786247] [to:+19512995853] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005390] [to:16785160118] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16506429825] [to:+12135298835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:48 ip-10-0-0-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016035465] [to:+14696433711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298419549] [to:12055455522] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142568400] [to:19122784068] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-10 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296690599] [to:+17278196470] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:48 ip-10-0-64-11 mdr: 2016-02-01 11:55:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15306467057] [to:+14242846661] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14237777842] [to:14237731463] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147537863] [to:+14693095437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129527399] [to:15129126734] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148208300] [to:16034988344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984345] [to:17173791314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18458930298] [to:+16318127442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397113] [to:12296992087] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577530] [to:19312419607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12533361652] [to:12532485181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-10 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012349] [to:13862154995] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:14844797659] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-10 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033513047] [to:+18038518979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234430331] [to:+14156499051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:49 ip-10-0-64-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:49 ip-10-0-0-11 mdr: 2016-02-01 11:55:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004837] [to:17097497827] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309490609] [to:+13305779550] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474989855] [to:14168290234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475039835] [to:15146213437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19092050523] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12526190219] [to:+17248032913] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043812774] [to:+16474912066] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13235228906] [to:+13479130625] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513742896] [to:+19513640829] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18604613238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-20 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390064] [to:14505228920] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-10 mdr: 2016-02-01 11:55:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18175922267] [to:18175665650] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15175128180] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-10 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:50 ip-10-0-0-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:50 ip-10-0-64-11 mdr: 2016-02-01 11:55:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474143570] [to:+13478303285] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-20 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447710134432] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072753763] [to:15024173872] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:16139030566] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015496] [to:13868552000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17014122234] [to:19293301880] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15866101560] [to:+13052038418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158534307] [to:13176947025] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708268341] [to:+13479190757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995392] [to:19198011110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014521] [to:14038756519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603579206] [to:+12604070680] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:19042404097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:19734627799] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381682] [to:13362578344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138363] [to:12398883501] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-10 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-21 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-64-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-11 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17347404593] [to:+15865748803] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13205237496] [to:+19706010106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:51 ip-10-0-0-10 mdr: 2016-02-01 11:55:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148932427] [to:+16149965651] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477775228] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786862] [to:16507697572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049281] [to:16202537787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059682699] [to:+16197324706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063575] [to:16062300303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13108190574] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15065435714] [to:+15068039921] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-20 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447487802961] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522103124] [to:+13867428657] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032934] [to:13184557124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-20 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046471217] [to:+18046243557] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736773] [to:13347423571] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:14259711116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445114] [to:19078788018] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19098336905] [to:+17142153854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17702005390] [to:16785160118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988002] [to:17657918716] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:52 ip-10-0-0-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12095879757] [to:+14156498228] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-11 mdr: 2016-02-01 11:55:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:52 ip-10-0-64-10 mdr: 2016-02-01 11:55:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18046471217] [to:+18046243557] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348071] [to:16787677018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845472742] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18179010378] [to:+17605736029] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14053005099] [to:19185073415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611825] [to:13182103922] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335711] [to:16513159319] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473100] [to:18659190013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700696] [to:17049605084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947152] [to:19043051562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16619007266] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-10 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563202] [to:18182820514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:53 ip-10-0-0-11 mdr: 2016-02-01 11:55:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:53 ip-10-0-64-11 mdr: 2016-02-01 11:55:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155461168] [to:+19729478333] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-20 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539284899] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-20 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12156849889] [to:+12677938411] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522553410] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011447512109594] [to:+15865748015] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-20 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447563608930] [to:+447520608452] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:14303427738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132758134] [to:+14132715476] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193449785] [to:16198615301] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132952449] [to:16785656383] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195204534] [to:+19199163856] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040290] [to:+15169269637] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:54 ip-10-0-0-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659940] [to:19547933691] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:54 ip-10-0-64-11 mdr: 2016-02-01 11:55:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14782397113] [to:14782445068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12019955901] [to:16463729103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169709180] [to:+17026748997] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995392] [to:18643089711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:15742106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105817749] [to:+13369440577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155944588] [to:16063698797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197640] [to:19123194520] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102797350] [to:+18724005073] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542993607] [to:16034555238] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17408191427] [to:+16513338790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326661967] [to:+15092623158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13602411933] [to:+13609494353] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14842745746] [to:+18623082152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003270301] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436405226] [to:+14108884230] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525930957] [to:+13214067679] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170102] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138144443] [to:+15137259405] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134535846] [to:+18572402049] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17089738179] [to:+19172660262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058902579] [to:+17053028751] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646176823] [to:+16783941461] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17243328547] [to:+17248034671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040555] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:0500036A0201] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18482232218] [to:+17324360210] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029815682] [to:+17027476530] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16475304370] [to:+16477424349] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123320219] [to:+14582025391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604073173] [to:+14158908082] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12767320118] [to:+17726179239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003220202] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12316796798] [to:+17206234948] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042522726] [to:+12693366072] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513188454] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742517938] [to:+15085569327] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125202212] [to:+13133494385] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106763135] [to:+13866017086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610720] [to:12039099017] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148175680] [to:+16474942294] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378295838] [to:+14695321861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693574464] [to:+12692244584] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156974070] [to:+14148887578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17572354951] [to:+18046242022] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783649396] [to:14044380001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-11 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12814685446] [to:+12138220436] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:55 ip-10-0-64-10 mdr: 2016-02-01 11:55:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646435212] [to:+18649995575] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:55 ip-10-0-0-11 mdr: 2016-02-01 11:55:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12093623163] [to:+15102548822] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302861] [to:15168088035] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862828] [to:12142296808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:19094556145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15082711909] [to:15086414170] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334077] [to:14432021439] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220777] [to:14842749952] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479478183] [to:12078611771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:13177313366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708051794] [to:+12136348267] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17407853067] [to:17406180377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499708] [to:12169717475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017703] [to:14436531995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377245] [to:12346509491] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288578] [to:17186631598] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088215] [to:18155108960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859782876] [to:+15852822851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:56 ip-10-0-0-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-11 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166322] [to:18284218889] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:56 ip-10-0-64-10 mdr: 2016-02-01 11:55:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13046693616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418497] [to:12038953440] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702000852] [to:+14242768273] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615840086] [to:+15612408600] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736773] [to:13347423571] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263122733] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788917492] [to:+14049001721] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:12704018334] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788089] [to:12193796790] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047719371] [to:+14706734190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12674140824] [to:12159544237] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874004806] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:19736877560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894986043] [to:16513373273] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477749598] [to:17155798888] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313910] [to:18504192348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144106] [to:18038257445] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148356864] [to:+14388079503] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-10 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792564065] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:57 ip-10-0-64-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083257] [to:15024407707] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:57 ip-10-0-0-11 mdr: 2016-02-01 11:55:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004253] [to:19028560383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182482] [to:17023258906] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160359] [to:13212621961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:15148260266] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677793336] [to:+13479261919] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19149438042] [to:+15165977500] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727668363] [to:17182166507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:15148260266] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048421154] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023150510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797332] [to:12709801214] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818316] [to:15132004289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220513] [to:15064441485] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676475] [to:12704277358] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132964820] [to:+16139122655] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:58 ip-10-0-0-10 mdr: 2016-02-01 11:55:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158009658] [to:+13475804370] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:58 ip-10-0-64-11 mdr: 2016-02-01 11:55:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705828512] [to:+15703977397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12013743789] [to:14844264915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192965379] [to:+15672057151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029607] [to:15068560623] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988012] [to:15134358681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383504] [to:13049522170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195930514] [to:+18193039778] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566903190] [to:+19177370164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052496] [to:15127692952] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19799856381] [to:+12602327080] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673704005] [to:+12679232854] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16139226246] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17707145213] [to:+13867423812] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17739433226] [to:13129781470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-10 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022918] [to:14187646452] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125354483] [to:18146158905] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:55:59 ip-10-0-64-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:55:59 ip-10-0-0-11 mdr: 2016-02-01 11:55:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044003] [to:19179325749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374286] [to:13302686499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064418] [to:14056754564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508120914] [to:+16475037080] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201701] [to:12673255425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19722676140] [to:+14696725917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16065848402] [to:+14692057778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027593695] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199232345] [to:+18133088551] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14174509614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514038808] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439791236] [to:+14437202382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739203] [to:18285147757] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:12296302986] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217142] [to:12707248663] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16269882814] [to:19094556145] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:00 ip-10-0-0-10 mdr: 2016-02-01 11:56:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:00 ip-10-0-64-11 mdr: 2016-02-01 11:56:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12538787207] [to:18176092937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787538120] [to:+19292200259] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15207882230] [to:+16236664648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874058931] [to:15879918333] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474940511] [to:16472067898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-20 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447908965251] [to:+447520609347] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382055] [to:13363409674] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911730] [to:12512841521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179817] [to:12027465982] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135958293] [to:+15865748458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983051] [to:12267001420] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278600227] [to:17314467354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543144106] [to:18038257445] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:01 ip-10-0-0-10 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-11 mdr: 2016-02-01 11:56:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:19736877560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:01 ip-10-0-64-10 mdr: 2016-02-01 11:56:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253174327] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043600014] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572401548] [to:12312206121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473466] [to:18658514674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18508950377] [to:13155324401] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996155] [to:18285829428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248030418] [to:18782957773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388040599] [to:14388285601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690476] [to:13128602870] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097010526] [to:19089021138] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817615079] [to:+18322463628] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325375883] [to:+15103131091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-20 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672170] [to:+447947561824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784033693] [to:17789190974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039857] [to:15062598297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802404010] [to:+15874096953] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132075925] [to:+16137025128] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105560325] [to:12108368741] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726175320] [to:12016692803] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242837696] [to:12053039277] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19564143168] [to:+19292146713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047687] [to:16477925655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:02 ip-10-0-0-20 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447704998413] [to:+447451230785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-10 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476504310] [to:12672555932] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:02 ip-10-0-64-11 mdr: 2016-02-01 11:56:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:16474592315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159111] [to:13365142310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13139748494] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14087135505] [to:14084013648] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479197] [to:19178177250] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653470290] [to:13478716298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18025357585] [to:+15084168896] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14174509614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14124650313] [to:+13302374631] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:15879661413] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-10 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736666705] [to:17133052368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:03 ip-10-0-64-11 mdr: 2016-02-01 11:56:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17186755891] [to:18433250302] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-10 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:03 ip-10-0-0-11 mdr: 2016-02-01 11:56:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14099279197] [to:+17029016968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604070375] [to:17657023974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029072] [to:15066097812] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13157345906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-10 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12318307529] [to:+13478969821] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-11 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:17043529092] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:17043529092] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768750] [to:16062619284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:17043529092] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768508] [to:15044955572] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095889] [to:17043900085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-0-10 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:13187712503] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16164200282] [to:16162500265] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:04 ip-10-0-64-11 mdr: 2016-02-01 11:56:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:13187712503] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138733781] [to:18595536479] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12488546576] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12488546576] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12526462419] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:12526462419] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495653] [to:17703672429] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:13022908499] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:13022908499] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479197] [to:19178177250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085104797] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474937637] [to:12893397674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085104797] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816436492] [to:14076249071] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778062] [to:12628086166] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085689630] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137587998] [to:+18133316730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778062] [to:12628086166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17275154433] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17275154433] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-21 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447539354207] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:18646303554] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:18646303554] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185656117] [to:+15182908691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:19012294961] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795788] [to:17578121904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144406256] [to:+14197459813] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:15107704566] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:15107704566] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17724536265] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083694433] [to:+14198777818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12055633393] [to:+16463490232] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673704005] [to:+12679232854] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607194730] [to:+15169260175] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527026395] [to:+14582016764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733808654] [to:+13203073824] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17069922350] [to:+14703334145] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:05 ip-10-0-0-10 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819839942] [to:+15817015377] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-11 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:05 ip-10-0-64-10 mdr: 2016-02-01 11:56:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103135160] [to:15109343971] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065399] [to:12527021147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147050583] [to:+14388088640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632412060] [to:+18639493274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406627] [to:+18572191273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167990556] [to:12163966733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12673220879] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17724536265] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:14085689630] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13205237496] [to:+19706010106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630754] [to:19285838142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977540] [to:15709834861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142797123] [to:18593967205] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:19012294961] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15619295210] [to:+15618197607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18135027962] [to:+13369383679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105643607] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481442] [to:16083591745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182302248] [to:+12136946718] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234399504] [to:+13108792442] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137103299] [to:+16139126250] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-10 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:06 ip-10-0-64-11 mdr: 2016-02-01 11:56:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:06 ip-10-0-0-11 mdr: 2016-02-01 11:56:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002648] [to:13026327408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474968807] [to:12893390423] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044662] [to:12146419750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108004377] [to:+15103222221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15129126734] [to:+15129527399] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043898996] [to:+14023874244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15192126619] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847912] [to:13617045507] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15134916897] [to:+17604745521] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032913] [to:12526190219] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-10 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674444050] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636346721] [to:16788584818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074863] [to:15853074710] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057055] [to:14199677062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387921250] [to:14188069348] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715476] [to:14132758134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185990] [to:15632498073] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:07 ip-10-0-0-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065526996] [to:+13067000780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387641084] [to:+15146132644] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-10 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744227] [to:17313634415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:07 ip-10-0-64-11 mdr: 2016-02-01 11:56:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12166323512] [to:+18328611611] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069990559] [to:+16476915764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082090] [to:17065643091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199084917] [to:+12137978857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13015731038] [to:+13017786990] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13234982600] [to:+16412432190] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:13309494907] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:13309494907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726179239] [to:12767320118] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12147498562] [to:+14692052569] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053400830] [to:13309494907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262405142] [to:12269292027] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064708259] [to:+16137074565] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402066732] [to:+14406588601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068018611] [to:19024125604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136935433] [to:+13134246443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12535170102] [to:+12532657808] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:08 ip-10-0-0-10 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:08 ip-10-0-64-11 mdr: 2016-02-01 11:56:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194960194] [to:15753053371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503764879] [to:+18506314425] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175214401] [to:+12679525650] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16413908298] [to:16412514599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:18627726104] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13044379710] [to:+17727747359] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146100] [to:18608905611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17315744063] [to:14025948991] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872010645] [to:+15068018655] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947937] [to:17063512758] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148252617] [to:50370669479] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023795771] [to:+13479804094] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094684045] [to:+15068008826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543236271] [to:19546631475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12407720666] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296992087] [to:+14782397113] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955109] [to:19373446161] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674011] [to:13049425310] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-10 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764214] [to:12485062878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364500] [to:+17186755508] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:09 ip-10-0-0-11 mdr: 2016-02-01 11:56:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029570817] [to:+19027026958] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:09 ip-10-0-64-11 mdr: 2016-02-01 11:56:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227615] [to:18035370197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795118] [to:12623492121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596637916] [to:15592698937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19193399123] [to:+19193240433] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866017159] [to:13525758955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137014521] [to:14033898457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133012995] [to:+14136859310] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143219816] [to:+17273332528] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294127667] [to:+12138023163] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734603492] [to:+17185676422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179010338] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-21 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277568765] [to:15074384432] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032362] [to:17245622630] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702434985] [to:+13866015464] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955109] [to:19373446161] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058757378] [to:+12262411616] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167386973] [to:+12162394593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455147677] [to:+18456220573] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020936] [to:12039571841] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:10 ip-10-0-0-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219990603] [to:12083126172] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103938174] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-10 mdr: 2016-02-01 11:56:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127284448] [to:+14122301026] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:10 ip-10-0-64-11 mdr: 2016-02-01 11:56:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083463183] [to:+14028703448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786881955] [to:+17189628377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184425364] [to:+16264604031] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743896493] [to:+15744850370] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157876796] [to:16812311139] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023875985] [to:+19318968622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659190013] [to:+18653473100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476399] [to:14235054723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381682] [to:13362578344] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14788324181] [to:+19142795734] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026579174] [to:+12026609497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16169157669] [to:+16169524391] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-64-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302146] [to:14122953105] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-11 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18654109482] [to:+19027043769] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194027208] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:11 ip-10-0-0-10 mdr: 2016-02-01 11:56:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303533544] [to:+13476673134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15046165168] [to:+13219996801] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063228266] [to:+18583603287] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13469325076] [to:+18328043755] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312206121] [to:+18572401548] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15756542890] [to:+15754497260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-21 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447887053337] [to:+447418325218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023730391] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12092421325] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730435] [to:15186376682] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527147304] [to:+13219998151] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046697435] [to:+19785336979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16194948830] [to:+16193628603] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302945] [to:14128608820] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146244139] [to:+12138613753] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300303] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106357939] [to:+14242837899] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269273669] [to:+16474963727] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:19414511147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12408924173] [to:12022102089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:19736870717] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12536423947] [to:12532672410] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136316] [to:13473029145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-64-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859168] [to:14138853211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-10 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751580] [to:19188372939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:12 ip-10-0-0-11 mdr: 2016-02-01 11:56:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176889846] [to:12192291440] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756435] [to:18165980754] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18286745549] [to:+12347556922] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082456] [to:12488500767] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19858705759] [to:+12138225617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18176121117] [to:13137723765] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750785] [to:15038685546] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19738146197] [to:18622189932] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977086] [to:15709032476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345319] [to:18437075181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248623] [to:15124339463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220531] [to:17606906898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16306491189] [to:+17736667534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057618982] [to:+16474950422] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-10 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:13 ip-10-0-64-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:0500038F0201] -Feb 1 11:56:13 ip-10-0-0-11 mdr: 2016-02-01 11:56:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033898457] [to:+17786540733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033872609] [to:+13602277272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817019743] [to:15813093013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528858189] [to:+19199162330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049004131] [to:14044887751] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527789] [to:12086501917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743471036] [to:+16307859982] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:14303427738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895697447] [to:19895512166] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030946] [to:19023034153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894640106] [to:+19894020315] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500038F0202] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094770] [to:17044534051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15862488125] [to:13132909664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639492144] [to:15042709619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14125350996] [to:14125893678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532049130] [to:+14259392511] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007629] [to:18089540211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-64-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613581] [to:16065940637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002952] [to:14043231520] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15754497888] [to:19704050210] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-10 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:14 ip-10-0-0-11 mdr: 2016-02-01 11:56:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16108095698] [to:+12674862816] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043381335] [to:+18046245387] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16608155743] [to:+14242796429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162968275] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614663590] [to:+16615334560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542288898] [to:+15129525404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044808838] [to:+19046947342] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702053124] [to:+13479218957] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145978670] [to:+19725348798] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-11 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17323180684] [to:+17328677570] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-21 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451238610] [to:+447821389780] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214221] [to:14013451158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-11 mdr: 2016-02-01 11:56:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028049281] [to:15025148146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:15 ip-10-0-64-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:15 ip-10-0-0-10 mdr: 2016-02-01 11:56:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057618982] [to:+16474950422] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045907421] [to:+12048088485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562367140] [to:+13024991380] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133099109] [to:18328595137] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440261] [to:15184202088] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027158995] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897805325] [to:12894047357] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022783882] [to:+13024001803] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863283594] [to:+13053404204] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13614552527] [to:+18328043952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610859] [to:19178643638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378899937] [to:+15028040682] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038330237] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194807978] [to:17192044711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039D0201] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485596] [to:19186975243] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853638595] [to:+15852824417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041939] [to:+13436001289] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445489] [to:19012826999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-11 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142585218] [to:+14388072831] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:16 ip-10-0-0-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122982312] [to:+14122302879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:16 ip-10-0-64-10 mdr: 2016-02-01 11:56:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415309365] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19706010106] [to:13205237496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218859] [to:+19172659918] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12105718733] [to:15593973789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183106810] [to:+18724009166] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996955] [to:14243499485] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148252617] [to:50370669479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938415] [to:13615002324] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:18194311666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732810942] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039D0202] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879371410] [to:+15874084326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16183406631] [to:+17199991004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-20 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174708] [to:19179431775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968360] [to:17065307803] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018500580] [to:18016549845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058196170] [to:+17027794061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334903] [to:19893061074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:17 ip-10-0-0-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705717575] [to:+19703156742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16623164294] [to:+13478028000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133086328] [to:18139000787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-11 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142066532] [to:13479859987] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:17 ip-10-0-64-10 mdr: 2016-02-01 11:56:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297413] [to:18645679464] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15596637916] [to:15592698937] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326199] [to:14695631044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605736029] [to:18179010378] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479859987] [to:+19142066532] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12706040564] [to:+19318967812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12032434092] [to:+16465648343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656238935] [to:+14242795422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564089100] [to:+16466328743] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16014558186] [to:+17605899346] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14054793614] [to:+19172659021] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016037351] [to:+18046244135] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348071] [to:16787677018] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:14153406100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15874095894] [to:+12262430575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19547083410] [to:+19543144206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237806] [to:19562263332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18723332393] [to:+18585199213] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181239] [to:13137181144] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-10 mdr: 2016-02-01 11:56:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151509] [to:18026730565] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-64-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157771640] [to:+13477970498] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-11 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19376228530] [to:+17604747396] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:18 ip-10-0-0-10 mdr: 2016-02-01 11:56:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-21 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447951238261] [to:+447451245428] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:17706543179] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042100] [to:13475763406] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874085531] [to:17809042499] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477963695] [to:19372381863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139092039] [to:14509903157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209653] [to:13158008854] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249192737] [to:+13474916344] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149157671] [to:+14388085955] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885561] [to:13616480312] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18626003745] [to:+19085160500] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013696] [to:14145222920] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186376682] [to:+19177730435] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:19 ip-10-0-64-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868689491] [to:+13072961000] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-11 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:18458917063] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15757032084] [to:+19172610625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:19 ip-10-0-0-10 mdr: 2016-02-01 11:56:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-20 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447999584286] [to:+447418326296] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672711] [to:17574011211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066261286] [to:+15068038867] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17813859091] [to:+16172139746] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366136840] [to:+13366450997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13092263565] [to:+18729995251] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602241572] [to:+12602777291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193628603] [to:16194948830] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804623] [to:12398222453] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12528858189] [to:+19199162330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696725917] [to:19722676140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110201] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066540306] [to:+15068030027] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643089711] [to:+18649995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:20 ip-10-0-64-10 mdr: 2016-02-01 11:56:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-10 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:20 ip-10-0-0-11 mdr: 2016-02-01 11:56:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513284459] [to:+17784025376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023258906] [to:+17027182482] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247813414] [to:+17142612789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366452487] [to:18283200547] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475697] [to:16195048936] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345319] [to:18437075181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043898996] [to:+14023874244] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788638142] [to:+14043411344] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602510242] [to:+19792326112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419973] [to:14783029700] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15307843939] [to:+18477130829] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873277839] [to:14079513644] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092641506] [to:12096526665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028042248] [to:+16139092407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-10 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:21 ip-10-0-64-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516380207] [to:+12536422032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:21 ip-10-0-0-11 mdr: 2016-02-01 11:56:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138736070] [to:17063154534] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185274976] [to:+14242863189] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104475684] [to:+18102218517] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562367140] [to:+13024991380] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15713599159] [to:+13478961966] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018017] [to:16623907029] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630754] [to:19285838142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102258] [to:17403363903] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16097721614] [to:+19142815153] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175804818] [to:17575374934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16123601762] [to:+16464179187] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-21 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:FreeMsg] [to:+447451236589] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786758] [to:18764308380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509819012] [to:+16049019044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525650] [to:17175214401] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893470] [to:18479757329] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:22 ip-10-0-0-11 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19153048612] [to:+14692054856] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304893470] [to:18479757329] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:22 ip-10-0-64-11 mdr: 2016-02-01 11:56:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268286] [to:14437075043] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-20 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331173] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607195823] [to:+17279997910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179164] [to:12404859244] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168290234] [to:+16474989855] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15408480365] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725798] [to:14047253996] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199236990] [to:+16474912165] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054355061] [to:+12138619957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062783162] [to:+12627776964] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-21 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451230135] [to:+447717895066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736072] [to:14133516124] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874244] [to:13043898996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786758] [to:18764308380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511915] [to:12094550430] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-10 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184151548] [to:15185728781] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:23 ip-10-0-64-11 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054355061] [to:+12138619957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:23 ip-10-0-0-10 mdr: 2016-02-01 11:56:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179770195] [to:+19142816254] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17195699583] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308068245] [to:+15304882797] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320630] [to:12672428195] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698260955] [to:+14697516836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575025222] [to:+14045966934] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15714251008] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166042] [to:19194174121] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019388] [to:19026982765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14062244966] [to:+13073702993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136569722] [to:+18638554007] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035661725] [to:+16034134831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-10 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039557] [to:15066450428] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031325] [to:13302493141] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077909] [to:15147757396] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615353] [to:12285479010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100907] [to:14388960753] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:24 ip-10-0-0-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:24 ip-10-0-64-11 mdr: 2016-02-01 11:56:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125759108] [to:15123330089] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12048942652] [to:+12048180322] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199612620] [to:+14692053428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992084] [to:12893353586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008051] [to:18125925219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474965455] [to:15193017481] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13034987798] [to:17204748758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12347556790] [to:17406297342] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887447] [to:14232239462] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:19208505929] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14187646452] [to:+15817022918] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132869689] [to:+16136046050] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16318127442] [to:18458930298] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068008826] [to:17094684045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137587998] [to:+18133316730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734466473] [to:19172665760] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19285992636] [to:16268485236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138159707] [to:+13477981896] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173833642] [to:+13859851230] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:15632750247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:25 ip-10-0-0-11 mdr: 2016-02-01 11:56:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:25 ip-10-0-64-10 mdr: 2016-02-01 11:56:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185938664] [to:+19172659777] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639072] [to:12017368227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127284448] [to:+14122301026] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602510242] [to:+19792326112] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17029294790] [to:+17812621534] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479222090] [to:+19787869260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543392246] [to:+14693006721] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:13302574249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614418253] [to:16614972488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17737154084] [to:+18724449567] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15168088035] [to:+15168302861] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383047] [to:13369570347] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374890256] [to:+13476676926] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593998294776] [to:+17182558101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14052017088] [to:+19162455559] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17247625741] [to:+17243200495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146573496] [to:+13479801481] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736919388] [to:+13479806787] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478085742] [to:15402662368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400870] [to:18652409541] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992504] [to:12562672537] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:26 ip-10-0-0-11 mdr: 2016-02-01 11:56:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:26 ip-10-0-64-10 mdr: 2016-02-01 11:56:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048839077] [to:+13478685460] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849204] [to:14048244758] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484485] [to:13233542878] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484485] [to:13233542878] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614201809] [to:+19543639650] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16622551377] [to:+14808427403] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065643091] [to:+13478082090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963727] [to:12269273669] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19126752341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18625882361] [to:+18622278967] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15772818039] [to:+17203586490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:27 ip-10-0-64-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023022732] [to:+12897680926] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-11 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:27 ip-10-0-0-10 mdr: 2016-02-01 11:56:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16023730391] [to:+14803008196] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039486] [to:17097697773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392674] [to:16026538608] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13025216216] [to:+16465648792] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569060377] [to:+18563523022] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066850] [to:15755451004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:17054444210] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:19802086773] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282855374] [to:16023803428] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13233206960] [to:13232733340] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19379473439] [to:+12065827619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12707234055] [to:+12139359098] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804391083] [to:526371238911] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18329388781] [to:+18328042951] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873154569] [to:14035968675] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950013] [to:15146196925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170325] [to:15059853846] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15069990559] [to:+16476915764] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15122281385] [to:+15122657260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17156791635] [to:+12626481859] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019374] [to:19022136060] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138612526] [to:14783655370] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14047860052] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065526996] [to:+13064000417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-10 mdr: 2016-02-01 11:56:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14093549945] [to:+14097977842] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:28 ip-10-0-0-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:28 ip-10-0-64-11 mdr: 2016-02-01 11:56:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13609728859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15618197607] [to:15619295210] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444503] [to:16095335183] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998151] [to:12527147304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13126471290] [to:+13126145140] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093213716] [to:+13216136489] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196943373] [to:+12267794122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593023] [to:17654650874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795734] [to:14788324181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048366514] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309568] [to:17856336771] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336979] [to:13046697435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125024064] [to:18039438816] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16039450390] [to:16035831739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220573] [to:18455147677] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16046741196] [to:+15874050260] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195586] [to:12292911324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:29 ip-10-0-0-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-11 mdr: 2016-02-01 11:56:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:29 ip-10-0-64-10 mdr: 2016-02-01 11:56:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124366] [to:12674492223] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035714] [to:14128416419] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324360210] [to:18482232218] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788154111] [to:+14706735985] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19855145487] [to:+14125350526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423730] [to:14077152797] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:13472320748] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048132601] [to:12046790739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736832983] [to:+16465136788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262241982] [to:+12262437181] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232608] [to:12397458539] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035071942] [to:+13477145618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-10 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:30 ip-10-0-0-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039099017] [to:+19172610720] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:30 ip-10-0-64-11 mdr: 2016-02-01 11:56:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028807119] [to:+19027021768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439288872] [to:+12404077181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852825022] [to:18457745586] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016001728] [to:+19172751271] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18327807256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340501] [to:14345473564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066515491] [to:+15068038864] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649256] [to:14197420983] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:13302574249] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916023] [to:15875895653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020936] [to:12039571841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15705828512] [to:+15703977397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:31 ip-10-0-0-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038708] [to:17862178747] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-11 mdr: 2016-02-01 11:56:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132828916] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:31 ip-10-0-64-10 mdr: 2016-02-01 11:56:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14095534381] [to:+14092205501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015968910] [to:+19018426353] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108425644] [to:+14437203762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18108588627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608101074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12485062878] [to:+14357764214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15625020067] [to:+15612318962] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15174890881] [to:+16163190174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134784469] [to:14043375610] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418437934] [to:16416805776] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:14702744110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504217071] [to:+14506390316] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853319431] [to:+15852822141] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17745030013] [to:+12134017524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067679] [to:13525930957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543141396] [to:18646219173] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734535401] [to:19084160744] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:32 ip-10-0-0-11 mdr: 2016-02-01 11:56:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587132] [to:19047299373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:32 ip-10-0-64-10 mdr: 2016-02-01 11:56:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19038485273] [to:19032438244] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145309943] [to:+13219996374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086183483] [to:14086610845] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19146191606] [to:+19177086657] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137784005] [to:+18133205235] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578121904] [to:+19142795788] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856676] [to:18503214792] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:17054444210] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106265124] [to:+15304883579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13132854679] [to:+13133494268] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139097163] [to:17097632398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-10 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065089580] [to:+16788164617] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732869136] [to:+19735479917] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-64-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274701951] [to:+17279985231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:33 ip-10-0-0-11 mdr: 2016-02-01 11:56:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965924] [to:14349443016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:16786415861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243361810] [to:15012890125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446148] [to:+12267792819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-21 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447930075810] [to:+447451234654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659021] [to:14054793614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046739808] [to:+15109722697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14387643323] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:34 ip-10-0-0-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062300303] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-11 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F10201] -Feb 1 11:56:34 ip-10-0-0-11 mdr: 2016-02-01 11:56:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:34 ip-10-0-64-10 mdr: 2016-02-01 11:56:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19198011110] [to:+14157995392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246443] [to:13136935433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732866969] [to:+13479714194] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472359191] [to:+19172750497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162566691] [to:+19162926458] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19143107841] [to:+19142068696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14407895778] [to:+14406588335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315107848] [to:+14156492222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003F10202] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303916262] [to:+14158403861] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158100246] [to:15744401765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751580] [to:19188372939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808985] [to:18329231304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19514220119] [to:+12132896726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817867] [to:18144311857] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968622] [to:15023875985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897785196] [to:16479647874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897785196] [to:16479647874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729470534] [to:18175577626] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102540581] [to:18563084353] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19143029345] [to:12059070637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097422] [to:15877743355] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308124815] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499583] [to:13618061296] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607546793] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500032B0201] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607546793] [to:+19172595160] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500032B0202] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455147677] [to:+18456220573] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:35 ip-10-0-64-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182911] [to:17346212684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:35 ip-10-0-0-11 mdr: 2016-02-01 11:56:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309568] [to:17856336771] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276193703] [to:+14803008220] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:16182105146] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-21 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20601] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474479196] [to:+19178778622] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233837835] [to:16026631942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661221] [to:17172152312] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328720102] [to:+19108888424] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233072305] [to:+12135876674] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018703839] [to:+14696293211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12483857441] [to:+12486557422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899218773] [to:+12264557912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054355061] [to:+12138619957] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024991541] [to:13022301107] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14253773077] [to:+19725345930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14784848585] [to:+19298413148] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709801214] [to:+17729797332] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132004289] [to:+19148818316] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-64-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390316] [to:14504217071] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-10 mdr: 2016-02-01 11:56:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525930957] [to:+13214067679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:36 ip-10-0-0-11 mdr: 2016-02-01 11:56:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15799000798] [to:14508218813] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378299028] [to:+12342315330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148089604] [to:+14388074952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622966174] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13523459524] [to:+18455797155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798576] [to:15025258217] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031325] [to:13302493141] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202382] [to:14439791236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044003] [to:19179325749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446148] [to:+12267792819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133020569] [to:+12677579874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703159305] [to:13303621919] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003B90501] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14707289524] [to:+14703335838] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526371238911] [to:+14804391083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606058757] [to:+12532657708] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132644] [to:14387641084] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157776104] [to:16152108004] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:13522354735] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15134459946] [to:15137204626] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103223004] [to:13047108355] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-21 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415734517] [to:+447418338054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614771692] [to:+16614024784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622189932] [to:+19738146197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0116596483290] [to:+16042594985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478121024] [to:+16467019128] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142063415] [to:18032295576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-10 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:37 ip-10-0-64-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491365] [to:15759425035] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:37 ip-10-0-0-11 mdr: 2016-02-01 11:56:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583606283] [to:18287724792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18056219402] [to:+18053942931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817001131] [to:14187191115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074305942] [to:+15125597443] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375572] [to:14056259899] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300544] [to:+16139092495] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315066677] [to:+16317732116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142473228] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:16786875713] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:18585374179] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736870717] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817814903] [to:+17604749017] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024300544] [to:+16139092495] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179704275] [to:+16172132273] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:38 ip-10-0-64-10 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12283270012] [to:+18046244573] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:38 ip-10-0-0-11 mdr: 2016-02-01 11:56:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046693616] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155731049] [to:+16156147432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692052569] [to:12147498562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427946] [to:14809805067] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023034153] [to:+19027030946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088381094] [to:+17324433371] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473792] [to:12674016124] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-20 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520622725] [to:+447944977542] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865747278] [to:13132444147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017229] [to:12392906019] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704277358] [to:+13476676475] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019384336] [to:+19148486483] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153908618] [to:+17182559687] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220513] [to:12256784387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12253855496] [to:+14073371708] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16167948238] [to:16164467909] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156406100] [to:+13479377099] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18107305107] [to:+12482833153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783024809] [to:+19172750491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17187479197] [to:19178177250] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-0-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195048936] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-10 mdr: 2016-02-01 11:56:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:15136289501] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:39 ip-10-0-64-11 mdr: 2016-02-01 11:56:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90502] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643986800] [to:+18649995436] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899166] [to:19125395508] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899166] [to:19125395508] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19378382970] [to:+15306393883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988393] [to:17743926481] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024100570] [to:+19028019485] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446938] [to:15055739708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242836449] [to:16197477638] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083126172] [to:+13219990603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813093013] [to:+15817019743] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:18019133261] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:17048366514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823870] [to:527341286093] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823870] [to:527341286093] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706772546] [to:+15703973577] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-11 mdr: 2016-02-01 11:56:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593600] [to:18145150993] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-0-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042222616] [to:+13475076048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-11 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:40 ip-10-0-64-10 mdr: 2016-02-01 11:56:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:14149825306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427403] [to:12512237918] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146419750] [to:+18328044662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138524120] [to:+16139097041] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608818425] [to:+13473897561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406215191] [to:+15406288974] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14017214221] [to:14013451158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12485375646] [to:12695895918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060942] [to:19122702774] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19782376233] [to:+19172750729] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175630754] [to:19285838142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263446148] [to:+12267792819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327643] [to:50245554229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706772546] [to:+15703973577] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316730] [to:18137587998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654650874] [to:+15635593023] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003300201] -Feb 1 11:56:41 ip-10-0-64-11 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059021066] [to:+19172751767] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:41 ip-10-0-0-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:41 ip-10-0-64-10 mdr: 2016-02-01 11:56:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034130991] [to:16033214064] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406895690] [to:+16465688602] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610525] [to:13158674556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950013] [to:15146196925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328899150] [to:+17323774903] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298436] [to:17043639413] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274597563] [to:+14132519497] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220200] [to:19147551125] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105273782] [to:+16463498118] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:19103744971] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12166499733] [to:17636914747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569548] [to:17244546686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184557124] [to:+15152032934] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90503] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526385952] [to:+13524150221] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003300202] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706772546] [to:+15703973577] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812774269] [to:18572444276] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038247117] [to:+14696723288] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203015] [to:14105643607] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047365420] [to:+12015805911] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868412] [to:18152126367] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-11 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381748] [to:19087639247] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:42 ip-10-0-64-10 mdr: 2016-02-01 11:56:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:42 ip-10-0-0-11 mdr: 2016-02-01 11:56:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628891147] [to:+14155706475] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477434094] [to:15195885745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:14792564065] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739288] [to:13345575254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129525404] [to:12542288898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016035465] [to:+14696433711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-20 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312029281] [to:+12313318169] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:13477775228] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542286754] [to:+14694127996] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:43 ip-10-0-64-10 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294064456] [to:+17816548679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:43 ip-10-0-0-11 mdr: 2016-02-01 11:56:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15305199581] [to:+15303623361] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999312] [to:+13477749648] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177598370] [to:+15613165017] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177320630] [to:12672428195] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086400] [to:16026920024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473024984] [to:+18438720882] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572211626] [to:19046292158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:16035661725] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305301] [to:16367445805] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053943010] [to:18052753043] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:12133055690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137181144] [to:+18458181239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101148] [to:17802234218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732733914] [to:19739800091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508095641] [to:+16474955593] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130350] [to:15182683457] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152085749] [to:+16572071439] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199755449] [to:+13122754397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14432021439] [to:+14703334077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:44 ip-10-0-0-10 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18196907490] [to:+18194122275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:44 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147485] [to:16154799930] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003B90504] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047109914] [to:+16049019532] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13232733340] [to:+13233206960] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148094] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604071409] [to:15133093579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068039569] [to:15062298368] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18023999384] [to:+13475076155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148094] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312374558] [to:+13366452635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327341] [to:13234077031] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-11 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12694308330] [to:12257337222] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:17862393181] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668977] [to:15678681638] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:45 ip-10-0-64-10 mdr: 2016-02-01 11:56:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456220573] [to:18455147677] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:45 ip-10-0-0-11 mdr: 2016-02-01 11:56:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12079999312] [to:+13477749648] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037247725] [to:+18036362792] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101074] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16018316038] [to:+19018421490] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:16198074347] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494268] [to:13132854679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185728781] [to:+15184151548] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345431] [to:14693349561] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053000964] [to:15192162970] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166501] [to:19198276823] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597109] [to:19739511065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164617] [to:17065089580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474143570] [to:+13478303285] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095335183] [to:+12678444503] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205021160] [to:13177193349] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12629491569] [to:+16106999943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388960753] [to:+15874100907] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128442251] [to:+14242768967] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109565869] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005334] [to:12263390108] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134017524] [to:17745030013] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244573] [to:12283270012] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:46 ip-10-0-64-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:46 ip-10-0-0-11 mdr: 2016-02-01 11:56:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142063415] [to:18034869639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369640625] [to:+17074099309] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027475697] [to:16195048936] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235054723] [to:+15104476399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527021147] [to:+12138065399] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315153139] [to:+19027004485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003060301] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232486802] [to:+17636849097] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003B90505] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003060302] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179800501] [to:+16178613552] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524840] [to:17706017786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-20 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627227] [to:+447802708812] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18108588627] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363003] [to:18434218324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336344] [to:12092213572] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-64-11 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736031] [to:14138135001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-11 mdr: 2016-02-01 11:56:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645412888] [to:+18649997497] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:47 ip-10-0-0-10 mdr: 2016-02-01 11:56:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073373598] [to:15404559897] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188416133] [to:+17125266772] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003060303] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234948978] [to:+13478084085] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19734535401] [to:16093102909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373362646] [to:+12692808190] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13198445118] [to:13194648163] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895512166] [to:+19895697447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659903] [to:584247527774] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17278515797] [to:+17279987095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18455797389] [to:18434160834] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303578332] [to:+12626483448] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243269] [to:15408924137] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097147] [to:19802677442] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084684161] [to:+12155961127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068040580] [to:17096979432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042890906] [to:+19172594219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508009704] [to:+16474950762] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13852108132] [to:+13476675715] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158539409] [to:19102847992] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785336979] [to:13046697435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612404824] [to:14237159267] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:48 ip-10-0-0-11 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:48 ip-10-0-64-10 mdr: 2016-02-01 11:56:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989486] [to:17042976179] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16366678501] [to:+18133088551] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106918682] [to:+19194158126] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137204626] [to:+15134459946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14063578054] [to:+12536423648] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326112] [to:12602510242] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724396] [to:19293128656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:14179883942] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644983823] [to:+13867428841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873322555] [to:17802810448] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:18283716473] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-11 mdr: 2016-02-01 11:56:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601909] [to:19053949556] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-64-11 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:49 ip-10-0-0-10 mdr: 2016-02-01 11:56:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750729] [to:19782376233] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872243481] [to:+15874004877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985308] [to:12673563047] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669416] [to:17733547921] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18644662538] [to:+13475807431] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18659647810] [to:+19717328525] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19893137854] [to:+19893147113] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195502740] [to:+12262412090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054174708] [to:19179431775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12167776871] [to:12166097198] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13057356098] [to:13057073705] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14695631044] [to:+14695326199] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433376315] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15055068289] [to:+15052571896] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16312357772] [to:+14156498354] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14174509614] [to:+17604746265] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15092400960] [to:+17604746220] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:17403981777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406839] [to:15595295008] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477962486] [to:12678197086] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-11 mdr: 2016-02-01 11:56:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185278518] [to:+15189305426] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:17135810906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:19286065474] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:50 ip-10-0-0-11 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:50 ip-10-0-64-10 mdr: 2016-02-01 11:56:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614102691] [to:+14158534425] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632638816] [to:+18639492415] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479066525] [to:18648845299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094716] [to:554599040323] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024491428] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390028] [to:14389945788] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426669] [to:15057288131] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405412623] [to:+17408796954] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-10 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-10 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673510450] [to:+12673177388] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:51 ip-10-0-64-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18067521634] [to:+19402495440] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:51 ip-10-0-0-11 mdr: 2016-02-01 11:56:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557800] [to:19804745841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587132] [to:19046001946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426669] [to:19286795090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999434] [to:12035183248] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513335289] [to:17065024781] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:19177170477] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176770548] [to:+15178615234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-21 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520627702] [to:+447415799544] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475188704] [to:17049616814] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-10 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033076248] [to:19034943506] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-64-11 mdr: 2016-02-01 11:56:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617971873] [to:+15617666407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027003788] [to:19025793898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:52 ip-10-0-0-10 mdr: 2016-02-01 11:56:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899233] [to:19064405846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18458181056] [to:19144747205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614124478] [to:12398777146] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583146100] [to:18608905611] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-21 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858370549] [to:+447520624872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13309574324] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500038F0202] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500038F0201] -Feb 1 11:56:53 ip-10-0-0-21 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447542859491] [to:+447520606197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035075400] [to:+17182558445] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464980371] [to:+19177027052] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673424306] [to:+17185676055] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779619] [to:+17604743539] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762664058] [to:+13366450166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14083378287] [to:+14086183886] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002350] [to:16783348421] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-20 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066450428] [to:+15068039557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188753891] [to:18185270282] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:53 ip-10-0-0-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:53 ip-10-0-64-11 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AB0201] -Feb 1 11:56:53 ip-10-0-0-10 mdr: 2016-02-01 11:56:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886870] [to:+14352497988] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003AB0202] -Feb 1 11:56:54 ip-10-0-0-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123912523] [to:+18127816512] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786347625] [to:+17185043245] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309568] [to:17856336771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048373858] [to:+13218329967] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155561266] [to:+13392191988] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173104914] [to:+18583606809] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705327678] [to:+19018430799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435472256] [to:+14438550773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133339686] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-10 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474918999] [to:12102847062] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18107282075] [to:+18108527302] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:54 ip-10-0-0-11 mdr: 2016-02-01 11:56:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045548803] [to:+19047584191] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:54 ip-10-0-64-11 mdr: 2016-02-01 11:56:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18017357171] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783029700] [to:+14788419973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736170934] [to:+19738146335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17122163402] [to:+19719998220] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-20 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670911] [to:+447881289336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860847] [to:12674562728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213307999] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026021978] [to:+15028041120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12024469020] [to:+13019179610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406841939] [to:+13479139602] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19514038808] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-20 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451229389] [to:+447880690771] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179610819] [to:+13478023719] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17656318246] [to:+16466691791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14409698730] [to:+14407938563] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302179005] [to:+13302374642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14796516232] [to:+15082711366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555238] [to:+19542993607] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177524347] [to:+18563566379] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314344043] [to:+19318967229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477220189] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045946178] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110202] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13167655106] [to:+14702051038] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17048366514] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645563913] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047860052] [to:+14043900214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566891110] [to:+17605898329] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16039535036] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164022570] [to:+12162393881] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147622621] [to:+16465037909] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095357123] [to:+19028018422] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283207677] [to:+14073372677] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462018749] [to:+19148485395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654144859] [to:+13477869967] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17734705714] [to:+16784967263] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18607969149] [to:+17472237337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030067] [to:+19027041286] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13189348307] [to:+14242868439] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249192737] [to:+13474916344] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19404731382] [to:+19404634229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525758955] [to:+13866017159] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-64-11 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12046985901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178616251] [to:+15863315693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167384381] [to:+13476672668] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19039268925] [to:+14692052450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057172831] [to:+17059102287] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013140997] [to:+19014449076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-10 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279166379] [to:13049529021] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:55 ip-10-0-0-11 mdr: 2016-02-01 11:56:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19793246593] [to:+19794265610] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179772592] [to:17187726718] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15014381539] [to:+12132957726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14012560076] [to:+14017680048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602249673] [to:+12606337335] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17048421154] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14062041863] [to:17406480005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574011211] [to:+13476672711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138220513] [to:17867187153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:17199373385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608490] [to:13055903134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17788739747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021980] [to:19022200557] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065802513] [to:+19172592622] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405324] [to:13057442398] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-10 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:56 ip-10-0-0-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975277] [to:16232528883] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:56 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043197644] [to:+18046242462] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139746] [to:17813859091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467389396] [to:18593587700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13312086409] [to:13122561848] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131888] [to:17207379653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318968590] [to:19312134313] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398786296] [to:+12313318153] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:17183550489] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18632347777] [to:+18637347510] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:12342059357] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803209640] [to:+19142062180] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169268490] [to:14708997395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104700920] [to:+12342313024] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-10 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18705573149] [to:+19142061352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-10 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-20 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:57 ip-10-0-64-11 mdr: 2016-02-01 11:56:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:57 ip-10-0-0-11 mdr: 2016-02-01 11:56:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188819851] [to:+15186155639] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16177065540] [to:14133301954] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-20 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398786296] [to:+12313318153] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145774474] [to:+14388095850] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17194265893] [to:17659869917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279997910] [to:18607195823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513593890] [to:+13479377526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16507697572] [to:+12134786862] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038914781] [to:+15873231559] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016188898] [to:+12016215261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345969615] [to:+12135760580] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977666] [to:12564902241] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17188069005] [to:17082090289] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-10 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144448615] [to:+14387927527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17728004705] [to:13046213921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865369] [to:13045592736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:16159202960] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16202537787] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-10 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316149] [to:14197223799] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:58 ip-10-0-0-11 mdr: 2016-02-01 11:56:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16265085423] [to:16265499396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15083715338] [to:+18133088301] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:58 ip-10-0-64-11 mdr: 2016-02-01 11:56:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024871237] [to:+14197768065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474731464] [to:+16474918912] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859676734] [to:+15852822695] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465641653] [to:12034196400] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077826] [to:14388287178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011622190900900] [to:+14088683465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:18484699172] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:16614925244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513188454] [to:+15109722017] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:16788638142] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988393] [to:17743926481] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455147677] [to:+18456220573] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123496] [to:14046048437] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063022935] [to:+13025851813] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279165802] [to:16107817097] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-11 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:56:59 ip-10-0-64-10 mdr: 2016-02-01 11:56:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:56:59 ip-10-0-0-10 mdr: 2016-02-01 11:56:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306638098] [to:+13309358238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286036] [to:15405290352] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638555227] [to:18148880520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146008232] [to:15145066961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266158] [to:16159220640] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13045946178] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19024039616] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15732301875] [to:+17277568838] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759934417] [to:+15754483318] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16237036770] [to:+18722259470] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326506276] [to:50498963042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185570868] [to:+14506390417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734171738] [to:+18629020661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12148816687] [to:+17027474935] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12819421586] [to:17203076596] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18139220777] [to:14842749952] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199035384] [to:+13658001661] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040418] [to:15144755950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-10 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12017658994] [to:14692749292] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:00 ip-10-0-0-11 mdr: 2016-02-01 11:57:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346931009] [to:+14197767406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:00 ip-10-0-64-11 mdr: 2016-02-01 11:57:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14156400057] [to:+17077236218] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854854291] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045314249] [to:+17408796696] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046244573] [to:12283270012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309681946] [to:13367444133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14786363171] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038520956] [to:+19783231058] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377683] [to:18122398795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068711516] [to:+15068029730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222393] [to:14236184494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-21 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E20602] -Feb 1 11:57:01 ip-10-0-0-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096397055] [to:15098727188] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072429509] [to:15593104354] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:01 ip-10-0-64-10 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472301] [to:14233808616] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17045245517] [to:+16109105980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:01 ip-10-0-0-11 mdr: 2016-02-01 11:57:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304397] [to:19185334412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834396] [to:19183275415] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417584] [to:16472021642] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634876] [to:19734194260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15042701059] [to:+12267981185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15399999095] [to:17606253879] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160359] [to:14439387977] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18042216973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18042216973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:16093300749] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14194965595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:14047912607] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:14047912607] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784997755] [to:+19176366078] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15167106796] [to:+18477568766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899210859] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808029257] [to:+15874100883] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243103068] [to:17737088514] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132956717] [to:19106742136] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-10 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218293] [to:16069470168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301956] [to:17246815626] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-0-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069937966] [to:13067375612] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465138836] [to:17402482693] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:02 ip-10-0-64-11 mdr: 2016-02-01 11:57:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16463729103] [to:+12019955901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047587132] [to:19046001946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043593] [to:19022172437] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782996188] [to:+19142797362] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-11 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133085048] [to:17246784961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-11 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065399] [to:12527021147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-20 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447947561824] [to:+447520672170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:03 ip-10-0-0-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802642053] [to:+15874086612] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:03 ip-10-0-64-10 mdr: 2016-02-01 11:57:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762841219] [to:+19727521281] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020339] [to:15813097401] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746014] [to:12054964308] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:18157864769] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735280910] [to:+17207291591] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706730521] [to:19139518243] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132030036] [to:+15138550155] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0201] -Feb 1 11:57:04 ip-10-0-0-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19083423917] [to:+19734535433] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-0-11 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567739688] [to:+19792326063] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817010098] [to:14182268655] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-11 mdr: 2016-02-01 11:57:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12092511344] [to:12096029286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:04 ip-10-0-64-10 mdr: 2016-02-01 11:57:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12543831754] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500032D0202] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15852107765] [to:+15852823677] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195930514] [to:+18193039778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12122028618] [to:16479241577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573335666] [to:+18572190851] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14137689932] [to:+15087884625] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244331567] [to:+18724009119] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14318003617] [to:12046985901] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966934] [to:17575025222] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17028158214] [to:14242969878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045665089] [to:+13867425275] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12168343281] [to:14403847756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968006] [to:14049158941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168963] [to:15085232917] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802095099] [to:19122202381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348833] [to:18768616884] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15134459946] [to:15137204626] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057618982] [to:+16474950422] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398777146] [to:+15614124478] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214064] [to:+16034130991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192706072] [to:+14197316244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024491428] [to:+19028018543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303578332] [to:+12626483448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436849646] [to:+14437202629] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18573335666] [to:+18572190851] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031965] [to:12185568492] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058286954] [to:+12262409601] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199166322] [to:19193386897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143242013] [to:+18572194679] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13023744931] [to:12342077216] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17049607499] [to:+19802093296] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17808030080] [to:+15874006697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13202975423] [to:16052996699] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:05 ip-10-0-0-11 mdr: 2016-02-01 11:57:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19187728011] [to:+18134303357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:05 ip-10-0-64-10 mdr: 2016-02-01 11:57:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192714] [to:16092414546] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078611771] [to:+13479478183] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13199835093] [to:18592507160] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454069797] [to:+13476856931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939070] [to:12679927048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13122561848] [to:+13312086409] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19732803979] [to:+18623082122] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15149439137] [to:+14388078727] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19319526153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265810075] [to:+12262415181] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735867068] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12396035622] [to:+17278600674] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358238] [to:13306638098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-20 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20603] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403815129] [to:+13012311295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001046] [to:17058457280] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-20 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16314664336] [to:+16319802099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-21 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447578600340] [to:+447451242986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003010201] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834240] [to:17163075109] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-11 mdr: 2016-02-01 11:57:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425217] [to:12055144465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:06 ip-10-0-64-11 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628037193] [to:+19018430794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:06 ip-10-0-0-21 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447578600340] [to:+447451242986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003010202] -Feb 1 11:57:06 ip-10-0-64-10 mdr: 2016-02-01 11:57:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659945553] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508097595] [to:+17784020219] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039525238] [to:+15873158057] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183001203] [to:+13479801454] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16366678501] [to:+18133088551] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:13139748494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305207] [to:15182538952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14092136581] [to:+12138025913] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19033303468] [to:+15103136063] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232207768] [to:+12135593347] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782442634] [to:+14706733898] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19365723713] [to:+19172661760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17179536217] [to:+19177373376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977302] [to:17173316261] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:07 ip-10-0-0-10 mdr: 2016-02-01 11:57:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165873041] [to:+16178634543] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-10 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572409941] [to:14843629867] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:07 ip-10-0-64-11 mdr: 2016-02-01 11:57:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774641] [to:18484699172] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182482] [to:17023258906] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245622630] [to:+17248032362] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403815129] [to:+13012311295] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15079938358] [to:+16412431791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18042928704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011593986127584] [to:+13478303802] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364405] [to:+14072162830] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:15177069494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19412965020] [to:+19418705345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:17809822154] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674011] [to:13049425310] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:13213307999] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602510242] [to:+19792326112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158256467] [to:15596637180] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788584818] [to:+17636346721] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19793246593] [to:+19794265610] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197316236] [to:14196104493] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666088] [to:18054599016] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-11 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666088] [to:18054599016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463492501] [to:13478181412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:18286341003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:08 ip-10-0-64-11 mdr: 2016-02-01 11:57:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433733266] [to:+12405457893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15092623158] [to:18326661967] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:08 ip-10-0-0-10 mdr: 2016-02-01 11:57:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16163239186] [to:13133304878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279353434] [to:213541494715] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13609728859] [to:+13609494828] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026830684] [to:+19172319055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14173652762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139213154] [to:18135076732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15142479030] [to:+16136045037] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12097347134] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538954] [to:12018826775] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:19788668379] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19038241484] [to:+17474006136] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046697435] [to:+19785336979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874244] [to:13043898996] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-20 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053027015] [to:17056427095] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12299770399] [to:+13476671284] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474946811] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17274701951] [to:+17279985231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-20 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727740205] [to:18289802238] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000298] [to:13062279108] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887447] [to:14232239462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:09 ip-10-0-64-10 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:09 ip-10-0-0-11 mdr: 2016-02-01 11:57:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106086036] [to:+12105718764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13604300048] [to:+13606027398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236412980] [to:+14153260231] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774229] [to:19733806169] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106225372] [to:+17279986004] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-21 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E20604] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14788419973] [to:14783029700] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269274720] [to:+12264555307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18589568699] [to:17063618985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202332521] [to:+17206232150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-10 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372242715] [to:+18583603829] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141607] [to:18193342282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-21 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624741] [to:+447871769353] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736072] [to:14133516124] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:10 ip-10-0-0-11 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206234948] [to:12316796798] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16179010338] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:10 ip-10-0-64-10 mdr: 2016-02-01 11:57:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067679] [to:13525930957] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597362075] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673440742] [to:+14582016798] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707660329] [to:+18456222315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18052537699] [to:18052164197] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15089580249] [to:+15085569025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068029127] [to:12105879737] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048283] [to:16084224934] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021768] [to:19028807119] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-11 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:11 ip-10-0-0-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783170149] [to:+16042594170] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363003] [to:18434218324] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:11 ip-10-0-64-10 mdr: 2016-02-01 11:57:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043411344] [to:17703801508] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158042151] [to:+19142817256] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199203570] [to:+19715121338] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143242013] [to:+18572194679] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047166266] [to:+12262411088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019273156] [to:+16467389019] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594636] [to:16147072197] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041459] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043187636] [to:+13867428874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804180] [to:13152832970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804180] [to:13152832970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875005373] [to:+15873154437] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033214064] [to:+16034130991] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308068245] [to:+15304882797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122754397] [to:14199755449] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708941033] [to:+16784348343] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585917] [to:12063779304] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512561439] [to:+18484824135] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218293] [to:16069470168] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19162926458] [to:19162566691] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-0-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474406627] [to:+18572191273] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-11 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844310884] [to:+16106999319] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:12 ip-10-0-64-10 mdr: 2016-02-01 11:57:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14105643607] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18488634876] [to:19734194260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804180] [to:13152832970] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273423732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192855207] [to:+19732985362] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13182781308] [to:+17277569908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708941033] [to:+16784348343] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19365723713] [to:+19172661760] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582568616] [to:16464315791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12696356093] [to:12699938528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15072131325] [to:+15072994988] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174346280] [to:+13477868593] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14159889263] [to:16147835888] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008155] [to:17659776698] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102847992] [to:+14158539409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192902306] [to:+17744255108] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412090] [to:15195502740] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465478820] [to:15182217177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072636] [to:15148927516] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-10 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485589] [to:19175663170] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:13 ip-10-0-64-11 mdr: 2016-02-01 11:57:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:13 ip-10-0-0-11 mdr: 2016-02-01 11:57:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-20 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447538141626] [to:+447418328953] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438408] [to:17063946577] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163014678] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708941033] [to:+16784348343] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485589] [to:19175663170] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094711] [to:18562005472] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573756443] [to:+17185212728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485589] [to:19175663170] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492369] [to:12817301045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093391] [to:18192103932] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143956724] [to:+17408798065] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14308087405] [to:16624208708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102301] [to:17403579902] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293099147] [to:+15108537462] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197097082] [to:+12267901978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-11 mdr: 2016-02-01 11:57:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16197324706] [to:14059682699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:14 ip-10-0-0-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:14 ip-10-0-64-10 mdr: 2016-02-01 11:57:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328899150] [to:+17323774903] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14143792288] [to:+16474952257] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14162627425] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042593517] [to:12508855334] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:13212176931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150374933175] [to:+14434035408] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762664058] [to:+13366450166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379180] [to:15163667606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133778624] [to:+14132736835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-21 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520623206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038565090] [to:+17604748595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13857430334] [to:+17329869524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433717152] [to:+13214068144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19405958247] [to:+14695326692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-21 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447833235094] [to:+447418327410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003E20605] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877834041] [to:+15874097072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364120] [to:+18108528063] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:18477220189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477619667] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:17578280744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-64-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059070637] [to:+19143029345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213562102] [to:+13479749106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13065019877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14076336884] [to:13528574229] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:15 ip-10-0-0-10 mdr: 2016-02-01 11:57:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16158076271] [to:16159755311] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178211133] [to:+17184169174] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15399999319] [to:50497807416] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822695] [to:15859676734] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560226] [to:14057400604] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135593347] [to:14232207768] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185246372] [to:+15183440454] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131091] [to:18325375883] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502761215] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472338566] [to:+16474953739] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296071] [to:13372870183] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-11 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263390108] [to:+17097005334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-0-10 mdr: 2016-02-01 11:57:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:16 ip-10-0-64-11 mdr: 2016-02-01 11:57:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666014] [to:15865533397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195147557] [to:+12138063817] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193017481] [to:+16474965455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048033459] [to:+16042651839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137204626] [to:+15134459946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:13342007467] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188343310] [to:+19177739351] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17027739957] [to:+17025085669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054964308] [to:+17604746014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024098639] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304421032] [to:+13302370399] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:19177170477] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804152] [to:17868059510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-11 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-10 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172661320] [to:17058406555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:17 ip-10-0-0-10 mdr: 2016-02-01 11:57:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18782957773] [to:+17248030418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:17 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798533] [to:12527231974] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700432] [to:18167999750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866098105] [to:+18188563111] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595527712] [to:+13475089077] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262202486] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13019790382] [to:+12405587809] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:12035929776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092674232] [to:+19287076550] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19092748387] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14357764117] [to:12674078082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:18 ip-10-0-0-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035183248] [to:+19599999434] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18568993174] [to:+18569550430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048283] [to:16084224934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-10 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:18 ip-10-0-64-11 mdr: 2016-02-01 11:57:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063618985] [to:+18589568699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478082069] [to:17179192220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335159] [to:15406540096] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733849] [to:17069901050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13065263861] [to:+13064000236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14698260955] [to:+14697516836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245089] [to:18047291368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475807431] [to:18644662538] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16319800847] [to:12408554015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137957] [to:17043106315] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869967] [to:17654144859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122953105] [to:+14122302146] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145098787] [to:+18046246465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563566379] [to:13177524347] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16195048936] [to:+17027475697] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12486393254] [to:15624805634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18314288842] [to:18315952061] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145431529] [to:+14158908087] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400857] [to:15615743657] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+16172193227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131888] [to:17207379653] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796954] [to:17405412623] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:19 ip-10-0-0-11 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318169] [to:12312029281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-11 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023226105] [to:+16474954838] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:19 ip-10-0-64-10 mdr: 2016-02-01 11:57:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148988393] [to:17743926481] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147432] [to:16155731049] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19176635497] [to:16097878091] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12404077785] [to:17578979006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12039063694] [to:+16465139124] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038611636] [to:+17748557040] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134617] [to:+15795002819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044824943] [to:+14043411988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066179612] [to:+12135878426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132996912] [to:+18133204684] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234430331] [to:+14156499051] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873272412] [to:14163203924] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17047277742] [to:18038045127] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264556621] [to:12263786033] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046725907] [to:+14242769123] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:15732810942] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748962] [to:13049921123] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13063146605] [to:+13064000431] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14237214414] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273624884] [to:13852527263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462587100] [to:+12138065820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693349561] [to:+19725345431] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408505] [to:14234651670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16073424038] [to:+17189627326] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017508185] [to:+18572408242] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025258217] [to:+17408798576] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306638098] [to:+13309358238] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018976] [to:19154070102] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-11 mdr: 2016-02-01 11:57:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14436303551] [to:+14108745885] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:20 ip-10-0-0-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467018976] [to:19154070102] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:20 ip-10-0-64-10 mdr: 2016-02-01 11:57:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955614] [to:12013591628] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535549] [to:14026098562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727503025] [to:18599164432] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176006269] [to:+19142815365] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185177724] [to:+14308088170] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294220021] [to:+16466876628] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462587100] [to:+12138065820] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802676059] [to:+15103137202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850906] [to:14782783283] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17814357417] [to:18048986192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025148146] [to:+15028049281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106086036] [to:+12105718764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-11 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193035011] [to:18193450103] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-11 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17704683288] [to:+19298411064] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040826] [to:15023411605] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-0-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058477] [to:19028305624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562848822] [to:+14242797132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14259392511] [to:12532049130] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:21 ip-10-0-64-10 mdr: 2016-02-01 11:57:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15706042276] [to:+19412642194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-21 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797537] [to:14782974469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177578564] [to:+18173988106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202332521] [to:+17206232150] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16139030067] [to:+19027041286] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124365987] [to:+19122005572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133735771] [to:15048120439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-20 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674576] [to:+447508538937] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18437075181] [to:+18435345319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14849269015] [to:+14844124750] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198028802] [to:+12267903565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-11 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168290234] [to:+16474989855] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044183651] [to:+12135878970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-11 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17206233466] [to:19704020118] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:22 ip-10-0-0-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025376] [to:16513284459] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:22 ip-10-0-64-10 mdr: 2016-02-01 11:57:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822220] [to:14143267023] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015719] [to:13062403665] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022873772] [to:+13025955012] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177578564] [to:+18173988106] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252398553] [to:17045022703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176515319] [to:+17749921786] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233226427] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035661725] [to:+16034134831] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477130829] [to:15307843939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109722017] [to:19513188454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-11 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364805] [to:+19703159819] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:23 ip-10-0-64-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-10 mdr: 2016-02-01 11:57:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432302931] [to:+19172835490] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:23 ip-10-0-0-11 mdr: 2016-02-01 11:57:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085562357] [to:18126185701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974033] [to:16073335664] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437204669] [to:15709395855] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:15714251008] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428071] [to:12012567635] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242218859] [to:13105005606] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822141] [to:15853319431] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134786743] [to:15403157781] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816433513] [to:18326928002] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17809654462] [to:+15873151664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13609728859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243365897] [to:19108765743] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476671284] [to:12299770399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019044] [to:12509819012] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802981709] [to:+13203737317] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427817] [to:16238006727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:15166538130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094770] [to:17044534051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478028438] [to:16313395900] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:24 ip-10-0-64-11 mdr: 2016-02-01 11:57:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746265] [to:14174509614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:24 ip-10-0-0-10 mdr: 2016-02-01 11:57:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18657123487] [to:+14403594620] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735797] [to:18104889407] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053026713] [to:17059201244] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12694558225] [to:+13479139918] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477604963] [to:+13475185117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958262] [to:16788765224] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16233838217] [to:14808434711] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15152032714] [to:15156896175] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185034] [to:17703093695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405381] [to:17862536268] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314121] [to:18504207882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13862154995] [to:+13866012349] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18637347137] [to:18435162305] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526154] [to:14404205968] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938913] [to:16093135415] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722258094] [to:18129100732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478029722] [to:12196715271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:15735867068] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408924137] [to:+18133243269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823026] [to:15858310193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:25 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165535457] [to:+17162790260] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:25 ip-10-0-64-10 mdr: 2016-02-01 11:57:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334289] [to:19893905180] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19122202381] [to:+19802095099] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733898] [to:14782442634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812449] [to:12519793635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362805143] [to:+18639491558] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038330237] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715125292] [to:18282849460] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892368] [to:16307010913] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074028025] [to:+17743570193] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784342659] [to:16785081099] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044662] [to:12146419750] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12105879737] [to:+15068029127] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307865912] [to:+13122753872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16786834779] [to:+14242797516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645530083] [to:+14242866178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185806722] [to:+14387931818] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407966] [to:12263479304] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857881123] [to:+12138024006] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145460909] [to:+14388085893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14708997395] [to:+15169268490] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674376497] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602514470] [to:+12342517699] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-10 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12159062626] [to:+12678444168] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:26 ip-10-0-64-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15184813569] [to:13155705280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:19157035684] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12026015272] [to:12028390662] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:26 ip-10-0-0-11 mdr: 2016-02-01 11:57:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153954513] [to:+12138739986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434218324] [to:+14243363003] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753053371] [to:+17194960194] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18018903145] [to:15869806118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473439872] [to:12528837978] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19312220898] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412554896] [to:+15415393079] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804717] [to:16095196199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039741336] [to:+18438720858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18595950951] [to:+19177328097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146233123] [to:+17408796432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033E0301] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736341739] [to:+14072681340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692749292] [to:+12017658994] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15022083541] [to:15026897622] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819985704] [to:+15817015752] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-64-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:17183550489] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-10 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479372544] [to:19109757731] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:27 ip-10-0-0-11 mdr: 2016-02-01 11:57:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792564065] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093311053] [to:+17323774382] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127171] [to:17575742106] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025748433] [to:+19027030852] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381748] [to:19087639247] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493646] [to:13525984956] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302090749] [to:+13309708841] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015852254] [to:+14018677601] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146233123] [to:+17408796432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500033E0303] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17815392509] [to:+19417256212] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454766014] [to:+18453632332] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369381748] [to:19087639247] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612408761] [to:13158700630] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885561] [to:13616480312] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707610] [to:15854650528] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087205] [to:17809532175] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895338783] [to:+19895697349] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785867427] [to:14047960525] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366814534] [to:+13369381424] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14079147692] [to:+13217309634] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318169] [to:12312029281] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-10 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985231] [to:17274701951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:28 ip-10-0-0-11 mdr: 2016-02-01 11:57:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326063] [to:19567739688] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743193418] [to:+15089166408] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407481874] [to:+17036466469] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063508346] [to:+14703335810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095977030] [to:+19027003915] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153747052] [to:+16465037033] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405538954] [to:12018826775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12193814052] [to:+17027181093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674011] [to:13049425310] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852824931] [to:13153109786] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062836] [to:19024881844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042736673] [to:+17185041336] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192969] [to:12077468200] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16825007476] [to:18178973591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736201653] [to:+18506314802] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522586352] [to:+18133243079] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464140] [to:12108720157] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-10 mdr: 2016-02-01 11:57:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:13059785955] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:29 ip-10-0-0-11 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:29 ip-10-0-64-10 mdr: 2016-02-01 11:57:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15187757701] [to:+13477973903] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405852825] [to:+12408924456] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593147635] [to:+14243364291] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084211] [to:16782063328] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040325] [to:+17547774410] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847441875] [to:+15104477137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326538151] [to:18329968142] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156499051] [to:14234430331] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-21 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447960263209] [to:+447520609622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588601] [to:14402066732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-11 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19718880919] [to:+15036478810] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:30 ip-10-0-64-10 mdr: 2016-02-01 11:57:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17027739957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:30 ip-10-0-0-10 mdr: 2016-02-01 11:57:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164159542] [to:+14402528709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15194664354] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053738010] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328899150] [to:+17323774903] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14799357419] [to:+19543235705] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056427095] [to:+17053027015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546613259] [to:+18326538138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190404] [to:15186057694] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025958262] [to:16788765224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564089100] [to:+16466328743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087061] [to:15875012094] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314262] [to:13309372474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899195486] [to:+16474916097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612400857] [to:15618086032] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-11 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:31 ip-10-0-64-10 mdr: 2016-02-01 11:57:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:31 ip-10-0-0-11 mdr: 2016-02-01 11:57:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13023880110] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13023880110] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164995] [to:14703638398] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13309358238] [to:13306638098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813862162] [to:16462179061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12246169818] [to:+19415255391] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13043898996] [to:+14023874244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155639] [to:15188819851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176363627] [to:+17329081688] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373840151] [to:+19142060812] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058301543] [to:+17279987054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597362075] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973094] [to:15702909432] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002712] [to:16787912139] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12133055690] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302879] [to:14122982312] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017819538] [to:+12139359880] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736669557] [to:13178693572] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17802642053] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12027179714] [to:13023993500] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864800164] [to:13169900153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896142] [to:12563070954] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786861] [to:12018526446] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079839] [to:19542903192] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332930] [to:16623926480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123229507] [to:+19122005632] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853632112] [to:+15852821654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16362991914] [to:+14158535798] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477691594] [to:19194369934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264553276] [to:12264560405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660475] [to:18653096578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232842398] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709032476] [to:+15703977086] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130659] [to:19802390418] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13047046195] [to:+12136163958] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-11 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042317612] [to:+19802093813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:32 ip-10-0-0-10 mdr: 2016-02-01 11:57:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377526] [to:12513593890] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:32 ip-10-0-64-10 mdr: 2016-02-01 11:57:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042976179] [to:+13477989486] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155161265] [to:+13478082076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033122704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189629961] [to:18434802838] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174914965] [to:+17248032746] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19045997016] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128442251] [to:+14242768967] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18109565869] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404416] [to:16039535036] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19705844179] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135874607] [to:13175384894] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543130265] [to:12544215220] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17167480479] [to:17163075931] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653605640] [to:+13025851245] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736690633] [to:19287812820] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389945788] [to:+14506390028] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621534] [to:17029294790] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601884] [to:19053514268] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144755950] [to:+15817040418] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159434426] [to:+13478086292] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733480] [to:16365448219] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-11 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12085714844] [to:+12085010851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:33 ip-10-0-64-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:33 ip-10-0-0-10 mdr: 2016-02-01 11:57:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232158220] [to:+15612408365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209249] [to:15022299299] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14033522751] [to:+15873157762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343553] [to:17403435461] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018543] [to:19024491428] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132953175] [to:16625422549] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473238] [to:12763656590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18016903727] [to:+12133550887] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597548100] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075109] [to:+19172834240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17706661977] [to:+13479801746] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:34 ip-10-0-0-11 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:17183550489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398225830] [to:+17864804586] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:34 ip-10-0-64-10 mdr: 2016-02-01 11:57:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12297983187] [to:+18639493137] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17788722429] [to:+16042653019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192181] [to:+19178777407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12029991594] [to:12027609712] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884760] [to:14439832454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17866098105] [to:+18188563111] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15745143949] [to:+12695755337] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:19852249314] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14025906387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614489624] [to:+12132951858] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822220] [to:14143267023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19174590451] [to:+13478993492] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-10 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17409102301] [to:17403579902] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043846065] [to:+18046246966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-11 mdr: 2016-02-01 11:57:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719133] [to:19545295841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-0-10 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233808616] [to:+16465472301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:35 ip-10-0-64-11 mdr: 2016-02-01 11:57:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176029901] [to:+12132953375] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19202412590] [to:+12627776515] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314936] [to:19375221507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068973733] [to:+12264559943] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:17096498794] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-21 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451235966] [to:+447944433131] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062838] [to:17196445912] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17208391758] [to:+17204637986] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873152116] [to:16047268795] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653605640] [to:+13025851245] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479124144] [to:+13473438146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405850128] [to:+12029991508] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328611611] [to:12166323512] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15107799458] [to:12096226480] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898329] [to:12566891110] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14025906387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477148696] [to:12174331537] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278196902] [to:12708718493] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149963041] [to:16148960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15168302861] [to:15168088035] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177376742] [to:19312099315] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014445197] [to:19016725811] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17133035933] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407604868] [to:+18629551607] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041937] [to:15066070699] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337516] [to:19852151209] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745203] [to:15132404555] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142064578] [to:13472786001] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133301954] [to:+16177065540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:36 ip-10-0-64-11 mdr: 2016-02-01 11:57:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:36 ip-10-0-0-10 mdr: 2016-02-01 11:57:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12677134985] [to:+17185676406] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:19563108585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675955697] [to:+12085012527] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437561330] [to:+13072402162] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679724799] [to:+14842842306] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034555238] [to:+19542993607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045161] [to:19029818636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396177] [to:16144042900] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303357] [to:19187728011] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404686] [to:18282165725] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123194520] [to:+17278197640] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17814080737] [to:+17816548869] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19895334142] [to:19898022269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603676363] [to:+12062585463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:37 ip-10-0-64-10 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-10 mdr: 2016-02-01 11:57:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524785558] [to:+19417256164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:37 ip-10-0-0-11 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007946] [to:19793249766] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-21 mdr: 2016-02-01 11:57:37 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306636427] [to:+13308503610] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049522170] [to:+13369383504] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145698705] [to:+14387945607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024398620] [to:13024161845] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12626223014] [to:+14144006005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18289802238] [to:+17727740205] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372677] [to:18283207677] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951856] [to:19099044260] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316275951] [to:+16315317163] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477434094] [to:15195885745] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652479992] [to:+12135760259] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319055] [to:18026830684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-20 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Voxox] [to:+447451215738] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12392061031] [to:+12399000221] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649103] [to:19014624422] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-10 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479124144] [to:+13473438146] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046679918] [to:+12138228805] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316275951] [to:+16315317163] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13133339686] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-10 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569887] [to:15039845585] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:38 ip-10-0-0-11 mdr: 2016-02-01 11:57:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612407665] [to:15612944177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:38 ip-10-0-64-11 mdr: 2016-02-01 11:57:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17748557040] [to:17038611636] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042167185] [to:+18328042929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-21 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476802301] [to:+13436001514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18565408893] [to:+18563126402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188069348] [to:+14387921250] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15678681638] [to:+19172668977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034354655] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024529861] [to:+19027030950] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16316275951] [to:+16315317163] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14786363171] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-20 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527231974] [to:+19142798533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13135984252] [to:+13479192016] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:18609978853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367444133] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-20 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-10 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206290290] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474963727] [to:12269273669] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-10 mdr: 2016-02-01 11:57:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817606232] [to:+19172318470] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:39 ip-10-0-0-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015719] [to:13062403665] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:39 ip-10-0-64-11 mdr: 2016-02-01 11:57:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569327] [to:17742517938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14403594541] [to:14403969088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478668406] [to:+13478303293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676029] [to:19145732989] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15183196209] [to:+15189305292] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046894194] [to:+17744255046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137576] [to:13045946178] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223311] [to:14703435135] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:15134916897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18635292655] [to:+16102008884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-20 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520670436] [to:+447979196659] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866018306] [to:18016335145] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430504] [to:17864007994] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16145171706] [to:16145658252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478120892] [to:14122185928] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022120835] [to:+19027062610] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669376] [to:19073547745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493137] [to:14694351876] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735024] [to:16783903003] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176089239] [to:+19014449930] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478016] [to:16208751113] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158154462] [to:+13479478867] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13059785955] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206290290] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105980] [to:17045245517] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-10 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407875] [to:12896751904] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:40 ip-10-0-64-11 mdr: 2016-02-01 11:57:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617772445] [to:+15614052410] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-20 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447881511744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:40 ip-10-0-0-11 mdr: 2016-02-01 11:57:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322666662] [to:+12819422238] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133209114] [to:18653680142] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243499485] [to:+15209996955] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195931070] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15023875985] [to:+19318968622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16136779040] [to:+14387954248] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457502319] [to:+19172659669] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362296635] [to:+19364173883] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178643638] [to:+19172610859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428874] [to:19043187636] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188343310] [to:+19177739351] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109487623] [to:16785723576] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15198028802] [to:+12267903565] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815365] [to:19176006269] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-10 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262407966] [to:15198164287] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:41 ip-10-0-0-11 mdr: 2016-02-01 11:57:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18108588627] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:41 ip-10-0-64-11 mdr: 2016-02-01 11:57:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18184366353] [to:+17248034881] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128871495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411046] [to:16137771306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475089077] [to:18595527712] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097632331] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724008422] [to:18128871495] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034196400] [to:+16465641653] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026982765] [to:+19028019388] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893833349] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722535549] [to:14029681671] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801578] [to:12767337157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802677442] [to:+19802097147] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162480] [to:19196073418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129738288] [to:+15165443566] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608101074] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792200488] [to:+14123016294] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838343] [to:19372056332] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12153503453] [to:+16317705541] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139480] [to:13864022905] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542464754] [to:+15107799580] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-11 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028751] [to:17058902579] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-10 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:42 ip-10-0-0-20 mdr: 2016-02-01 11:57:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:42 ip-10-0-64-10 mdr: 2016-02-01 11:57:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816200] [to:15026194765] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-20 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373421457] [to:+13374444201] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938481] [to:17277682317] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531523] [to:19316284207] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103744971] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154205682] [to:+13473799490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19893147113] [to:19893137854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13054175782] [to:17864996439] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133289266] [to:+16139091853] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:18189669269] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475570334] [to:15133044338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12268028117] [to:+12262716692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129738288] [to:+15165443566] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966183] [to:16123963584] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:43 ip-10-0-64-10 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16126552342] [to:+17256660476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15703570508] [to:+19172593956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:43 ip-10-0-0-11 mdr: 2016-02-01 11:57:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433371] [to:19088381094] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302090749] [to:+13309708841] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044014018] [to:+16042593898] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13129738288] [to:+15165443566] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:16198189719] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14259711116] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148186] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-20 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520627988] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148186] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023052354] [to:+19027043620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139000787] [to:+18133086328] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19252382406] [to:19252066514] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963882] [to:16097314193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148186] [to:+12064009741] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973903] [to:15187757701] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086273095] [to:+14153260638] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048896314] [to:+15617665916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412747] [to:14046681817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873289159] [to:14039731434] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-10 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:44 ip-10-0-0-11 mdr: 2016-02-01 11:57:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126778942] [to:+14158594134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048135586] [to:12042187860] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:44 ip-10-0-64-11 mdr: 2016-02-01 11:57:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048135586] [to:12042187860] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019527120] [to:+19732985474] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18033238743] [to:+18438720441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12062585695] [to:14252395115] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733328397] [to:+19733595072] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13047166266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874086612] [to:17802642053] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439831344] [to:+12029991491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17865673766] [to:13525297653] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817040424] [to:18194432218] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583048283] [to:16084224934] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404572887] [to:+13309358245] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12183713364] [to:+19492453624] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586816] [to:15176079757] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708362193] [to:+13867423110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144622064] [to:+14387925480] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262202486] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18126709099] [to:15025254511] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-10 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133707355] [to:+14148150970] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185044844] [to:19292415476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:45 ip-10-0-64-11 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:15126391523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:45 ip-10-0-0-10 mdr: 2016-02-01 11:57:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863726930] [to:18638442916] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747172] [to:14014418195] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026920024] [to:+13478086400] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037289984] [to:+16039450694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142558835] [to:+19175638373] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12152816039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14148885086] [to:14142107110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15165977500] [to:19149438042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212008748] [to:+14076336807] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18084622202] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308068245] [to:+15304882797] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144622064] [to:+14387925480] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801072] [to:13053050303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138064643] [to:18175385631] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135596802] [to:15807499130] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373376] [to:17179536217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-10 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144914828] [to:+14144007691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:46 ip-10-0-0-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:46 ip-10-0-64-11 mdr: 2016-02-01 11:57:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18043846065] [to:+18046246966] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356307] [to:12172427722] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102988] [to:16107394924] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15088349506] [to:17742542974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214431753] [to:+19172659107] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194419] [to:17065647259] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074384432] [to:+17277568765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148250922] [to:18149779968] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17059201244] [to:+17053026713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702358870] [to:+19142798168] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466288918] [to:19293936183] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12106779520] [to:+18326505244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878635] [to:19362177816] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12489431568] [to:+19715124907] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439928444] [to:+18438888279] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148927516] [to:+14388072636] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479956] [to:18622356222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-10 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12699829651] [to:+12694308482] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:47 ip-10-0-0-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14245438144] [to:+13025955528] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608905611] [to:+18583146100] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-11 mdr: 2016-02-01 11:57:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:47 ip-10-0-64-10 mdr: 2016-02-01 11:57:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604749138] [to:15059068030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17277767139] [to:+18133202039] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103278146] [to:12293250291] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634559] [to:19404659999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146006562] [to:14145093317] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12016445211] [to:+13867425737] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247323163] [to:+17408797817] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19798885274] [to:19794021041] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15759425035] [to:+18639491365] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178161964] [to:15172150072] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17025085669] [to:17024857525] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955878] [to:17866410456] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19122005572] [to:19124365987] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140162] [to:16133602357] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13025844851] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132519505] [to:19785026388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194121674] [to:14387779878] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067796] [to:17812236873] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479067796] [to:17812236873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784025376] [to:16513284459] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:14199613516] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852072] [to:13025844851] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584458] [to:19044128475] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542043420] [to:+12626483617] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-20 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447816847769] [to:+447418334246] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-10 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17749921428] [to:15084968439] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:48 ip-10-0-0-11 mdr: 2016-02-01 11:57:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18163850764] [to:+14156494916] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:48 ip-10-0-64-11 mdr: 2016-02-01 11:57:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813194565] [to:+15817041653] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174142753] [to:+13473897098] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:17065057133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246784961] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150498785227] [to:+18629551854] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14242969878] [to:+17028158214] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563996439] [to:+19172659445] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396132] [to:12162689638] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13305779692] [to:12342817730] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-21 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447707658095] [to:+447418335484] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17067282563] [to:+18572193748] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18143898575] [to:+19715127397] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312220898] [to:+13477865527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742542974] [to:+15088349506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896004087] [to:+12897690179] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740407] [to:+16463494395] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817002318] [to:14188091039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102542440] [to:17405389082] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15592239124] [to:15597655171] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-11 mdr: 2016-02-01 11:57:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136946367] [to:18128019841] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:49 ip-10-0-64-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12602265744] [to:+12604076568] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:49 ip-10-0-0-10 mdr: 2016-02-01 11:57:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168209714] [to:+17603145568] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778044] [to:12317985734] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15187127031] [to:13474565342] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045592736] [to:+13477865369] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293193666] [to:+18108527980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674078082] [to:+14357764117] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477019474] [to:+16474954737] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342077216] [to:+13023744931] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146867153] [to:+15799770321] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465037909] [to:18147622621] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865748803] [to:17347404593] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024566025] [to:+19028018894] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608101074] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340394] [to:14343867940] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884625] [to:14137689932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562969513] [to:+13479068892] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094999] [to:12244278566] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912029] [to:15199033185] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16152108004] [to:+16157776104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:50 ip-10-0-64-11 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043901] [to:19022259622] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-11 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:50 ip-10-0-0-10 mdr: 2016-02-01 11:57:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604748595] [to:16038565090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406480005] [to:+14062041863] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025830244] [to:16142703924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103631975] [to:+19164690523] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784024642] [to:14033579240] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043408] [to:19293278985] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427680] [to:14804341368] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639340497] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+0114915210517288] [to:+15102540101] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12086501917] [to:+15172527789] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16048033459] [to:+16042651839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13212701097] [to:17879750226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597548100] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18048986192] [to:+17814357417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124296593] [to:+12132959402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802069854] [to:+15874084524] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14803008185] [to:14808782736] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734021] [to:17069382656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072681340] [to:19736341739] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-10 mdr: 2016-02-01 11:57:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407484495] [to:+12139353295] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305295] [to:15185278443] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:51 ip-10-0-64-10 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295275] [to:19195649842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:51 ip-10-0-0-11 mdr: 2016-02-01 11:57:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262409783] [to:19053753151] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862695] [to:+16317705520] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786529970] [to:17788988435] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313631] [to:18502512295] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17187726718] [to:+19179772592] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349398] [to:19179829184] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062298368] [to:+15068039569] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12077468200] [to:+13479192969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966529] [to:12054366219] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-21 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-11 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660096] [to:16035731372] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491301] [to:15309137663] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:52 ip-10-0-0-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:52 ip-10-0-64-10 mdr: 2016-02-01 11:57:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053454842] [to:+17053028843] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C20201] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:12674376497] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691774] [to:13137691755] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14426007690] [to:12052077370] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233779529] [to:+12819422491] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702131267] [to:+15703974305] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733423437] [to:+17187479197] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622966156] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056479] [to:15146592686] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109105810] [to:16109373478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14059227401] [to:+19292201167] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333975] [to:17326913377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13528574229] [to:+14076336884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204958102] [to:+15204338948] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103404060] [to:19294221965] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-10 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13853361874] [to:15753176568] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13133494385] [to:14125202212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464567] [to:18055877741] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:53 ip-10-0-0-11 mdr: 2016-02-01 11:57:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:53 ip-10-0-64-10 mdr: 2016-02-01 11:57:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477911460] [to:+13477973132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669464] [to:555198625953] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16193501216] [to:19175367639] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086610845] [to:+14086183483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177524347] [to:+18563566379] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403579902] [to:+17409102301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408505] [to:14234651670] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725345930] [to:14253773077] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410418] [to:18322637488] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473437482] [to:14845971959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-20 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095354] [to:14384900556] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596231954] [to:+12148149682] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052056012] [to:+15052571976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-20 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782335642] [to:+14158403394] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315206365] [to:+14388095840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192028422] [to:+14197767563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543235705] [to:14799357419] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856425118] [to:+15852822145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-20 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451210640] [to:+447578106723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479543874] [to:13189909452] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083613] [to:18125254719] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:54 ip-10-0-64-10 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405732537] [to:12022863282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-11 mdr: 2016-02-01 11:57:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306284] [to:16363467681] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:54 ip-10-0-0-10 mdr: 2016-02-01 11:57:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19063671977] [to:+18724003928] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19099044260] [to:+12132951856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136002] [to:+19027043576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403215346] [to:+15103227749] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14436813504] [to:16104137050] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706733480] [to:19893325660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735024] [to:16783903003] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178684272] [to:+19177248623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587594] [to:14408644467] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19208505929] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244546686] [to:+13479569548] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432302931] [to:+19172835490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145522462] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004837] [to:17096838764] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023430844] [to:+13474916697] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15036607105] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19512109910] [to:+19093615567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862178747] [to:+13052038708] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194311666] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029946822] [to:+17607013424] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365142310] [to:+19703159111] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12034171883] [to:+16109102092] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789793322] [to:+14044811106] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16614771692] [to:+16614024784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14016492665] [to:+14018677442] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096991158] [to:+14502338104] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276876750] [to:+16474911909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375419329] [to:+18583604959] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235998753] [to:+17605899886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14012521478] [to:+13214067075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16146233123] [to:+17408796432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:0500033E0302] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154799930] [to:+16156147485] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14844797659] [to:+12678676730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563384497] [to:+14158530244] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782997723] [to:+12133550406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18643848369] [to:+14153253089] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415305939] [to:+19714447921] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18026730565] [to:+15184151509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283717286] [to:+17042280578] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14027709999] [to:+13476676898] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137678824] [to:+18133316640] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477548985] [to:+13475188622] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306518634] [to:+16467380722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023258906] [to:+17027182482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16479241577] [to:+12122028618] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13158700630] [to:+15612408761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074305942] [to:+15125597443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15104802646] [to:+15104474204] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477812697] [to:+13478021890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12026579174] [to:+12026609497] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19035195501] [to:+19032130989] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-10 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138835916] [to:+14132715463] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703158778] [to:18035661051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:55 ip-10-0-0-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14504483768] [to:+14387940177] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:55 ip-10-0-64-11 mdr: 2016-02-01 11:57:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17246217439] [to:+17248035672] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:16319656263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403363903] [to:+17409102258] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15054159204] [to:+15058004277] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13364864294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596447781] [to:+14158537019] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585491] [to:13522553410] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306950] [to:19106279680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073413079] [to:+18722259207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003C20202] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304397] [to:19185334412] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013958] [to:16813781252] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459683] [to:14195519177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577308] [to:16198298950] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954310] [to:15023565800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324257955] [to:+18324815762] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:13236359132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156538688] [to:18122256294] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12698838159] [to:13374281304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15877799300] [to:+15873157762] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053028751] [to:17052794128] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16822415337] [to:+14693737547] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801072] [to:13053050303] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703163304] [to:+19703156034] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13069802580] [to:+17097004899] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024833] [to:16136145045] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606608233] [to:+17605899055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778577] [to:19206299218] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025104726] [to:+15022083158] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145066961] [to:+15146008232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418571] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022188900] [to:+19787869397] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-11 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12097347134] [to:+15107799458] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:56 ip-10-0-0-10 mdr: 2016-02-01 11:57:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503577006] [to:+18508950340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:56 ip-10-0-64-10 mdr: 2016-02-01 11:57:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17062600532] [to:+14703336232] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-20 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746829] [to:13044941955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16238006727] [to:+14808427817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473154] [to:12673562217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133622375] [to:+14132715431] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19088920227] [to:+19083824843] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484699172] [to:+17323774641] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896154507] [to:+17189627055] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003110201] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474715585] [to:+17012892898] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099309] [to:13369640625] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131389] [to:13178285159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13437001426] [to:18196617102] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850756] [to:17744000242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694127850] [to:18064334658] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047687] [to:16135394561] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16157965854] [to:+13476674820] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17015096311] [to:+12404357778] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234430331] [to:+14156499051] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536835] [to:13475200616] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-20 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19896154507] [to:+17189627055] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003110202] -Feb 1 11:57:57 ip-10-0-0-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18126778942] [to:+14158594134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-20 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-11 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182683457] [to:+16465130350] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:57 ip-10-0-64-10 mdr: 2016-02-01 11:57:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606759641] [to:+17603145633] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:57 ip-10-0-0-11 mdr: 2016-02-01 11:57:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465473966] [to:12763121331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939212] [to:12675931697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043187636] [to:+13867428874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14256789406] [to:12064190959] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033214884] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604500889] [to:+17344366234] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609422539] [to:+13477735783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185334412] [to:+13476304397] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828718] [to:+14073371251] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094343499] [to:+15164724184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:14033522751] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19543003162] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572195123] [to:13049750613] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16145658252] [to:+16145171706] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15596447781] [to:+14158537019] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-11 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:58 ip-10-0-64-11 mdr: 2016-02-01 11:57:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:58 ip-10-0-0-10 mdr: 2016-02-01 11:57:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305295] [to:15185278443] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149007141] [to:+16149964741] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-20 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264557808] [to:12893390669] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244546686] [to:+13479569548] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262416976] [to:14165203932] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476871881] [to:+16474992984] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022298037] [to:+14157878286] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19029818636] [to:+15068045161] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15868769053] [to:+12485583443] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186057694] [to:+18572190404] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18285486092] [to:17043085429] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315693] [to:15178616251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-64-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600911] [to:12896757203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173963309] [to:15025507945] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-11 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202871] [to:14102587116] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148812082] [to:16174539281] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:57:59 ip-10-0-0-10 mdr: 2016-02-01 11:57:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12264560405] [to:+12264553276] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703093695] [to:+13475185034] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242863189] [to:15185274976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328862] [to:13043805289] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438678276] [to:+15103223856] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237412] [to:12512601939] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18582391354] [to:+16463490997] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102068288] [to:+14437203875] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:13212715976] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804152] [to:17868059510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572444276] [to:+17812774269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046246966] [to:18043846065] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804393483] [to:14352200027] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748875] [to:17752236681] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126005] [to:18038429339] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15624735024] [to:16783903003] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047498] [to:12063052099] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875012094] [to:+15874087061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065307803] [to:+16784968360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:00 ip-10-0-0-10 mdr: 2016-02-01 11:58:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349398] [to:19179829184] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:00 ip-10-0-64-11 mdr: 2016-02-01 11:58:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075825] [to:18195711415] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075825] [to:18195711415] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19253269284] [to:16614288713] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021980] [to:19022200557] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384088] [to:16233299316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892305580] [to:+12897683234] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884208] [to:15712787743] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505013682] [to:+14503286127] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18439928444] [to:+18438888279] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109737920] [to:18143845817] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17052054829] [to:+17053006350] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575814229] [to:+13479713483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563182089] [to:18567230339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072961000] [to:13868689491] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897755] [to:19127072216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654144859] [to:+13477869967] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318378] [to:15803822369] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473887473] [to:+13479198307] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873299676] [to:14036192194] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424732] [to:18039835560] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313910] [to:18504192348] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16049962986] [to:+16042594982] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043964363] [to:+16474915194] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-10 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004620] [to:19026921062] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:01 ip-10-0-64-11 mdr: 2016-02-01 11:58:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19542719124] [to:19543284274] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:01 ip-10-0-0-10 mdr: 2016-02-01 11:58:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563996439] [to:+19172659445] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400493] [to:12605800299] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013114] [to:12522141861] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312099315] [to:+19177376742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18065982909] [to:+12148149206] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729401041] [to:+17726177572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593198923] [to:+16412431267] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18159008225] [to:+18729995348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037176222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:02 ip-10-0-64-11 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17159021567] [to:+12628884274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-21 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046901655] [to:+17123825010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-11 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:02 ip-10-0-0-10 mdr: 2016-02-01 11:58:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799229] [to:16069228519] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788360] [to:15186374277] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19364173883] [to:19362296635] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147757396] [to:+14388077909] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478086446] [to:+16474992993] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675955697] [to:+12085012527] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365200944] [to:+16504860086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14345795043] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-20 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Voxox] [to:+447451215738] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14435065303] [to:+14438550169] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973094] [to:15702909432] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12315987439] [to:12318843162] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473913290] [to:+12262412151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478086446] [to:+16474992993] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479131029] [to:15094608969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13378420341] [to:+17279353798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-11 mdr: 2016-02-01 11:58:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138024006] [to:19857881123] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:03 ip-10-0-64-10 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:03 ip-10-0-0-11 mdr: 2016-02-01 11:58:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968263] [to:19494686732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12196785900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653096578] [to:+19172660475] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17802974204] [to:+16474937005] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166389] [to:17746335118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19362177816] [to:+19365878635] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13067375612] [to:+13069937966] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15104476417] [to:19036503917] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569827137] [to:+18563126471] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388287178] [to:+14388077826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-21 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095354] [to:14384900556] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157776104] [to:16152108004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888321] [to:18433072967] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799229] [to:16069228519] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12262202486] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-0-11 mdr: 2016-02-01 11:58:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16153899582] [to:+16156146625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784345377] [to:16106092219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-10 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018663] [to:19022475063] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068394] [to:19179934329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:04 ip-10-0-64-11 mdr: 2016-02-01 11:58:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995545] [to:12408189886] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062737608] [to:+12342313931] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19052440723] [to:+12262410773] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026920024] [to:+13478086400] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18049390669] [to:+18046242481] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13602277049] [to:12532632927] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786722] [to:169287] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174684392] [to:+14848164763] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626483242] [to:18175003020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678444187] [to:12162878761] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045966529] [to:14046459673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13028589518] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19312220898] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13218329967] [to:18048373858] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468283] [to:13153720394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604661628] [to:+18133202152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249101112] [to:+17248034177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14102068288] [to:+14437203875] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18124937443] [to:+12606337241] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803285733] [to:+19802097845] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046686480] [to:+17636560543] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204958102] [to:+15204338948] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14243681947] [to:+19783649402] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646067297] [to:+19172669884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312165242] [to:+19312577798] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18167999750] [to:+17049700432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027542344] [to:+19027031653] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012294961] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16787884317] [to:+16784345408] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17182166507] [to:+17727668363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-11 mdr: 2016-02-01 11:58:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:05 ip-10-0-64-11 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324859813] [to:+16096144296] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609337345] [to:+16465135357] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:05 ip-10-0-0-10 mdr: 2016-02-01 11:58:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263765560] [to:+12138062444] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18593198923] [to:+16412431267] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597548100] [to:+14157995910] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:19542992886] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147571706] [to:+14388075317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145460909] [to:+15146136823] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317732466] [to:50375463986] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475804001] [to:13155420562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163667606] [to:+13479379180] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785723576] [to:+15109487623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232770236] [to:+14242866725] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003AD0202] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156492222] [to:19315107848] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717776887] [to:16464396085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16143471185] [to:+18638554197] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856676] [to:18503214792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298889083] [to:+16136044226] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346212684] [to:+14086182911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-10 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17744000242] [to:+14156850756] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:06 ip-10-0-64-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694157143] [to:12143262216] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13603532840] [to:+13606383208] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:06 ip-10-0-0-11 mdr: 2016-02-01 11:58:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14043439002] [to:+16465688777] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649256] [to:14197420983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569739] [to:16627621955] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16572148183] [to:+13025955661] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199649256] [to:14197420983] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603492208] [to:+17605899368] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138264243] [to:+12485375853] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262128] [to:19737521939] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043901] [to:19022259622] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608142] [to:16787916909] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142065456] [to:18644836308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985310] [to:14434692601] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309783600] [to:+17123826380] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965527] [to:14808197244] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174197005] [to:+17659869045] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18177578564] [to:+18173988106] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817005965] [to:14189672014] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-11 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:14076908528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185034] [to:17703093695] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834495] [to:15705888412] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:07 ip-10-0-0-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437458470] [to:+19172836909] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:07 ip-10-0-64-10 mdr: 2016-02-01 11:58:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18052330557] [to:+17029015524] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709920841] [to:+13473437781] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-21 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024784] [to:16614771692] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692808360] [to:16167552038] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183550489] [to:+15103404060] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19045997016] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864804152] [to:17868059510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17168127896] [to:+17166661271] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013140997] [to:+19014449076] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055972] [to:19736870717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199613516] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027511076] [to:+19027058406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19739363514] [to:+19738146766] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013312674] [to:+14437204126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632068] [to:13195729371] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19125395508] [to:+17605899166] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009092] [to:19173189577] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17323774382] [to:16093311053] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18176092937] [to:+12538787207] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703335905] [to:16785429314] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801454] [to:17183001203] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14409255346] [to:12164824767] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109156088] [to:+19108888232] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475569920] [to:17057302557] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-11 mdr: 2016-02-01 11:58:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:08 ip-10-0-64-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13616480312] [to:+19798885561] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:08 ip-10-0-0-10 mdr: 2016-02-01 11:58:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107512792] [to:+13203074938] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035099] [to:12167895983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427680] [to:14804341368] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16047268795] [to:+15873152116] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19563108585] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16785081099] [to:+16784342659] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500813] [to:+12264559377] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-21 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326296] [to:+447535170601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15856425118] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818372] [to:18287366500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303337968] [to:+14157876927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038990] [to:12048694412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021344] [to:14038210387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17097632331] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200725] [to:14843664874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185117] [to:13477604963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672474074] [to:16095820507] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-21 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447769157436] [to:+447451220604] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12256784387] [to:+17542220513] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302058130] [to:+13302374899] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194366598] [to:+13437002138] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133243374] [to:12064764241] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-21 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19894020045] [to:19894449832] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15303337968] [to:+14157876927] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471397] [to:18654740296] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308012354] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477220189] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612576691] [to:16782375966] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:09 ip-10-0-0-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805085] [to:18049014171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-11 mdr: 2016-02-01 11:58:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161836] [to:18284462563] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:09 ip-10-0-64-10 mdr: 2016-02-01 11:58:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406297342] [to:+12347556790] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15512252683] [to:+18484824301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14149731010] [to:15596189507] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024881844] [to:+19027062836] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18132302889] [to:+18133244209] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500805] [to:13366931766] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151907] [to:14036200853] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14149731010] [to:15596189507] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563482791] [to:+19177329218] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12546406059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073824] [to:15733808654] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-10 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184766] [to:16517032200] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15614916668] [to:15152301148] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294602587] [to:+17074031505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-10 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:10 ip-10-0-64-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177368474] [to:+19292009905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:10 ip-10-0-0-11 mdr: 2016-02-01 11:58:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319081] [to:13154160606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15755451850] [to:+12133756697] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411064] [to:17704683288] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138221291] [to:14255630357] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676839] [to:12675797122] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138611647] [to:18034794298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572559756] [to:17742232230] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243364832] [to:19892857926] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730486] [to:18608953613] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15856663777] [to:+15852821506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136263954] [to:+13134246299] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369404] [to:14029606483] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19789697202] [to:12177663759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18197400884] [to:+18192011213] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042651839] [to:16048033459] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195502740] [to:+12262412090] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801540] [to:17862367478] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-11 mdr: 2016-02-01 11:58:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:11 ip-10-0-64-10 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:11 ip-10-0-0-11 mdr: 2016-02-01 11:58:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157776104] [to:16152108004] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087061] [to:15875012094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103228913] [to:12294026666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-20 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335458] [to:+447507622951] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478901863] [to:+16474982556] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-20 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738681704] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17057689436] [to:+17053005291] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14237214414] [to:+19417256329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542585319] [to:+17073008441] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742126589] [to:+19259574646] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192028422] [to:+14197767563] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423977] [to:18432760749] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14126079340] [to:+14123464739] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342817730] [to:+13305779692] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-11 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:12 ip-10-0-64-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:12 ip-10-0-0-10 mdr: 2016-02-01 11:58:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13142017928] [to:+13148998403] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987095] [to:17278515797] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062682] [to:19022107030] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450997] [to:13364864294] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023080048] [to:+17194960585] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428841] [to:18644983823] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19372106872] [to:+17604743706] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027182482] [to:17023258906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-21 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177227185] [to:15163041376] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866536] [to:12056718020] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743472] [to:16789015405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587857] [to:12024402433] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604746014] [to:12054964308] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163625178] [to:13157599747] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968598] [to:16783348098] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348077] [to:16785589964] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194122241] [to:14505172310] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147485] [to:16154799930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176453447] [to:+17279986840] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790213] [to:17169076256] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106246101] [to:+14439737211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193901] [to:12076157332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623025] [to:17757457558] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12566891110] [to:+17605898329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606759641] [to:+17603145633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772696] [to:18329517266] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248032145] [to:17249545688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-20 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038990] [to:12048694412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156696911] [to:13233201243] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785338016] [to:15188941084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-10 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536666916] [to:+17344365920] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12819288698] [to:+19794265029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-11 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:13 ip-10-0-64-11 mdr: 2016-02-01 11:58:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438751973] [to:+15406025924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:13 ip-10-0-0-10 mdr: 2016-02-01 11:58:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133894129] [to:18323029105] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438398787] [to:+14437202896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788668379] [to:+15103404416] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024715525] [to:+19027058191] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17729401041] [to:+17726177572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12262369914] [to:+12262430798] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802480130] [to:+19282974676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479801481] [to:16146573496] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-20 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418334246] [to:+447816847769] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134303294] [to:15623221184] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17202928245] [to:+17206235203] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033247] [to:18328971615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14702263172] [to:13346105394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17342366477] [to:+14438550338] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16822139454] [to:18433033972] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13372870183] [to:+12139296071] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16304702109] [to:+14242865258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15087285967] [to:+16412431366] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17703641147] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-0-21 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166375] [to:15086423151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102549848] [to:12524691532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-10 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:14 ip-10-0-64-11 mdr: 2016-02-01 11:58:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17746335118] [to:+15089166389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342517699] [to:12602514470] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139923792] [to:+18133084722] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-20 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447858370549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185041336] [to:14044470940] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204958102] [to:+15204338948] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18652064871] [to:+14694060681] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013294] [to:12315703005] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756106] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145732989] [to:+13476676029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025254511] [to:+18126709099] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-21 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451202572] [to:+447460709909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977768] [to:14843451379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142061352] [to:18705573149] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048819562] [to:+19047584134] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18166738476] [to:+17604747041] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12256784387] [to:+17542220513] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703638398] [to:+16788164995] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684769] [to:18435974243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:15 ip-10-0-64-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136859219] [to:12702564886] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:15 ip-10-0-0-11 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018428193] [to:17577694128] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157812] [to:17806802784] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193296667] [to:+18194122229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12543347152] [to:12099189081] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177906180] [to:+13059014094] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19173639887] [to:+16466875942] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13343154267] [to:+19177086348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593071854] [to:+19513095842] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13133923613] [to:+13134247963] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314802] [to:15736201653] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017064] [to:14407818069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135295275] [to:19195649842] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734815] [to:16209318574] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484457] [to:16085185494] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467380722] [to:13306518634] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192206] [to:16315062729] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19546877862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434201515] [to:+16412431804] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14384900556] [to:+14388095354] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-21 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16363467681] [to:+16367306284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137651833] [to:+12692244506] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652281] [to:14169853069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479544766] [to:17654695117] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-20 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362259445] [to:+16465037329] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798943] [to:16072386906] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078202142] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148148640] [to:15187051887] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19025808454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229067] [to:19148822450] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626484457] [to:16085185494] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572191863] [to:12542164573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292359100] [to:19178687336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-10 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17042280578] [to:18283717286] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:16 ip-10-0-0-10 mdr: 2016-02-01 11:58:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18477220189] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:16 ip-10-0-64-11 mdr: 2016-02-01 11:58:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17243200641] [to:17247308585] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14188173079] [to:+15817014494] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15209996204] [to:14792564065] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17576981452] [to:+17206232218] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177305118] [to:+13178937286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403199466] [to:+14437203744] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720164] [to:15406612629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14342220221] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15189305295] [to:15185278443] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272620] [to:+19142816155] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19492981219] [to:19313146727] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479977843] [to:12546406059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025955854] [to:13028589518] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673339353] [to:+17636849204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788860721] [to:+14043411075] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:16313170234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16628037193] [to:+19018430794] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13436001615] [to:15194947317] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605899055] [to:17606608233] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-10 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693006721] [to:12543392246] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17039967356] [to:15712597894] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:17 ip-10-0-0-11 mdr: 2016-02-01 11:58:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724449910] [to:18152661601] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:17 ip-10-0-64-10 mdr: 2016-02-01 11:58:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16208401031] [to:+19172833980] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16572071944] [to:14404520176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223298] [to:18037167710] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329476355] [to:+19089224105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003AD0202] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816512] [to:18123912523] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18182331785] [to:+13193827527] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156186710] [to:+16157776407] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-21 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402603008] [to:+13203074785] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-21 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447738681704] [to:+447418325390] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148198567] [to:14503691576] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-21 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18456222378] [to:18459059687] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811884] [to:16789946825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312029281] [to:+12313318169] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854650528] [to:+16317707610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:18 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:15743222822] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-11 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731986] [to:16069390228] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:18 ip-10-0-64-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592507160] [to:+13199835093] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377635] [to:14152363366] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896919114] [to:+16474941175] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003700201] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14124284611] [to:14123771945] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477946112] [to:+18456222138] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19103733328] [to:+12815957555] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151907] [to:14036200853] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15208298656] [to:+15204335546] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023172744] [to:+19027030545] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472217712] [to:+12342312654] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023002122] [to:+14387927781] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095323322] [to:+16095434556] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791325] [to:17166098391] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425695] [to:18138587147] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12765916852] [to:+16503001237] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178285159] [to:+15103131389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13344655343] [to:+14072161261] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364450] [to:+18638556790] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043900214] [to:14047860052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016655589] [to:+13858870240] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148818488] [to:19372052810] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479978320] [to:17188085919] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465472286] [to:15042755703] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13308012354] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18655856600] [to:+19545195973] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003700202] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803296594] [to:+14804392377] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471397] [to:18654740295] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428657] [to:13522103124] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045993957] [to:+12048134542] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17072427715] [to:17703641147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163314893] [to:14026418418] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15064760878] [to:+15068029581] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19404634165] [to:19407815329] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004314] [to:19034312126] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405412623] [to:+17408796954] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175008706] [to:+19725348798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-21 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447743466006] [to:+447418336001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-64-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16612210123] [to:+16612285394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242769585] [to:19513509096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-11 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013424] [to:15029946822] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:19 ip-10-0-0-10 mdr: 2016-02-01 11:58:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14123016294] [to:17792200488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077909] [to:15147757396] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065057133] [to:+14703335905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19562066814] [to:+17133526780] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476676898] [to:14027709999] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175638373] [to:16142558835] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379180] [to:15163667606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16512108540] [to:+16125023393] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045946178] [to:+16465137576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13024161845] [to:+13024398620] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746835] [to:15863725208] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15865746835] [to:15863725208] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132955945] [to:17652101133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027056479] [to:15146592686] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136042258] [to:16135527360] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474916097] [to:12899195486] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18729995545] [to:12407726303] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12243104443] [to:14174896460] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982877] [to:14233318177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17189546801] [to:+12018985513] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16608337503] [to:+16602009735] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092414546] [to:+13479192714] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427680] [to:14804341368] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-10 mdr: 2016-02-01 11:58:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326692] [to:19405958247] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625902531] [to:+19015042153] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:20 ip-10-0-0-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:20 ip-10-0-64-11 mdr: 2016-02-01 11:58:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796757] [to:17406498553] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18127816200] [to:15026194765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043576] [to:19022136002] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16019530582] [to:+12485375699] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003970201] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406286516] [to:15408199418] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15134459946] [to:15137204626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052181448] [to:+17273624874] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:6:050003870301] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106279680] [to:+16367306950] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129733872] [to:+14122301768] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017323] [to:16065453528] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14342227295] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791283] [to:17163905854] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162791283] [to:17163905854] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022948465] [to:+19498771451] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:13308124815] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052181448] [to:+17273624874] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003870302] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043445] [to:16138672397] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194044359] [to:+12262430817] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098837] [to:17603912608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784348279] [to:14045166203] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16313395900] [to:+13478028438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068144] [to:18433717152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-11 mdr: 2016-02-01 11:58:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:21 ip-10-0-0-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167279850] [to:+14387927294] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:21 ip-10-0-64-10 mdr: 2016-02-01 11:58:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058457280] [to:+12497001046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-20 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333891] [to:+447525288908] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16034383401] [to:+16039450732] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16052181448] [to:+17273624874] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003870303] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13216950008] [to:+15852822128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652787272] [to:+12139926176] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974109] [to:14086006229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034488235] [to:+16822139303] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479319365] [to:14348515175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786606171] [to:+19172750499] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14434035408] [to:50374933175] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-20 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197887960] [to:+19148990458] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767985] [to:17402023943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435974243] [to:+13478684769] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019730] [to:16047497273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721930] [to:16239990264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022371776] [to:+19027043458] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125731088] [to:+16056366000] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011554599040323] [to:+19174094716] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165785182] [to:+17162792498] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621737] [to:15409071974] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156918952] [to:15024351842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243468] [to:18044794120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:22 ip-10-0-0-11 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126866] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:22 ip-10-0-64-10 mdr: 2016-02-01 11:58:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148823412] [to:+14388042787] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088901] [to:12673576343] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138610968] [to:16015172640] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803194322] [to:+17049700773] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128774139] [to:+14122302839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12053404509] [to:+12138064851] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135447635] [to:+17279997509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-21 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418333947] [to:+447919970510] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022211639] [to:+18638553185] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17652388383] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14013475637] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238279297] [to:+14234150092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487030383] [to:+16467691184] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15174920296] [to:18323761972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022104849] [to:+16474919922] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236359132] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18145982920] [to:+13473897826] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003970202] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612937692] [to:19377639231] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334458] [to:17065025055] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:23 ip-10-0-64-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:7:0608041ACE0201] -Feb 1 11:58:23 ip-10-0-64-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17078202142] [to:+17074097095] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:23 ip-10-0-0-11 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603485558] [to:+15204337598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138025390] [to:17043512894] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476304397] [to:19185334412] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013859] [to:18634403535] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022299299] [to:+18133209249] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12043712662] [to:+12048138423] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14692003207] [to:+19725254334] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17738779058] [to:+19142794385] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803389602] [to:+15204336838] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874087061] [to:15875012094] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195926884] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157100855] [to:+15703973126] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13868988010] [to:+13867428319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:14802686225] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:14802686225] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16092414546] [to:+13479192714] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464396085] [to:+19717776887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045319] [to:18322872322] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16614024784] [to:16614771692] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19318967229] [to:19314344043] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267983964] [to:12269787620] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037176222] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324999974] [to:+18456220438] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12292323857] [to:+19715124018] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:24 ip-10-0-0-10 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-10 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897131] [to:16054316005] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:24 ip-10-0-64-11 mdr: 2016-02-01 11:58:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054245658] [to:+16139097117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048071152] [to:+17256660310] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028477811] [to:+12404357813] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-21 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447502997487] [to:+447520674063] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14258805433] [to:14254955695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703093695] [to:+13475185034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009382] [to:12264009674] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14848164763] [to:17174684392] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-20 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18032622923] [to:18034272427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721930] [to:16239990264] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16825007476] [to:18178973591] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17123261714] [to:+17125255329] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12896757203] [to:+12894600911] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894926928] [to:+17636849995] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326569117] [to:+19175630941] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12606337241] [to:18124937443] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042481295] [to:+19047587167] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:25 ip-10-0-64-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479068790] [to:13476315615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15748495248] [to:+19298418857] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-10 mdr: 2016-02-01 11:58:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:25 ip-10-0-0-11 mdr: 2016-02-01 11:58:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068450] [to:15736443591] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474915194] [to:12043964363] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19145522462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475038990] [to:12048694412] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287366500] [to:+19148818372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16082848025] [to:+19178778764] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735588710] [to:+19739639243] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073371251] [to:14077828718] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:14153289705] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15859438405] [to:+13475808984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:7:0608041ACE0202] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14012975234] [to:+19175805115] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15733808654] [to:+13203073824] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425275] [to:19045665089] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945806] [to:15147426491] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869967] [to:17654144859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16016639002] [to:+14242797984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146012998] [to:+14388088217] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16304892146] [to:17734196636] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-20 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447731527422] [to:+447451249468] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477434094] [to:15195885745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13015699870] [to:12027465917] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103227749] [to:12403215346] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-10 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026858] [to:13065517801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-11 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155701976] [to:+19175808585] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:26 ip-10-0-64-11 mdr: 2016-02-01 11:58:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593956] [to:15703570508] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:26 ip-10-0-0-10 mdr: 2016-02-01 11:58:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042182139] [to:+14023874603] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897680926] [to:19023022732] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798858] [to:16147369801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724536265] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16617790645] [to:+19788209247] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735867068] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12294026666] [to:+15103228913] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095817] [to:14389939577] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15018139668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998403] [to:18503987804] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19203956412] [to:12623891205] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12899210859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172750747] [to:13473161066] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14247446475] [to:+15625534328] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-10 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19364270328] [to:+18326167418] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416007436] [to:+19414173077] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436271913] [to:+18435345226] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-10 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109162569] [to:+13478969323] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:27 ip-10-0-64-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12817301045] [to:+14156492369] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14243363911] [to:13608019085] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142703924] [to:+13025830244] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177631020] [to:+13479478187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19364270328] [to:+18326167418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866178] [to:18645530083] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167551080] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292009490] [to:19172262282] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191575] [to:17069980304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708247768] [to:+16466999507] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322712554] [to:+18724005812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17792340304] [to:+17133735896] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014140692] [to:+13859851987] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130350] [to:15182683457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14237214414] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:18626003745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772216] [to:12109141104] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139923792] [to:+18133084722] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162480] [to:19199352232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:28 ip-10-0-0-10 mdr: 2016-02-01 11:58:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14804675814] [to:+19177376316] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:28 ip-10-0-64-11 mdr: 2016-02-01 11:58:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981618] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493971] [to:17653981618] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12054964308] [to:+17604746014] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003F60201] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125896512] [to:+17605897497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197364857] [to:+17866079855] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173315949] [to:+16172132569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571976] [to:15052056012] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13212176730] [to:+14072160886] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122194344] [to:+13479971091] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148485812] [to:14303422924] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-21 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418329610] [to:+447506103357] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097015719] [to:13062403665] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639742] [to:12022972119] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396954] [to:12163387089] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161664] [to:16465468727] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185043293] [to:19542669707] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163958] [to:13047046195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-11 mdr: 2016-02-01 11:58:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:29 ip-10-0-64-11 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:29 ip-10-0-0-10 mdr: 2016-02-01 11:58:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175574311] [to:+12673177530] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173315949] [to:+16172132569] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527147304] [to:+13219998151] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329081688] [to:19176363627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373840151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-21 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447487802961] [to:+447520674924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177328097] [to:18595950951] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145892118] [to:+15148198620] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375221507] [to:+12342314936] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653943966] [to:+16172132254] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077361] [to:12603779929] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14236184494] [to:+15103222393] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15407608418] [to:+15406286065] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048134542] [to:12045993957] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874101132] [to:15873272096] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425652] [to:13863089214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15133044338] [to:+16475570334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18137651833] [to:+12692244506] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688366] [to:15862950836] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709834861] [to:+15703977540] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225617] [to:19858705759] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893833349] [to:+12897690298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:30 ip-10-0-64-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866079946] [to:17863285098] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303802] [to:593986127584] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-11 mdr: 2016-02-01 11:58:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14808427946] [to:14809805067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:30 ip-10-0-0-10 mdr: 2016-02-01 11:58:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697205289] [to:+12148149902] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678647323] [to:+13479194059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474731464] [to:+16474918912] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796757] [to:17406498553] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560543] [to:14046686480] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16076616968] [to:+16465473361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898085614] [to:+16477998463] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069929419] [to:13063141864] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-21 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451206417] [to:+447841946876] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16058369404] [to:17344760737] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194140881] [to:18199683578] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302377113] [to:13305416159] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479713603] [to:18027386084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302120328] [to:+15617665890] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158533304] [to:15135047895] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-20 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520673074] [to:+447716877464] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005291] [to:17057689436] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-10 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193748] [to:17067282563] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:31 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18109565869] [to:+18107727384] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:31 ip-10-0-64-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14238228122] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15137800036] [to:+12139215683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003F60202] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605898329] [to:12566891110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046382622] [to:+13479971179] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326928002] [to:+12816433513] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18133514011] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033123924] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673562217] [to:+12672473154] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13216136489] [to:16093213716] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142798533] [to:12527231974] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318378] [to:15803822369] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542164573] [to:+18572191863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13859851230] [to:19173833642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475184336] [to:16466170394] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158533304] [to:15135047895] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136163423] [to:15027791121] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:32 ip-10-0-64-10 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852822145] [to:15854854291] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-11 mdr: 2016-02-01 11:58:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135876093] [to:18434098199] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:32 ip-10-0-0-10 mdr: 2016-02-01 11:58:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873233059] [to:17806174500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406288974] [to:15406215191] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284218889] [to:+19199166322] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12604661628] [to:+18133202152] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16149729210] [to:+16144208146] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19062505675] [to:+15635497435] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14693332219] [to:+14692051591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18572343050] [to:+17816138345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474955593] [to:12508095641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262412090] [to:15195502740] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057126121] [to:+12139352423] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424492] [to:13213622505] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613246372] [to:+15614916616] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057126121] [to:+12139352423] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465130019] [to:15042365336] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18324994599] [to:+18327807256] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262410773] [to:19052440723] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435170153] [to:+19172836060] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138029552] [to:16626541217] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15042292647] [to:12516443579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17023258906] [to:+17027182482] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15414233279] [to:+19715127072] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18592876892] [to:+14158530276] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15862126371] [to:+15862488137] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-0-11 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177204306] [to:+13176780314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15135447635] [to:+17279997509] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:33 ip-10-0-64-10 mdr: 2016-02-01 11:58:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498118] [to:19105273782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048180014] [to:12045579990] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122302699] [to:14128973950] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+19092932451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15012406686] [to:+18722259707] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797537] [to:14782974469] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19172878859] [to:+19177229793] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17245185871] [to:+12138611375] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700580] [to:17042314758] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122256294] [to:+14156538688] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065373047] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172834240] [to:17163075109] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12546406059] [to:+13479977843] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874084575] [to:15873578102] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653471397] [to:18657659951] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562005472] [to:+19174094711] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14129239941] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17864801072] [to:13053050303] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16068024157] [to:+17073009986] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16175840965] [to:+16465470497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14178131396] [to:+16576668440] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177797] [to:17729855080] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163000259] [to:+12135296951] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19314724074] [to:+12815957158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638442916] [to:+17863726930] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12188514699] [to:+16124448055] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19549805109] [to:+19543143289] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18322637488] [to:+19298410418] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219990603] [to:12083126172] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18724002007] [to:15013885373] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-10 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044015117] [to:+17784027240] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:34 ip-10-0-0-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:34 ip-10-0-64-11 mdr: 2016-02-01 11:58:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15744850625] [to:12607394252] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403579902] [to:+17409102301] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007691] [to:14144914828] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785338016] [to:15188941084] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15132404555] [to:+17604745203] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19046696211] [to:+19047581198] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725285595] [to:12294001944] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145633] [to:17606759641] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767486] [to:14192121344] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17743223867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068041914] [to:13312482958] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869397] [to:19022188900] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17472007268] [to:+13108792042] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19025808454] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19312577148] [to:19315385213] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-11 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16154799930] [to:+16156147485] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19016725811] [to:+19014445197] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028019388] [to:19026982765] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:35 ip-10-0-64-11 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158531341] [to:17652743328] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:35 ip-10-0-0-10 mdr: 2016-02-01 11:58:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019696325] [to:+12014266726] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313778398] [to:12315714301] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249545688] [to:+17248032145] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063046789] [to:+19298418571] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12678676730] [to:14844797659] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154160606] [to:+19172319081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756106] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175809802] [to:19107282474] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14048392008] [to:+16265085508] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301641] [to:18142033208] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486483] [to:16019384336] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14842048496] [to:14845442849] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264554537] [to:12265050013] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070699] [to:+15068041937] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157207800] [to:+19172668945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477988672] [to:17405030430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12763121331] [to:+16465473966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-20 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447751278097] [to:+447418336927] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865256316] [to:+13055017045] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418127] [to:15199950331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-20 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447742172997] [to:+447520608506] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14038369245] [to:+15873232679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494828] [to:13609728859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-21 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447770583060] [to:+447451232441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:36 ip-10-0-0-11 mdr: 2016-02-01 11:58:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:36 ip-10-0-64-10 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19544009182] [to:+15612407471] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17277569257] [to:17273248952] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17184169174] [to:17178211133] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:15198033232] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13369570347] [to:+13369383047] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105805637] [to:+14242838483] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173632393] [to:+13023744930] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472786001] [to:+19142064578] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16049019532] [to:16047109914] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14086182911] [to:17346212684] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16476913206] [to:12505101257] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049942630] [to:+16465137705] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523272620] [to:+19142816155] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18037167710] [to:+12138223298] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864610036] [to:+19088425053] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19175805115] [to:14012975234] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679232160] [to:12674758090] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048819562] [to:+19047584134] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403435461] [to:+16784343553] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-64-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-10 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16503008374] [to:13304285407] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:37 ip-10-0-0-11 mdr: 2016-02-01 11:58:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775544] [to:17313251941] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199352232] [to:+19199162480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19546877862] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014898] [to:14182918680] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375591571] [to:+13203073795] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17183550489] [to:+15103404060] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974591] [to:15704234841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12892701540] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783348098] [to:+16784968598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298418857] [to:15748495248] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072402162] [to:14437561330] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262406990] [to:15195601111] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155449114] [to:+12627778189] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704020118] [to:+17206233466] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19895881751] [to:+19894557161] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037176222] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177797] [to:17729855080] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024351842] [to:+14156918952] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16477606933] [to:+14502321151] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384088] [to:125827] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14252395115] [to:+12062585695] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15406612629] [to:+19172720164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15404690360] [to:+15403008990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084968439] [to:+17749921428] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894600241] [to:12896688006] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12057126121] [to:+12139352423] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:38 ip-10-0-0-11 mdr: 2016-02-01 11:58:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-11 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939070] [to:12679927048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:38 ip-10-0-64-10 mdr: 2016-02-01 11:58:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134246299] [to:13136263954] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19168260590] [to:+19165339276] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223323] [to:18127466397] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19516929450] [to:+13234984549] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617772445] [to:+15614052410] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593973789] [to:+12105718733] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026208452] [to:+17864804743] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19034221787] [to:+12138613854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186619385] [to:+19292209428] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12019696325] [to:+12014266726] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163463518] [to:+16474989235] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887356] [to:19172503909] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135760968] [to:18593270009] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12695987760] [to:+12692244339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-10 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12174331537] [to:+13477148696] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19736870717] [to:+14692055972] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695321861] [to:19378295838] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301768] [to:14129733872] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:39 ip-10-0-64-11 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:39 ip-10-0-0-10 mdr: 2016-02-01 11:58:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035661051] [to:+19703158778] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037289984] [to:+16039450694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13853154424] [to:+17727668071] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989729] [to:15186539266] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150092] [to:14238279297] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025253583] [to:+17027476081] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16783308146] [to:+19172319037] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782970921] [to:+15863315363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13173632393] [to:+13023744930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046199357] [to:+12627775402] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15037542316] [to:+15038374149] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373543570] [to:+14156491924] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:40 ip-10-0-0-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736328] [to:15742395442] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:40 ip-10-0-64-11 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674820] [to:16157965854] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17724536265] [to:+13479130659] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14238228122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12317303362] [to:+12313778293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13024002647] [to:16109314836] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14045967139] [to:16782376994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12264555747] [to:15193201760] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298410534] [to:18142273534] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369383679] [to:18135027962] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476067742] [to:12525642048] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15162526320] [to:16313170234] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008051] [to:18127673660] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406325759] [to:+17274938802] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158530473] [to:13306054509] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013448] [to:13017073518] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062836] [to:19024881844] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406587681] [to:13308241738] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069390228] [to:+19177731986] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035076398] [to:+13476764402] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-10 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063052099] [to:+12532047498] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636629968] [to:+13478992173] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152661601] [to:+18724449910] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335546] [to:15208298656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-10 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:41 ip-10-0-0-11 mdr: 2016-02-01 11:58:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423858] [to:18508905580] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:41 ip-10-0-64-11 mdr: 2016-02-01 11:58:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12142638170] [to:+17279985743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866725] [to:14232770236] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:14789747907] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278602191] [to:15402732533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043469] [to:19027987946] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479200] [to:12565571419] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17572969679] [to:17574127555] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479200] [to:12565571419] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801679] [to:19312219085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15042292647] [to:12516443579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14792564065] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19542992886] [to:+14242866536] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502338104] [to:17096991158] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15632317163] [to:15632750247] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13169900153] [to:+17864800164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696293112] [to:17173302997] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12059606602] [to:+12135593765] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808434711] [to:+16233838217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478010504] [to:+16474915851] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13057442398] [to:+13053405324] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478683119] [to:14023070052] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599635567] [to:+13477866264] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+011526371238911] [to:+14804391083] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428874] [to:19043187636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136045504] [to:16132916866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132817326] [to:+19027046441] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-0-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-11 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654695117] [to:+13479544766] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14697205289] [to:+12148149902] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:42 ip-10-0-64-10 mdr: 2016-02-01 11:58:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19567739688] [to:+19792326063] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19407815329] [to:+19404634165] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19787869397] [to:19022188900] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673562217] [to:+12672473154] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673563047] [to:+17279985308] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:13236359132] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002270] [to:16784926897] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515068] [to:13522070150] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12063779304] [to:+12062585917] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205852307] [to:13023625115] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054445960] [to:15056046941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18134102205] [to:+18134302964] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515068] [to:13522070150] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132371818] [to:12017592918] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14789745097] [to:14785017825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-11 mdr: 2016-02-01 11:58:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-20 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328239] [to:+447596753307] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703977086] [to:15709032476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:43 ip-10-0-0-10 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026858] [to:13065517801] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:43 ip-10-0-64-11 mdr: 2016-02-01 11:58:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411066] [to:17346206690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887013] [to:16472938048] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14808782736] [to:+14803008185] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473161066] [to:+19172750747] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13479624051] [to:+19172593887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17329869442] [to:19172042643] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108368741] [to:+12105560325] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474992084] [to:16476406074] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172586170] [to:16167551080] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636560158] [to:13477349422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19035277046] [to:19036193309] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14702771378] [to:+14044811147] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248033097] [to:17244668593] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15148198567] [to:14503691576] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13375296527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-64-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014720] [to:14186803698] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136043706] [to:16138053304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-10 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:19546282504] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:44 ip-10-0-0-11 mdr: 2016-02-01 11:58:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014720] [to:14186803698] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:14013475637] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16125022295] [to:17636576016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473799490] [to:13154205682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-20 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325390] [to:+447738681704] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185048827] [to:19298416153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242835795] [to:15017431490] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476678030] [to:14192044739] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12254431898] [to:+18329476217] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899210859] [to:+16474993016] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405506641] [to:+12404077142] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14076908528] [to:+14072161105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177905633] [to:19175692727] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435162305] [to:+18637347137] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340738] [to:16063155756] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474340738] [to:16063155756] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567960096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015042700] [to:19416238918] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804745841] [to:+16122557800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505725830] [to:+17786549417] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18567960096] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17012892692] [to:15036607105] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-21 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520606243] [to:+447936991316] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142062180] [to:19803209640] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16239108557] [to:+14157127373] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525177] [to:12065959571] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19898200603] [to:+19895334574] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:45 ip-10-0-64-10 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16467031838] [to:+19142062083] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:45 ip-10-0-0-11 mdr: 2016-02-01 11:58:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678647643] [to:+12673177343] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823026] [to:15858310193] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18139520404] [to:+18133081940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816138345] [to:18572343050] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322847950] [to:18307433347] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083594120] [to:+14156498179] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004599] [to:13179951326] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653612836] [to:+13478968687] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459407409] [to:16463729025] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063575] [to:16062591923] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343209] [to:14042072512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228352] [to:14196516716] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15138069689] [to:+13479194984] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269273669] [to:+16474963727] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195649842] [to:+12135295275] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156493889] [to:12096840642] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256329] [to:14237214414] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-10 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242763] [to:16316788019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-11 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:46 ip-10-0-64-11 mdr: 2016-02-01 11:58:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:46 ip-10-0-0-10 mdr: 2016-02-01 11:58:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15013885373] [to:+18724002007] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879871688] [to:+17784000122] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13163000259] [to:+12135296951] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073009986] [to:16068024157] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15164626852] [to:+15169260330] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821326] [to:18106189765] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433033972] [to:+16822139454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17176726745] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13136561648] [to:+13134247784] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479376158] [to:17176726745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14696292624] [to:14153289705] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043807861] [to:+14157127579] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:16472998933] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17182559767] [to:19183445704] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139926176] [to:17652787272] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14125205594] [to:+14128193317] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17094868861] [to:+19027031504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601561] [to:12498775036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403544403] [to:+12139927018] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14094343499] [to:+15164724184] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:47 ip-10-0-0-10 mdr: 2016-02-01 11:58:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619957] [to:12054355061] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:47 ip-10-0-64-11 mdr: 2016-02-01 11:58:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285770058] [to:+18107725608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15183440269] [to:15184247329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896926] [to:12515543678] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426353] [to:19015968910] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262437224] [to:12899383393] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19545982654] [to:+19542719464] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18322464140] [to:12108720157] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219998151] [to:12527147304] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784968224] [to:17065815185] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18627557228] [to:+18622278673] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15038916076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14695326170] [to:15709947023] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604453] [to:16197629128] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476674283] [to:15634473670] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15614600754] [to:+15612407577] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19548545617] [to:+14073372467] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374891405] [to:+14197459702] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432897979] [to:+15169269229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:48 ip-10-0-64-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860189] [to:16505348105] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-10 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:48 ip-10-0-0-11 mdr: 2016-02-01 11:58:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497001046] [to:17058457280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15053884254] [to:+15052571083] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033126866] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675931697] [to:+12677939212] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638125252] [to:+18638553875] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19145522462] [to:+19148608599] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336211] [to:17069411451] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185676055] [to:12673424306] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-21 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520672170] [to:+447947561824] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14809805067] [to:+14808427946] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668440] [to:14178131396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402733129] [to:+18572408893] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18432452391] [to:+18435345314] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-11 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478084983] [to:12073997636] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105262153] [to:+13473797236] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18136797220] [to:+14152377614] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:49 ip-10-0-0-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313371219] [to:+13478966229] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-11 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:49 ip-10-0-64-10 mdr: 2016-02-01 11:58:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12036152750] [to:+19142286287] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473436992] [to:19122462349] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478083613] [to:18125254719] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12162689638] [to:+12162396132] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034134831] [to:16035661725] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866012349] [to:13862154995] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16473610740] [to:+16139122835] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12016215261] [to:12016188898] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437591538] [to:+14437203015] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12345174120] [to:+13025955970] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16026868441] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18314029101] [to:+18314288196] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703435135] [to:+12138223311] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023032242] [to:+19027058464] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138223463] [to:14438393387] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19179797995] [to:12293089824] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938913] [to:16093135415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309574324] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:50 ip-10-0-0-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847355722] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-11 mdr: 2016-02-01 11:58:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18622356222] [to:+19735479956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:50 ip-10-0-64-10 mdr: 2016-02-01 11:58:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142060812] [to:13373754612] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030545] [to:19023172744] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16235127488] [to:+19282975298] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:15088373433] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843664874] [to:+17243200725] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15618604006] [to:+16463497333] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862536268] [to:+13053405381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15634993703] [to:+15635497262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304669261] [to:+13309358113] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15146621579] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272908864] [to:+18638554473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523750930] [to:+16513336310] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304845] [to:15675251649] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19109778205] [to:+19173834519] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102319614] [to:+19173965527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15039840634] [to:+19712489202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126139] [to:18566559609] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13053050303] [to:+17864801072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:51 ip-10-0-64-11 mdr: 2016-02-01 11:58:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15062104111] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:51 ip-10-0-0-10 mdr: 2016-02-01 11:58:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13153720394] [to:+19148468283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+17278196831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15795003083] [to:14388620679] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14153408518] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133203308] [to:17272044717] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866015558] [to:18603024023] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12815158463] [to:+18326167714] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377394231] [to:+14242839023] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097005369] [to:17097634027] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195519177] [to:+14197459683] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158183] [to:14033361253] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161012] [to:19196303050] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372434] [to:14072333775] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19048819562] [to:+19047584134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15303623361] [to:15305199581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-10 mdr: 2016-02-01 11:58:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:52 ip-10-0-64-10 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14703452513] [to:+12139359332] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:52 ip-10-0-0-11 mdr: 2016-02-01 11:58:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14345795043] [to:+12133756559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+17278196831] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709401114] [to:+13479377491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133620404] [to:+16139099402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336838] [to:14803389602] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023445421] [to:+13025955854] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150092] [to:14238279297] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19012826607] [to:+19018422325] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19093615567] [to:19512109910] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18017357171] [to:+13866018306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156918952] [to:15024351842] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15636395909] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734184458] [to:+18629020396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12146419750] [to:+18328044662] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481859] [to:17156791635] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18327698427] [to:+17037750947] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14402313569] [to:+13122752559] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13042235680] [to:+13369382199] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133088511] [to:16087284335] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047960525] [to:+16785867427] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216627] [to:12103467152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131389] [to:13178285159] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:53 ip-10-0-64-11 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15309137663] [to:+18639491301] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:53 ip-10-0-0-10 mdr: 2016-02-01 11:58:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14026418418] [to:+15163314893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204424436] [to:+15207278659] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18573001772] [to:13059751656] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362671942] [to:+13369382526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102756] [to:14847470564] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582015969] [to:14043084019] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13472217712] [to:+12342312654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16156050595] [to:+16157779396] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026802538] [to:+19027030820] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:17703293877] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172135299] [to:+17816024266] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14182268655] [to:+15817010098] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824843] [to:19088920227] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157599747] [to:+15163625178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17166098391] [to:+17162791325] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185278443] [to:+15189305295] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097004899] [to:13069802580] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243996] [to:15033093254] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243996] [to:15033093254] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19785906992] [to:+19786140750] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200259] [to:14042871887] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815953] [to:593981579344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-11 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973899] [to:15704858904] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14238228122] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:54 ip-10-0-64-10 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14159479692] [to:+18583605409] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19055373988] [to:+16474912840] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:54 ip-10-0-0-11 mdr: 2016-02-01 11:58:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16303372214] [to:+13477696805] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324437028] [to:+17322582334] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14096564857] [to:+14096833679] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16178619678] [to:14133568194] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478992620] [to:19092748387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12482318252] [to:+13479789605] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15863725208] [to:+15865746835] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12048098341] [to:12042945872] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16044015117] [to:+17784027240] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491450] [to:15594808680] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-21 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:64364] [to:+447451230999] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003570202] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16179010338] [to:+14049002179] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784020219] [to:12508097595] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18638553185] [to:15022211639] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15746517373] [to:+12138619125] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342008024] [to:+13302374671] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17402017827] [to:17404401258] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18107727384] [to:18109565869] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163075931] [to:+17167480479] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15066070699] [to:+15068041937] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026026046] [to:+12678676570] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232770236] [to:+14242866725] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AD0201] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024088954] [to:+12136946917] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165607572] [to:+16474985265] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373051105] [to:+12135297860] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148350490] [to:+16034138097] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12509819012] [to:+16049019044] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13187712503] [to:+15104476417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18563757974] [to:+12026090023] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13478181412] [to:+16463492501] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18604622066] [to:+17185048842] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144066528] [to:+18133203413] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19804747552] [to:+19802093974] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329476355] [to:+19089224105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003AD0201] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18282606256] [to:+17074099448] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17248597856] [to:+13477966489] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123479775] [to:+12673177412] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13303486799] [to:+13473438047] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023685921] [to:+15713262718] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366130045] [to:+14344736493] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465468727] [to:+14072161664] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12704651959] [to:+19715127369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137771306] [to:+12262411046] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14163463518] [to:+16474989235] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19108765743] [to:+14243365897] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235889203] [to:+14155698735] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18032876130] [to:+16822139303] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12143037442] [to:+17742047889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319656263] [to:+18452627730] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17344760737] [to:+16058369404] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12058301543] [to:+17279987054] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18285146388] [to:+14242795504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18128019841] [to:+12136946367] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751215] [to:+17729797187] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15875825433] [to:+15873151908] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15617772445] [to:+15614052410] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157345906] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086907908] [to:+12138737336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122982312] [to:+14122302879] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155798888] [to:+13477749598] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107099463] [to:+18133084815] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18072124064] [to:+18077887050] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096951415] [to:+12497000990] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438059464] [to:+17077236015] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16469307710] [to:+13479801272] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402023943] [to:+14197767985] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:55 ip-10-0-64-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17162740417] [to:+17474006180] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12563996439] [to:+19172659445] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-10 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107394924] [to:+16109102988] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:55 ip-10-0-0-11 mdr: 2016-02-01 11:58:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785334628] [to:19782736823] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527231974] [to:+19142798533] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13148998403] [to:13142017928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005949] [to:14145739417] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137721] [to:19105991330] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124018] [to:12292323857] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425101] [to:13528165196] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16784926897] [to:+14049002270] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046243873] [to:15408380510] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033121864] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19013005800] [to:+19018426331] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17039273873] [to:+13475804608] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062928558] [to:+15068008804] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12064764241] [to:+18133243374] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606957545] [to:+19033075713] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042190370] [to:+19142065315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15412143365] [to:+19252397863] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135835923] [to:+16136043164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318169] [to:12312029281] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172751271] [to:19016001728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465135357] [to:18609337345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327772637] [to:19562442904] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313996] [to:13172922657] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14506263005] [to:+14503286531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743223867] [to:+15089874966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-21 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447745735382] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15127876631] [to:+15129525590] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-10 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19053753151] [to:+12262409783] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:56 ip-10-0-0-10 mdr: 2016-02-01 11:58:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:56 ip-10-0-64-11 mdr: 2016-02-01 11:58:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405756773] [to:+17408798340] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16135835923] [to:+16136043164] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478023371] [to:18084634847] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-21 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:64364] [to:+447451230999] [flags:-1:0:-1:0:-1] [msg:165:..T...,/..@..w]......a..8..&....n2...~......yYnO....sPX^.....ar.d~..A..w...J..A..w..$/....xxyLO.... w...Z....,P.........u6.$.....i:......A..<...o....or8...%....4....] [udh:6:050003570201] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473154] [to:12673562217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172594021] [to:14802596081] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192044739] [to:+13476678030] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293129367] [to:+17185041614] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13375657023] [to:+17605896693] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057136] [to:12482023480] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513184718] [to:18705515847] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025958285] [to:+14018677274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147759961] [to:+14387926715] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19513509096] [to:+14242769585] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13522553410] [to:+15172585491] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172319348] [to:13524970145] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145788877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042288] [to:13526154910] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132519225] [to:19787997304] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15593104354] [to:+17072429509] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817014494] [to:14188173079] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028186456] [to:+19027021985] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+01150499082447] [to:+16465470581] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-10 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862501124] [to:+12139926044] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:57 ip-10-0-64-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16107646866] [to:+16108804263] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19042190370] [to:+19142065315] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148291092] [to:14782440106] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:57 ip-10-0-0-11 mdr: 2016-02-01 11:58:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174346280] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434098199] [to:+12135876093] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17203556542] [to:+17204637817] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176780314] [to:13177204306] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037612858] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:13037612858] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408929543] [to:+19178777929] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874097072] [to:15877834041] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14158536286] [to:18658055609] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19176348539] [to:+17029565743] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787610] [to:12525602096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16137961428] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308012354] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563126471] [to:18569827137] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328971615] [to:+12816033247] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18639340497] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896518] [to:19282085430] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18175663604] [to:+12148146571] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19739639243] [to:19735588710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374891405] [to:+14197459702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-20 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447944912146] [to:+447451203436] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052571896] [to:15055068289] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156887447] [to:14232239462] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802365629] [to:+14695326997] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14136854965] [to:14132182078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037176222] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:58 ip-10-0-0-11 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19852151209] [to:+16513337516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314425] [to:18503764879] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-11 mdr: 2016-02-01 11:58:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:58 ip-10-0-64-10 mdr: 2016-02-01 11:58:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308832974] [to:+14402528569] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408929543] [to:+19178777929] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700773] [to:19803194322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16095434556] [to:16095323322] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19892553828] [to:+19895697409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026026046] [to:+12678676570] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123397935] [to:+19142568400] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14802921663] [to:+13194099850] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868004] [to:17659945553] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003640202] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037317297] [to:+14156308622] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003640201] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13026328529] [to:+13024000442] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466691792] [to:17316088598] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162396954] [to:19901406] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217309634] [to:14079147692] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19123900745] [to:+16784338221] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19082809101] [to:17322776112] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161290] [to:19197661841] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603779929] [to:+12604077361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14845354773] [to:18646506091] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626481442] [to:16083591745] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139093010] [to:17053446344] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204333144] [to:19124847923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124365987] [to:+19122005572] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18473409153] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718174] [to:12675061019] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762070417] [to:+19142812504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106609535] [to:+13478020679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343209] [to:14042072512] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17083296274] [to:+17162792232] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017045] [to:17865256316] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15712348890] [to:13012024006] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736443591] [to:+12482068450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192888724] [to:+19199161239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:58:59 ip-10-0-0-11 mdr: 2016-02-01 11:58:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973126] [to:12157100855] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:58:59 ip-10-0-64-10 mdr: 2016-02-01 11:58:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028214919] [to:+14156125670] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-20 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447547812046] [to:+447451225022] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659903] [to:584165569332] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278603107] [to:12089726779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-21 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447858370549] [to:+447520624872] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15204832566] [to:+15104474872] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177757095] [to:+19727503794] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-20 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447802708812] [to:+447520627227] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467019441] [to:16267107484] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293129367] [to:+17185041614] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12076157332] [to:+13479193901] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042244365] [to:+18724005558] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736835] [to:14133778624] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19809259251] [to:+17817868112] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-10 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783979692] [to:+19785939305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328525] [to:18659647810] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19023048632] [to:+19027004047] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:00 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167552038] [to:+12692808360] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:00 ip-10-0-64-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:00 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037652007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12676860698] [to:12679829985] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18087839843] [to:+18329476392] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15178616251] [to:+15863315693] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329126316] [to:+17324433134] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17036466469] [to:15407481874] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18459059687] [to:+18456222378] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043529728] [to:+19046947563] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478303285] [to:13474143570] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:15735867068] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:13479927772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17327068172] [to:14843360388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14086006229] [to:+17078974109] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034688231] [to:+18038143418] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-11 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19703156034] [to:19703163304] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086674952] [to:+15084168639] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-20 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136891] [to:15013502853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13012212848] [to:+13017786413] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-21 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447520620407] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-21 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447415511073] [to:+447451223727] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194059] [to:12678647323] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18575764371] [to:14178257224] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324815762] [to:18324257955] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:01 ip-10-0-0-11 mdr: 2016-02-01 11:59:01 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273010988] [to:+14152377959] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:01 ip-10-0-64-10 mdr: 2016-02-01 11:59:01 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19298416153] [to:+17185048827] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874468] [to:15855900474] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14097977842] [to:14093549945] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817607] [to:13213172415] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14233318177] [to:+13477982877] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026858] [to:13065517801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15872020761] [to:+15873321438] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13473919720] [to:+14146005432] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156491924] [to:13373543570] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15167349664] [to:15169676433] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166160044] [to:+16474911764] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17879750226] [to:+13212701097] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17708457217] [to:+14043412099] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203073795] [to:19375591571] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044306787] [to:+16474954070] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19054354275] [to:+12262408597] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12899210859] [to:+15874004486] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185076519] [to:+15817020122] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672412617] [to:+12672732905] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024980] [to:18194311666] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-11 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15632750247] [to:+15632317163] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-64-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086560633] [to:+13024391984] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E60303] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17125266772] [to:12188416133] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467691030] [to:16164267927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047265298] [to:+14049001032] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-10 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19028018402] [to:19024415024] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17636849995] [to:19894926928] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:02 ip-10-0-0-11 mdr: 2016-02-01 11:59:02 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18459997065] [to:18457026163] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242838483] [to:19105805637] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027021980] [to:19022200557] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-20 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447841946876] [to:+447451206417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133204046] [to:18134106352] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13082160922] [to:+14025001109] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13177757095] [to:+19727503794] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-20 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447745735382] [to:+447451208480] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476140] [to:15415130326] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067628] [to:16812081067] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388075021] [to:15146621579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15673440742] [to:+14582016798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13366450166] [to:12762664058] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14404786461] [to:+14403594774] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15096397055] [to:15099902065] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789015405] [to:+17604743472] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954682] [to:19104204770] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868254] [to:18037301590] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704234841] [to:+15703974591] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502512295] [to:+18506313631] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18042928704] [to:+18046245089] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18324503870] [to:15599174700] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:12149898813] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860007] [to:17066140969] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12692777984] [to:+12693366341] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172150072] [to:+15178161964] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:03 ip-10-0-0-10 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:12149898813] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018430794] [to:16628037193] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17155301009] [to:+12626482699] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-10 mdr: 2016-02-01 11:59:03 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742395442] [to:+13477736328] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17162790260] [to:17165535457] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:03 ip-10-0-64-11 mdr: 2016-02-01 11:59:03 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042464764] [to:+14049003661] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604743553] [to:18638127147] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12403510316] [to:+19802095619] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796210] [to:19109350679] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248072] [to:19175302637] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309372474] [to:+12342314262] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17864546736] [to:+17864802611] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12517695076] [to:+16465479153] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+13479199059] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-10 mdr: 2016-02-01 11:59:04 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039835560] [to:+14074424732] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108104361] [to:+13024000176] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19132045692] [to:+15618197363] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:04 ip-10-0-0-10 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365809873] [to:+13367018095] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:04 ip-10-0-64-11 mdr: 2016-02-01 11:59:04 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13238131671] [to:+18506313521] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18569939259] [to:+15186155262] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15182683457] [to:+16465130350] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12182031197] [to:12694140955] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089166389] [to:17746335118] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15406029795] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197404774] [to:14196857458] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16134495225] [to:+16139120293] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050555] [to:17809197227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042652281] [to:14169853069] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497009011] [to:17056883564] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15718588430] [to:+17633015438] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477736198] [to:12032430579] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12532047211] [to:12533478234] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:14042451703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17806802784] [to:+15873157812] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16576668078] [to:14173663773] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030820] [to:19026802538] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873158029] [to:14038963487] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169360002] [to:+19727504207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156147485] [to:16154799930] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804394251] [to:16236883503] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292209428] [to:18186619385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660475] [to:18653096578] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12027664805] [to:+12026090440] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17256660310] [to:13048071152] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282085430] [to:+17605896518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807403318] [to:+16233837133] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16305204500] [to:+16308696716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17702669189] [to:+12533361625] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18473409153] [to:+14049002414] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193075169] [to:+14198430883] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13305196792] [to:+12136348602] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13023638165] [to:+14158907294] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16395711922] [to:+13069920337] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18455009630] [to:+19027046197] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13022659738] [to:+13024391643] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15879871688] [to:+17784000122] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15028214919] [to:+14156125670] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17324254888] [to:+17324360768] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19808885119] [to:+12679525061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15195677285] [to:+12264556613] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782783283] [to:+14156850906] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15813097401] [to:+15817020339] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+13479199059] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12505101257] [to:+16476913206] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375273877] [to:+14402526889] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15635060914] [to:+15635593274] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17244668593] [to:+17248033097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14039731434] [to:+15873289159] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408929543] [to:+19178777929] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309372474] [to:+12342314262] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12603667671] [to:+12604070698] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18642457296] [to:+14242525680] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:05 ip-10-0-64-10 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13864022905] [to:+16172139480] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-10 mdr: 2016-02-01 11:59:05 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660475] [to:18653096578] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:05 ip-10-0-0-11 mdr: 2016-02-01 11:59:05 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138853211] [to:+14136859168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148608599] [to:19145522462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133082971] [to:18128017494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199613516] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047742004] [to:+13216136728] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599164432] [to:+19727503025] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476875153] [to:+16474912845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+16466691090] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-21 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418326556] [to:+447979697576] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505172310] [to:+18194122241] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16086363167] [to:+13025852000] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314606859] [to:+19014449157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12082524539] [to:+16466691090] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17653981618] [to:+14156493971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18325216627] [to:12102733950] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15085569535] [to:15088469690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362545030] [to:+13369382511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172592660] [to:19128509829] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:06 ip-10-0-64-10 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:14035549466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-11 mdr: 2016-02-01 11:59:06 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190915] [to:17314444930] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:06 ip-10-0-0-10 mdr: 2016-02-01 11:59:06 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108720157] [to:+18322464140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024881844] [to:+19027062836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-21 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447451228211] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132736822] [to:14133723685] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19543284274] [to:+19542719124] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132959402] [to:19124296593] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046245387] [to:18043381335] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15176079757] [to:+15172586816] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16033126866] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692051935] [to:16822391153] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17273332528] [to:16143219816] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044236073] [to:+14043412759] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15018139668] [to:+18316107665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659903] [to:584165569332] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742517938] [to:+15085569327] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-10 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342059357] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:07 ip-10-0-0-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178285159] [to:+15103131389] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-10 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476856676] [to:18503214792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:07 ip-10-0-64-11 mdr: 2016-02-01 11:59:07 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138448317] [to:+16163239186] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12269787620] [to:+12267983964] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004620] [to:19026921062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19318411249] [to:+18572193750] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18194141127] [to:18195714617] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795422] [to:17656238935] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073997636] [to:+13478084983] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475185821] [to:13479255044] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014270920] [to:+18018903371] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242768097] [to:15016502039] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15199950331] [to:+12262418127] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13055017045] [to:17865256316] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865527] [to:19316915353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-21 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447763356061] [to:+447520627250] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292689453] [to:14802598804] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023905867] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293389185] [to:+15169341320] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17132690353] [to:+16465640841] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046105] [to:19027178140] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023905867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138053304] [to:+16136043706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15714251008] [to:+15209996204] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028390662] [to:+12026015272] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047581198] [to:19046696211] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:08 ip-10-0-64-10 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:08 ip-10-0-0-11 mdr: 2016-02-01 11:59:08 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533815] [to:12673492306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12899210859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200373] [to:18122417714] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873157762] [to:15877799300] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17085100285] [to:+16308696595] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025744427] [to:+16474938775] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389313843] [to:+14388088465] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14169853069] [to:+16042652281] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12678647643] [to:+12673177343] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026982765] [to:+19028019388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674562728] [to:+12676860847] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18053666572] [to:18053773263] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12815957158] [to:19314724074] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16172407331] [to:+16174339158] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336293] [to:17069753362] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939212] [to:12675931697] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478276] [to:19853122213] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19015042700] [to:16788565744] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15178615077] [to:15177508757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-10 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19543639432] [to:12522185322] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:09 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298848] [to:17047712151] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:09 ip-10-0-64-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155075441] [to:+16158432819] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:09 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16315062729] [to:+13479192206] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013722] [to:13869567376] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169360002] [to:+19727504207] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745441] [to:15743987440] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15197161840] [to:+12264554581] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138619125] [to:15746517373] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14167881748] [to:+16474951330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785868124] [to:13377062113] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15052857499] [to:+15057170644] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16167551080] [to:+15172586170] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14045100454] [to:+16784343645] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044602653] [to:+14703336773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19185219464] [to:+17074099455] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193039778] [to:18195930514] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852823811] [to:15852053454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12194408277] [to:15743831069] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502761215] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-21 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608452] [to:+447563608930] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405587779] [to:593999154963] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652388383] [to:+17817868004] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262128] [to:19737521939] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:10 ip-10-0-0-11 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:10 ip-10-0-64-10 mdr: 2016-02-01 11:59:10 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15743222822] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138228805] [to:18433376315] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13055903134] [to:+19148608490] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126005] [to:18038429339] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476275] [to:15409601088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049001637] [to:16783346385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438595] [to:18089362812] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278673] [to:18627557228] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437398815] [to:+19177731092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242797516] [to:16786834779] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042623] [to:18432240881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038642129] [to:+17036466575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19706312744] [to:+19703006437] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14346104063] [to:+14342340383] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042623] [to:18432240881] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133550406] [to:14782997723] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:16319656263] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996282] [to:14232984533] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973587] [to:15705888412] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475567087] [to:12263162814] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19373446161] [to:+12132955109] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17743223867] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148177213] [to:+16149963560] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708540405] [to:+15705216799] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-10 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044602653] [to:+14703336773] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:11 ip-10-0-0-11 mdr: 2016-02-01 11:59:11 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19258909278] [to:+15613284149] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:11 ip-10-0-64-11 mdr: 2016-02-01 11:59:11 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369440623] [to:17044373615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172585968] [to:17373466226] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475088602] [to:12673530753] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-21 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159173357] [to:+16156147388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12346507695] [to:17048366514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16155713299] [to:+18653473785] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-21 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:18136797220] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199305134] [to:+19402222061] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199305134] [to:+19402222061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244278566] [to:+19174094999] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605098915] [to:17606600860] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12145790170] [to:+14693096774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785663432] [to:18707532102] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19177636874] [to:+13479789549] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195087947] [to:+13477868726] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15068008649] [to:+15068039662] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15597655171] [to:+15592239124] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13012311295] [to:12403815129] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196516716] [to:+16149228352] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044602653] [to:+14703336773] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677533749] [to:12677763411] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17346206690] [to:+19298411066] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19195244758] [to:+19199161653] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-11 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15413710054] [to:+15416341206] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193036926] [to:18192386784] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-64-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864802807] [to:+19546412750] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-10 mdr: 2016-02-01 11:59:12 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16789495759] [to:14048045910] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:12 ip-10-0-0-11 mdr: 2016-02-01 11:59:12 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343209] [to:16784684529] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030950] [to:19024529861] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603714658] [to:+13478084759] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14343914239] [to:+12139217654] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818039269] [to:+15047027142] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003DB0201] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338820] [to:14047974513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12818039269] [to:+15047027142] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003DB0202] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13217308387] [to:14058198544] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19192227229] [to:+13054175888] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16157777126] [to:16156892260] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17813995077] [to:18014031046] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:13236359132] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821846] [to:15854159422] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279987054] [to:12058301543] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971091] [to:14122194344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169025840] [to:+17027476282] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103631975] [to:+19164690523] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14134046199] [to:+14132736258] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18649995436] [to:18643986800] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15034555489] [to:15033024307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16162755166] [to:16165169674] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783979692] [to:+19785939305] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675061019] [to:+16105718174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164181762] [to:+16477997075] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12502188426] [to:+12509006203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-21 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447881511744] [to:+447520608008] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874100969] [to:15872168776] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408199418] [to:+15406286516] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157127373] [to:16239108557] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-0-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004314] [to:19032531684] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583604959] [to:13375419329] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19175692727] [to:+19177905633] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-10 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16096144116] [to:16094811915] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:13 ip-10-0-64-11 mdr: 2016-02-01 11:59:13 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572193750] [to:19318411249] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302686499] [to:+13302374286] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479190294] [to:16783343313] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17272044717] [to:+18133203308] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434544920] [to:+18572404877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077826] [to:14388287178] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19315385213] [to:+19312577148] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18583603652] [to:16094773942] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474912840] [to:19055373988] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493646] [to:13525984956] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062104111] [to:+15068034494] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194960573] [to:+12262403382] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19786756106] [to:+19785338493] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095323322] [to:+16095434556] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-21 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418335460] [to:+447936666889] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12046982755] [to:+12048179977] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17329962305] [to:+15163625194] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12532632927] [to:+13602277049] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047988354] [to:+14076333242] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038642129] [to:+17036466575] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939305] [to:19783979692] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14015164334] [to:+19729478887] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19734091739] [to:+19735479935] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-20 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447596753307] [to:+447418328239] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-11 mdr: 2016-02-01 11:59:14 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674492223] [to:+14844124366] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173911128] [to:12037706892] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:14 ip-10-0-0-21 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:14 ip-10-0-64-10 mdr: 2016-02-01 11:59:14 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009221] [to:17736764126] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14505585613] [to:+14388086134] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19084160744] [to:+19734535401] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-21 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447944695155] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19312219085] [to:+14433801679] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163667606] [to:+13479379180] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18436163482] [to:+18038519931] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896607] [to:12515101126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17063321361] [to:+17063959503] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954081] [to:16474042116] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408798340] [to:17405756773] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488352] [to:18172319096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15072994933] [to:13194298390] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12697599618] [to:+12693366500] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133756559] [to:14345795043] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086000] [to:12562698205] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172610720] [to:12039099017] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388620679] [to:+15795003083] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179218016] [to:+15172527786] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478086400] [to:16026920024] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132916866] [to:+16136045504] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14438184664] [to:+18572192236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774723] [to:16083933394] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12096840642] [to:+14156493889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789144710] [to:+13479193437] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106030573] [to:+13219998306] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387927527] [to:14387643323] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377959] [to:17273010988] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:15 ip-10-0-64-11 mdr: 2016-02-01 11:59:15 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:15 ip-10-0-0-10 mdr: 2016-02-01 11:59:15 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139218006] [to:16012599232] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477822483] [to:+19174094427] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072333775] [to:+14073372434] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564089100] [to:+16466328743] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18165277306] [to:+18569428980] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13123009221] [to:17736764126] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15088469690] [to:+15085569535] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12899210859] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13312482958] [to:+15068041914] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17542220513] [to:12256784387] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16624913041] [to:+14243363337] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19047584134] [to:19048819562] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008686] [to:18323354232] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139359332] [to:14703452513] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14138135001] [to:+14132736031] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12178916417] [to:+13479803388] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513336310] [to:12523750930] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199162212] [to:12527751203] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17143377454] [to:+13234984479] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14046459673] [to:+14045966529] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18303253699] [to:+18302824839] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572400372] [to:18649063318] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:17606957545] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:16 ip-10-0-0-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132958218] [to:17206756056] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14383457180] [to:+12136348341] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-10 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069920337] [to:16395711922] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:16 ip-10-0-64-11 mdr: 2016-02-01 11:59:16 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16038333780] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370835] [to:13304817271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476275] [to:15409601088] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-21 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135297502] [to:12137693399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672879] [to:19046720042] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-21 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418325112] [to:+447428156536] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12072167992] [to:+19782169348] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068034494] [to:15197710416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313521] [to:13238131671] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273338559] [to:+16475569925] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15185274976] [to:+14242863189] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13064000999] [to:13062505972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-20 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451214528] [to:+447917452092] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135878970] [to:17044183651] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18034272427] [to:+18032622923] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17733132883] [to:17083684629] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136309425] [to:19858558994] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077556101] [to:17403819746] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15028040924] [to:13042163391] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808984] [to:15859438405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-20 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520605185] [to:+447792023874] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167714] [to:12815158463] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14072854738] [to:+14146004325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17133526780] [to:19562066814] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184247329] [to:+15183440269] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12134788904] [to:17654341093] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-10 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767563] [to:14192028422] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:17 ip-10-0-64-11 mdr: 2016-02-01 11:59:17 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17096838764] [to:+17097004837] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:17 ip-10-0-0-11 mdr: 2016-02-01 11:59:17 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172669492] [to:18434687544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19108888232] [to:19109156088] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173164181] [to:+12679525650] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807256] [to:18324994599] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327807347] [to:12107196429] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15062923177] [to:+15068035971] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463498094] [to:17173953521] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15812158087] [to:+18193075887] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038642129] [to:+17036466575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022331162] [to:+16042653116] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14694237529] [to:12144359084] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873321438] [to:15872020761] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652743328] [to:+14158531341] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12602327080] [to:19799856381] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13373715942] [to:+19703159046] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15707665653] [to:+16079687236] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16788164995] [to:14703638398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17097634027] [to:+17097005369] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430798] [to:12262369914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132254] [to:18653943966] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15163667606] [to:+13479379180] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15613207693] [to:+13479569269] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153406884] [to:15747800870] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15736907007] [to:+17188069180] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336423] [to:12543385376] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12674758090] [to:+12679232160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17326913377] [to:+15204333975] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052572594] [to:15057055032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030950] [to:19024529861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703745110] [to:+16784333552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:18 ip-10-0-64-11 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14058354270] [to:+12135296356] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:18 ip-10-0-0-10 mdr: 2016-02-01 11:59:18 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165615930] [to:+12262406642] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15143470488] [to:+14388077397] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139298247] [to:15702510667] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466328743] [to:18564089100] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326063] [to:19567739688] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18127466397] [to:+12138223323] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195088694] [to:+14152377311] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478685098] [to:18052438221] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503267687] [to:+18637347990] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242796210] [to:19109350679] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-20 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447460709909] [to:+447451202572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12152077618] [to:+12679525677] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242763] [to:18049216753] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-20 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447525288908] [to:+447418333891] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302370835] [to:13304817271] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479193437] [to:16789144710] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13013185800] [to:+14433453929] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14158022740] [to:+16463497983] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14168233550] [to:+18679880102] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473438047] [to:13303486799] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17313251941] [to:+12627775544] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18287883012] [to:+19177370642] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17786549417] [to:12505725830] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161261] [to:13344655343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19737566067] [to:+18629551683] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-0-11 mdr: 2016-02-01 11:59:19 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19046947563] [to:19043529728] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-10 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13462211157] [to:+17133099231] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:19 ip-10-0-64-11 mdr: 2016-02-01 11:59:19 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433681923] [to:+17278578032] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14706734021] [to:17069382656] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256774] [to:19419623606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12816033676] [to:15125664535] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409312921] [to:+19148486214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15702058402] [to:+15703977768] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708540405] [to:+15705216799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465137705] [to:13049942630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+011729725] [to:+19092932451] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16132433293] [to:+16139126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16476203683] [to:+17053001788] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19286605465] [to:15056862016] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19375273877] [to:+14402526889] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049002179] [to:16179010338] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12164131878] [to:+14406588791] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18453813825] [to:+18452627694] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463494458] [to:13479927772] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027041487] [to:19023210217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15858311969] [to:+13475808032] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924456] [to:14388221032] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466170394] [to:+13475184336] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177248072] [to:15164515889] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177229793] [to:19172878859] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803194322] [to:+17049700773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-11 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19058072762] [to:+12262430662] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-11 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17816024266] [to:15172135299] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14198777085] [to:15134974376] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:20 ip-10-0-64-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327774217] [to:12142084298] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:20 ip-10-0-0-10 mdr: 2016-02-01 11:59:20 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059102287] [to:17057172831] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17852801276] [to:+12392190384] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17722227080] [to:+15612318742] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17047712151] [to:+12139298848] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612319572] [to:17542021238] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142033208] [to:+14122301641] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16312604688] [to:+16319800497] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794061] [to:17027593695] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14173123713] [to:+19177229885] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12265050013] [to:+12264554537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18152177374] [to:+18729997881] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327502] [to:17037316668] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15196149990] [to:+12262412001] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12157688883] [to:+18563125638] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12497000990] [to:17096951415] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14108051045] [to:+13477869814] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046295038] [to:+12404077706] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12296696108] [to:+15103136266] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122185928] [to:+13478120892] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17043900085] [to:+19802095889] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635497262] [to:15634993703] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173096251] [to:+13219996262] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138117] [to:16037772520] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15188179182] [to:+19142815094] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14234150098] [to:14234409327] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12167895983] [to:+17248035099] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124847923] [to:+15204333144] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13252008059] [to:+14693310598] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18038429339] [to:+19715126005] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-11 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16319656263] [to:+18452627730] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12108720157] [to:+18322464140] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437202806] [to:14437665059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-10 mdr: 2016-02-01 11:59:21 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238279297] [to:+14234150092] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:21 ip-10-0-64-11 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677939070] [to:12679927048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:21 ip-10-0-0-10 mdr: 2016-02-01 11:59:21 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19785939305] [to:19783979692] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172193227] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13176986493] [to:+19172750903] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388077826] [to:14388287178] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524127] [to:15126798908] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15186155262] [to:18569939259] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12487610369] [to:+15612910466] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042594170] [to:17783170149] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479192969] [to:12077468200] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12523052841] [to:+16413165465] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17077236015] [to:14438059464] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133205324] [to:18134813243] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515543678] [to:+17605896926] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673576343] [to:+18133088901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16397394726] [to:17809063704] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938415] [to:13615002324] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122417714] [to:+19292200373] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19803190991] [to:+17605899711] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15025958285] [to:+14018677274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465470497] [to:16175840965] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15094360330] [to:15096550530] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13072759126] [to:13854454021] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14037414913] [to:+15873289576] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-20 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520674952] [to:+447983513336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-10 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16148177213] [to:+16149963560] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:22 ip-10-0-64-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16188024198] [to:+12132953702] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-10 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14582016798] [to:15673440742] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16123848509] [to:+16314177164] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:22 ip-10-0-0-11 mdr: 2016-02-01 11:59:22 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18327774217] [to:12142084298] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035058035] [to:+16034138381] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989729] [to:15187195521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292200259] [to:16787538120] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16418632236] [to:16417802502] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17742047889] [to:12143037442] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16042396757] [to:16043519938] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234834492] [to:13237109600] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19733030680] [to:+12015805866] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815665] [to:12035078627] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12675797122] [to:+12678676839] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845442849] [to:+14842048496] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17729797537] [to:14782974469] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19088992566] [to:19085255479] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15186539266] [to:+13477989729] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-21 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451223727] [to:+447415511073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508656584] [to:+17193561090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19015090187] [to:+13477988094] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12708893056] [to:+19709998205] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161239] [to:19192888724] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:19563108585] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18106414378] [to:18108145961] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16465862669] [to:+12243104467] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19735588710] [to:+19739639243] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:23 ip-10-0-64-11 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15853638595] [to:+15852824417] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14192130083] [to:+14199649083] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:23 ip-10-0-0-10 mdr: 2016-02-01 11:59:23 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19104955232] [to:+13025958635] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15745143949] [to:+12695755337] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17066811381] [to:+14703336490] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-20 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608506] [to:+447742172997] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15057170644] [to:15052857499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17273203959] [to:+18133208963] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095284390] [to:+17027794664] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166629739] [to:+16474916204] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16062591923] [to:+12138063575] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374671] [to:12342008024] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524970145] [to:+19172319348] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696118] [to:12028340853] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17163905854] [to:+17162791283] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073008441] [to:12542585319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191134] [to:18636057517] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132168] [to:16033394765] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783979692] [to:+19785939305] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815953] [to:593981579344] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16464003559] [to:+16465319241] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466876505] [to:16466696824] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095284390] [to:+17027794664] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479191134] [to:18636057517] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12342059357] [to:+13309681946] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15182908691] [to:15185656117] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074938] [to:19107512792] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054347266] [to:+16474914804] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:24 ip-10-0-0-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551409] [to:19095603085] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-11 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619380] [to:15107540885] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242866448] [to:15737273517] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:24 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476217] [to:12254431898] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:24 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12344017429] [to:12169721775] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784967057] [to:17622099493] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128188818] [to:+17736669282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228605] [to:17578228760] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15613165245] [to:19143304693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12405457893] [to:14433733266] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17752003027] [to:+17027181324] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17018710762] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003CD0301] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12533478234] [to:+12532047211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19313032393] [to:+19318967172] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573374] [to:15053220007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16197629128] [to:+18583604453] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12893397674] [to:+16474937637] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15024407707] [to:+15022083257] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474993016] [to:12892701540] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14434544920] [to:+18572404877] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15136289501] [to:+12604071409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133622375] [to:+14132715431] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16174138533] [to:+17816548592] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15026090065] [to:+12136349049] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279985743] [to:12142638170] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15415130326] [to:+17027476140] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16142542375] [to:+19802097616] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573374] [to:15053220007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15708540405] [to:+15705216799] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13369382017] [to:13366845156] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047659] [to:16138495937] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474915264] [to:+16319800050] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17018710762] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CD0303] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232770236] [to:+14242866725] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19085160500] [to:12018397833] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276575653] [to:+17864107761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15052573374] [to:15053220007] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19374811620] [to:+17727740208] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17726177899] [to:16093690348] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:25 ip-10-0-0-10 mdr: 2016-02-01 11:59:25 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18582237594] [to:17818597896] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:25 ip-10-0-64-11 mdr: 2016-02-01 11:59:25 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13188345708] [to:+13214068552] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017368227] [to:+19739639072] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15636395909] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14166483466] [to:+16477992969] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177739942] [to:19174748655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476764106] [to:16463294794] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477568366] [to:18017557964] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14235996440] [to:+12138227527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17406122410] [to:+17408796105] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19415255391] [to:12246169818] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+01161416100459] [to:+13866018686] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17204775882] [to:13203967514] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465640841] [to:17132690353] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169260330] [to:15164626852] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133602357] [to:+18194140162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19107891034] [to:+18572559394] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-11 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508000289] [to:+13054175325] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:26 ip-10-0-0-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14783655370] [to:+12138612526] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:26 ip-10-0-64-10 mdr: 2016-02-01 11:59:26 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17249939197] [to:17403140897] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18645563913] [to:+18649995957] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179184046] [to:+14197767557] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172593887] [to:13479624051] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146136984] [to:15146630396] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13175012930] [to:+12602327105] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473899413] [to:17578313788] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19794265316] [to:18327761067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18035433579] [to:+13203074711] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164469634] [to:+12897681006] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497436] [to:19293402034] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19193072847] [to:17246995090] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041927] [to:+18572400893] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12343077860] [to:13372808494] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477973132] [to:13477911460] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17142518834] [to:+17142153623] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773516] [to:15048722984] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17727747287] [to:17064153121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477982681] [to:17575047621] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15125597443] [to:15074305942] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18636058909] [to:+15162526789] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998463] [to:12898085614] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:27 ip-10-0-0-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17278197313] [to:17405348527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-11 mdr: 2016-02-01 11:59:27 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18502593682] [to:+14242795333] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881205] [to:12063805565] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:27 ip-10-0-64-10 mdr: 2016-02-01 11:59:27 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144005949] [to:14145739417] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19095284390] [to:+17027794664] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062501823] [to:+13069929426] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14804392377] [to:14803296594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15735867068] [to:+18134301284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187334] [to:19177766282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13308012354] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13213172415] [to:+19142817607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19293129367] [to:+17185041614] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17652747147] [to:+12017429281] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15854650528] [to:+16317707340] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788478713] [to:+16784348960] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16475566599] [to:17095894861] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13108814826] [to:14245367432] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19894926928] [to:+17636849995] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14153408518] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367306284] [to:16363467681] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165547569] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14146004325] [to:14072854738] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:13104306673] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165547569] [to:+16475037910] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17408796728] [to:13042314465] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-11 mdr: 2016-02-01 11:59:28 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15144642975] [to:+15146132621] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729476053] [to:12144573746] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14074424311] [to:14072743164] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774474] [to:14142436606] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:28 ip-10-0-0-11 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387924456] [to:14388221032] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:28 ip-10-0-64-10 mdr: 2016-02-01 11:59:28 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474953474] [to:16474541230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-21 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331796] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605896176] [to:19374787545] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15087884140] [to:13186557044] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18653473466] [to:18658514674] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15169847271] [to:+13475187692] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847355722] [to:+16109102290] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19162896796] [to:+14155212319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18149232061] [to:+13479379212] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478524668] [to:+16474913174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:18019209046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133084815] [to:19107099463] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197767985] [to:17402023943] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027062836] [to:19024881844] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17817868112] [to:19809259251] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020283] [to:19543058096] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897131] [to:16059996452] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047924] [to:16133718237] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479261919] [to:12677793336] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954121] [to:14164172356] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041566] [to:+14387940417] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136324918] [to:12054104581] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14075086945] [to:+13477147736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17865635137] [to:+13053404906] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18505016807] [to:+15103223800] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18603268288] [to:+13478086162] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149964609] [to:16145797311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15622989698] [to:+18185401976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15745667461] [to:15742745714] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526143] [to:12165777521] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14108884267] [to:14439452784] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:29 ip-10-0-64-10 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262418127] [to:15199950331] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-10 mdr: 2016-02-01 11:59:29 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12083126172] [to:+13219990603] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:29 ip-10-0-0-11 mdr: 2016-02-01 11:59:29 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835350] [to:15409995792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19039004314] [to:19032531684] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17174346280] [to:+13477868593] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15412488633] [to:15417354148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17024432840] [to:+17027184314] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13152883292] [to:+16465479755] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-11 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13474863548] [to:18042216973] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328042929] [to:13042167185] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14185763343] [to:+15817008951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-64-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144581533] [to:+14144006381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19414478121] [to:+19417256537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058227078] [to:+17053005326] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863726930] [to:18638442916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030950] [to:19024529861] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-10 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14152377614] [to:18136797220] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:30 ip-10-0-0-11 mdr: 2016-02-01 11:59:30 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149439] [to:13168217981] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077808444] [to:+14072680685] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474068949] [to:+16477995024] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19093590225] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17743223867] [to:+15089874966] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478684769] [to:18435974243] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044775097] [to:+19046947529] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15712597894] [to:+17039967356] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156308622] [to:16037317297] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19712488352] [to:18172319096] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17029015708] [to:17756889377] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14843476777] [to:+14844124061] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17862367478] [to:+17864801540] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18325927016] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474042116] [to:+16474954081] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478021758] [to:17407382544] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639493774] [to:18639349844] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:14199613516] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072161105] [to:14076908528] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732907] [to:15704841881] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-11 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815199] [to:12762749345] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14142107110] [to:+14148885086] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:31 ip-10-0-0-11 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19183445704] [to:+17182559767] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074099448] [to:18282606256] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14198101814] [to:+15672067630] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:31 ip-10-0-64-10 mdr: 2016-02-01 11:59:31 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477737992] [to:13524404155] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14136643581] [to:+13476504391] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193502165] [to:+16137024774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078320] [to:14388770122] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14043412759] [to:14044236073] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478020035] [to:19739556115] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19377639231] [to:+15612937692] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033331] [to:12184105034] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+14158532178] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-20 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520624872] [to:+447858370549] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144006181] [to:14148750216] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12562672537] [to:+13478992504] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142273534] [to:+19298410534] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095196199] [to:+16108804717] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267801551] [to:+14388095398] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077808444] [to:+14072680685] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-21 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447821389780] [to:+447451238610] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165203932] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15038916076] [to:+19715122877] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190404] [to:15186057694] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479569269] [to:15613207693] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18089362812] [to:+13473438595] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17026895184] [to:+17026748451] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-11 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15054446171] [to:15057132601] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097845] [to:19803285733] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:32 ip-10-0-64-10 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366931766] [to:+13364500805] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:32 ip-10-0-0-11 mdr: 2016-02-01 11:59:32 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013722] [to:13867483922] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411088] [to:13043142168] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132954682] [to:19104204770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172139015] [to:15623365132] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482161] [to:17155596121] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14129239941] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:15169025840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16245] [to:+14158532178] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16289994874] [to:+19165339567] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12099189081] [to:+12543347152] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18147952193] [to:+14253327952] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737211] [to:14106246101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13362532415] [to:+13476762214] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13219996262] [to:17173096251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077808444] [to:+14072680685] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207783] [to:12693323619] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142795058] [to:16462904866] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18454993171] [to:+18459407516] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16025721988] [to:16025090085] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104496806] [to:+18477969430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056754564] [to:+12138064418] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194480177] [to:+14506390822] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562881299] [to:+18569550282] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262398] [to:19317435476] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472998933] [to:+14388075021] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12898398888] [to:+16475038968] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17739431549] [to:+16304892640] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-0-10 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16478235265] [to:+16474951723] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-11 mdr: 2016-02-01 11:59:33 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788589932] [to:+13475187117] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:33 ip-10-0-64-10 mdr: 2016-02-01 11:59:33 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14704446899] [to:16788945236] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12404470102] [to:+12136309312] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12525642048] [to:+13476067742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551854] [to:50498785227] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572327502] [to:17037316668] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:19313371219] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13138294440] [to:+13134688660] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12508084520] [to:+14502322929] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477865042] [to:13156228709] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027046197] [to:18455009630] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17328090586] [to:+17323774681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477074493] [to:+16079687211] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16149228352] [to:14196516716] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263447743] [to:+14502339438] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437203167] [to:14102271096] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13476672011] [to:18039400033] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12132951858] [to:16614489624] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15085672278] [to:+17189629135] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15304882797] [to:13308068245] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136349861] [to:17063336782] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18646506091] [to:+14845354773] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18106189765] [to:+15852821326] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15129524127] [to:15126798908] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12242219054] [to:+13126311629] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17703341434] [to:+16784345716] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172720751] [to:17705681760] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17154979165] [to:+16516664694] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17169076256] [to:+17162790213] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:34 ip-10-0-0-10 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-10 mdr: 2016-02-01 11:59:34 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817020339] [to:15813097401] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:34 ip-10-0-64-11 mdr: 2016-02-01 11:59:34 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16307461282] [to:+13476903028] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18193296667] [to:+18194122229] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003E10201] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16139126249] [to:16136011728] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692055000] [to:18192785157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12034354655] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19025808454] [to:+19028018402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802097704] [to:13024700714] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136266] [to:12296696108] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477989729] [to:15186539266] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023905867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12017592918] [to:+12132371818] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13086602237] [to:+12138024092] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13526154910] [to:+17185042288] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506313910] [to:18504192348] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047253996] [to:+14088725798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18328853247] [to:+18326501160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13234984479] [to:17143377454] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18653680142] [to:+18133209114] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16789144710] [to:+13479193437] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072162720] [to:19803199408] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13524785558] [to:+19417256164] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204335678] [to:12409889958] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17078974109] [to:14086006229] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139217619] [to:16063046789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-10 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14122301606] [to:17249544312] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-10 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13307943378] [to:+12342312981] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:35 ip-10-0-0-11 mdr: 2016-02-01 11:59:35 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16103316669] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:35 ip-10-0-64-11 mdr: 2016-02-01 11:59:35 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17097000590] [to:15812307211] [flags:-1:2:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157995910] [to:15597548100] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047253996] [to:+14088725798] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12626482161] [to:17155596121] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342313931] [to:16062737608] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438720441] [to:18033238743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15086237169] [to:17742650344] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177731142] [to:18146945927] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190851] [to:18573335666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19164690523] [to:15103631975] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12897690298] [to:12893833349] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852627] [to:13023672056] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302373908] [to:13302122436] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17314444930] [to:+18572190915] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242842709] [to:18502761215] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473797236] [to:19105262153] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513284459] [to:+17784025376] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:0500039A0202] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16513284459] [to:+17784025376] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:0500039A0201] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103131389] [to:13178285159] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148990458] [to:16197887960] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638127147] [to:+17604743553] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18326167619] [to:18326872465] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860086] [to:13365200944] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073372467] [to:19548545617] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187334] [to:19177766282] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:36 ip-10-0-0-10 mdr: 2016-02-01 11:59:36 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16095820507] [to:+12672474074] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-10 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18077887050] [to:18072124064] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:36 ip-10-0-64-11 mdr: 2016-02-01 11:59:36 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068552] [to:13188345708] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17201764338] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16026384733] [to:17201764338] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18125984441] [to:+13176881190] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018421490] [to:16018316038] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14144007691] [to:14144914828] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811106] [to:16789793322] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122557800] [to:19804745841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393711] [to:17042988051] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479971179] [to:13046382622] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472858749] [to:+16474951716] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148468594] [to:13173322786] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12702564886] [to:+14136859219] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572194980] [to:19313383777] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572190742] [to:16179595933] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18039438816] [to:+16125024064] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003E10202] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18168539801] [to:+13477055110] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049191677] [to:+13369383901] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762664058] [to:+13366450166] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-21 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447913467969] [to:+447451211261] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19294221202] [to:+19177248514] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12673177412] [to:19123479775] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19174094427] [to:13477822483] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19018426331] [to:19013005800] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15403008990] [to:15404690360] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038519259] [to:18036050532] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:18477220189] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14073374978] [to:14078442958] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14165001427] [to:+12894601587] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14186803698] [to:+15817014720] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-11 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15202738872] [to:+12136348283] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16105718174] [to:12675061019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:37 ip-10-0-64-10 mdr: 2016-02-01 11:59:37 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12315579365] [to:+12312996473] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:37 ip-10-0-0-10 mdr: 2016-02-01 11:59:37 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19173965527] [to:19102319614] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17328842822] [to:17325015170] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15675251649] [to:+14199304845] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15179458778] [to:+15178615182] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044775097] [to:+19046947529] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19298411066] [to:17346206690] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855904902] [to:+15852823832] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801834] [to:13012475726] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801834] [to:13012475726] [flags:-1:2:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12037706892] [to:+19173911128] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18186359949] [to:+19172668001] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17073464654] [to:17073446615] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672819659] [to:15624859217] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17059103236] [to:17052216251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17046176345] [to:+13477988979] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17578979006] [to:+12404077785] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477965592] [to:18608976923] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19784896034] [to:19515821609] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17058457280] [to:+12497001046] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267981185] [to:15042701059] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14439738545] [to:+14436813387] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12399000221] [to:12392061031] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14023874603] [to:18042182139] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12527145857] [to:+13217309583] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867423110] [to:12708362193] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18433072967] [to:+18438888321] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-0-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:14046620733] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715126005] [to:18038429339] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-11 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328043952] [to:13614552527] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715402] [to:14133582416] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15852821654] [to:15853632112] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:38 ip-10-0-64-10 mdr: 2016-02-01 11:59:38 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17723601948] [to:17728126039] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835038] [to:12023726771] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12073576398] [to:+13479789928] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19416238918] [to:+14692058056] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605737629] [to:+12602327502] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18435974243] [to:+13478684769] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19702086224] [to:+19412642555] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18133306580] [to:+18133088986] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457745586] [to:+15852825022] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551409] [to:19188033980] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19178263157] [to:+14076333415] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18014031046] [to:+17813995077] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16037772520] [to:+16034138117] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16109314836] [to:+13024002647] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13308244547] [to:+15154438778] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15705216799] [to:15708540405] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16504860007] [to:17066140969] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474919216] [to:16479837939] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504207882] [to:+18506314121] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13615002324] [to:+17274938415] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:19179827171] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138737336] [to:18086907908] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17654341093] [to:+12134788904] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214068144] [to:18433717152] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17205040332] [to:+19142817275] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12028340853] [to:+13477696118] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196857458] [to:+14197404774] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18188563552] [to:13104306673] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15738206239] [to:+13479219454] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138063575] [to:16062591923] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17605897497] [to:18125896512] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034132239] [to:16037176222] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162839064] [to:+16163190029] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15193622308] [to:+12262418597] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14693310598] [to:13252008059] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-11 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18134301284] [to:15735867068] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157879138] [to:19102345311] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:39 ip-10-0-64-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12515101126] [to:+17605896607] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:39 ip-10-0-0-10 mdr: 2016-02-01 11:59:39 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172318733] [to:16036675909] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479196438] [to:12074783625] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742722019] [to:+18054203120] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19124296593] [to:+12132959402] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19199229741] [to:+19194156963] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16109102290] [to:14847355722] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17607013859] [to:18634403535] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14435835350] [to:15409995792] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328044662] [to:12146419750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169341320] [to:19293389185] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16468361474] [to:+14807390765] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19165339276] [to:19168260590] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204336271] [to:17862368662] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19783619380] [to:15105936817] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12709916863] [to:+12709849054] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18323354232] [to:+16574008686] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15615043533] [to:+14692057146] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14022240031] [to:+12138026256] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795333] [to:18502593682] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134688335] [to:16786401110] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16159398057] [to:+13479806844] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13203074711] [to:18035433579] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477074493] [to:+16079687211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306207084] [to:+13309157503] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314686] [to:18506374175] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177730792] [to:15402959567] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18438888984] [to:18436390270] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-10 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15416341206] [to:15413710054] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-64-10 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16138495937] [to:+16136047659] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14157614980] [to:17086737601] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:40 ip-10-0-0-11 mdr: 2016-02-01 11:59:40 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19027987946] [to:+19027043469] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15109343971] [to:+15103135160] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18326283314] [to:+18328334316] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13025852000] [to:16086363167] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13302374201] [to:13306140624] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15163609976] [to:16094121226] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13476239573] [to:+16315171419] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477735783] [to:18609422539] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167068227] [to:+13477866974] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627778189] [to:17155449114] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379180] [to:15163667606] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900305] [to:+19149338940] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817008951] [to:14185763343] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15623365132] [to:+16172139015] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13608430358] [to:+19715125977] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12035078627] [to:+19142815665] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14164328583] [to:+12262416976] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14234409327] [to:+14234150098] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15864192323] [to:+18108528597] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703974591] [to:15704234841] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672732905] [to:12672412617] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17178211133] [to:+17184169174] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14845971959] [to:+13473437482] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16173224018] [to:+15102547335] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004620] [to:19026921062] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17276575653] [to:+17864107761] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262403382] [to:15194960573] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16308696716] [to:16305204500] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17345584204] [to:+17346669208] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14248003809] [to:+18458181359] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:41 ip-10-0-0-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16069751215] [to:+17729797187] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17042988051] [to:+12162393711] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:41 ip-10-0-64-10 mdr: 2016-02-01 11:59:41 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16363467681] [to:+16367306284] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:41 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17783841300] [to:+17786549602] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14049003661] [to:14042464764] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16034138097] [to:15148350490] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897159] [to:14054488581] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16133718237] [to:+16136047924] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17274938802] [to:17406325759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16267107484] [to:+16467019441] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:12709434876] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437561330] [to:+13072402162] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715122877] [to:15036196136] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15172527786] [to:15179218016] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17056883564] [to:+12497009011] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775544] [to:17313251941] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17072433880] [to:+19165836795] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693553202] [to:+12695755429] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479194984] [to:15138069689] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14144914828] [to:+14144007691] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404579907] [to:+18133085048] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704050210] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17053446344] [to:+16139093010] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679525177] [to:12069533157] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18606905610] [to:+19298413259] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16102957280] [to:+19172751919] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177374766] [to:18145855378] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782440106] [to:+19148291092] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12038953440] [to:+19298418497] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16467381128] [to:18126757507] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17603912608] [to:+17605098837] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15169269339] [to:17175575673] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14502339438] [to:12263447743] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:19196721201] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19012670488] [to:13137821877] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027476282] [to:15169025840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-11 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-21 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447508538937] [to:+447520674576] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12604077536] [to:12606025230] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:42 ip-10-0-0-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17742232230] [to:+18572559756] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088465] [to:14389313843] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-11 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14503286531] [to:14506263005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:42 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12482068450] [to:15736443591] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:42 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403582784] [to:+14197767430] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475086000] [to:17707338603] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13214067129] [to:13217959240] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18328045120] [to:13154819583] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497436] [to:19293402034] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15625534328] [to:14247446475] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15408380510] [to:+18046243873] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19292442920] [to:+15104475673] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15819844212] [to:+15817022153] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16137024774] [to:15193502165] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16137610146] [to:+16139097006] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256212] [to:17815392509] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19704050210] [to:+15754497888] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19857881123] [to:+12138024006] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14128193317] [to:14125205594] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176444406] [to:13174373286] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12679927048] [to:+12677939070] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14387643323] [to:+14387927527] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19729478333] [to:16155461168] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:15123504297] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-64-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008051] [to:18127188951] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14406588791] [to:12164131878] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14077828718] [to:+14073371251] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14692057146] [to:13036532341] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473898083] [to:18144282224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-10 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14132715431] [to:14133622375] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815153] [to:16097721614] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:43 ip-10-0-0-11 mdr: 2016-02-01 11:59:43 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068035971] [to:15062923177] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13237109600] [to:+13234834492] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863295670] [to:17863609588] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459702] [to:19374891405] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103137905] [to:17652159967] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19177373979] [to:17703674581] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17037479418] [to:12025058642] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15032099766] [to:+19717328443] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19792326112] [to:12602510242] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12405334413] [to:+12405587756] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16156146889] [to:14239074319] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15184860409] [to:+15184174118] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574788786] [to:+14043900261] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15406025924] [to:14438751973] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15147016886] [to:+15146134124] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477869814] [to:14108051045] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138613854] [to:19034221787] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12512601939] [to:+14694237412] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-21 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:Google] [to:+447418331796] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18193075887] [to:15812158087] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12176498248] [to:+12174889156] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817009745] [to:14185200307] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18435345314] [to:14078445666] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086299041] [to:+18046242623] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314262] [to:13309372474] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19732985474] [to:12019527120] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15704945546] [to:+15703973518] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069927681] [to:13065191147] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18283021317] [to:+19148468426] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003140202] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123293147] [to:+18046243522] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14056259899] [to:+12485375572] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-10 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17189628377] [to:19786881955] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:44 ip-10-0-64-10 mdr: 2016-02-01 11:59:44 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15048722984] [to:+12133773516] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:44 ip-10-0-0-11 mdr: 2016-02-01 11:59:44 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526889] [to:19375273877] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17603145227] [to:12192862006] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17074033497] [to:17073393803] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15802165311] [to:+18639493137] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15635593274] [to:15635060914] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17574788786] [to:+14043900261] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132621] [to:15144642975] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404877] [to:14434544920] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15148151885] [to:+15146132061] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12022972119] [to:+19543639742] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439719938] [to:14436982306] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15056862016] [to:+19286605465] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12313318202] [to:12312391827] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:13102933972] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19498771451] [to:15022948465] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305888] [to:15093680772] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14023375717] [to:+12342315115] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17659930251] [to:+12134786476] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14196516716] [to:+16149228352] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12677938989] [to:13102933972] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863315693] [to:15178616251] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19167068227] [to:+13477866974] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12498775036] [to:+12894601561] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14795614213] [to:+12138221783] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475187692] [to:15169847271] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16612285394] [to:16612210123] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14156850906] [to:14782783283] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477998345] [to:17152182399] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625781666] [to:+15103136895] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144356655] [to:+13147868338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102774633] [to:14017440280] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148609669] [to:12072057152] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17863726930] [to:18638442916] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17322776112] [to:+19082809101] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804263] [to:16107646866] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003080704] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:6:050003080701] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080705] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044128475] [to:+19047584458] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080703] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139296071] [to:13372870183] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003080702] -Feb 1 11:59:45 ip-10-0-64-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14437665059] [to:+14437202806] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13048071152] [to:+17256660310] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142967246] [to:18503639195] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:45 ip-10-0-64-10 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:45 ip-10-0-0-11 mdr: 2016-02-01 11:59:45 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13045315577] [to:+16317707185] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138739319] [to:19802084426] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15874050394] [to:17809350690] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13475763406] [to:+17185042100] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17604745521] [to:12709434876] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364864294] [to:+13366450997] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16093300749] [to:+13477148696] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16785861019] [to:17278517900] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19206299218] [to:+12627778577] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13606693181] [to:+13607884784] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19599999401] [to:18609410098] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802886900] [to:+16467677651] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17172152312] [to:+19172661221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15109480438] [to:16609883760] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13214023366] [to:+14072163578] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-21 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447520608008] [to:+447881511744] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15022038496] [to:+14692708568] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042290] [to:19177535815] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084843684] [to:+19172592080] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627775402] [to:13046199357] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13144356655] [to:+13147868338] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18284462563] [to:+19199161836] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388078076] [to:15145039826] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024125604] [to:+15068018611] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16144042900] [to:+12162396177] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080707] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13049914906] [to:+14153406884] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:6:050003080706] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13046200886] [to:+17702005863] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16513337878] [to:18019209046] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18104043723] [to:+18102218447] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17404401258] [to:+17402017827] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172836060] [to:18435170153] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16367305301] [to:16367445805] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-11 mdr: 2016-02-01 11:59:46 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12137978772] [to:14232273015] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:46 ip-10-0-64-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024881844] [to:+19027062836] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:46 ip-10-0-0-10 mdr: 2016-02-01 11:59:46 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19783640164] [to:+19172833572] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13184262636] [to:+18572327925] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212319] [to:19162896796] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-21 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418336473] [to:+447802839989] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19727521323] [to:19726747676] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155324401] [to:+18508950377] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16162911388] [to:+14064043581] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133723685] [to:+14132736822] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122753872] [to:13307865912] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16462956680] [to:+13473899475] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242481] [to:18049390669] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16108804717] [to:16095196199] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12029992541] [to:+12026015630] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17405030430] [to:+13477988672] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14242795504] [to:18285146388] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17054652524] [to:+17053026222] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15672057151] [to:14192965379] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16172132273] [to:16179704275] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784343645] [to:14045100454] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12135296356] [to:14058354270] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065815185] [to:+16784968224] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703334046] [to:17067505091] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500152] [to:13366826791] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13137691755] [to:+16466691774] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17279986004] [to:14106225372] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479379212] [to:18149232061] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13364500152] [to:13366826791] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17542643208] [to:+13476304361] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18198061885] [to:+18193038497] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062092006] [to:+13064000246] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:47 ip-10-0-64-10 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133316640] [to:18137678824] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18503214792] [to:+13476856676] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:47 ip-10-0-0-11 mdr: 2016-02-01 11:59:47 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15713262718] [to:12023685921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-20 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:+447796447079] [to:+447520609736] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15599174700] [to:+18324503870] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18484041898] [to:+16173419082] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13477074493] [to:+16079687211] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13062403665] [to:+17097015719] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18195714617] [to:+18194141127] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18562296469] [to:+18562916292] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17038686887] [to:+19179797348] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19199161653] [to:19195244758] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12522141861] [to:+17607013114] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18316107665] [to:15018139668] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19196721201] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951723] [to:16478235265] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13866013722] [to:13867483922] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17126427985] [to:18126397378] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14193094735] [to:+15672819409] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172835490] [to:18432302931] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479788897] [to:12038180587] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022402201] [to:+19027062695] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388088217] [to:15146012998] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15086237169] [to:17742650344] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19149338940] [to:15855900305] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18452627730] [to:16319656263] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:48 ip-10-0-0-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784338955] [to:14046683224] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-11 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14199613516] [to:+18639491733] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:48 ip-10-0-64-10 mdr: 2016-02-01 11:59:48 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13474565342] [to:+15187127031] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15164724184] [to:14094343499] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18639491733] [to:14199613516] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15627198708] [to:15622537789] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14155212723] [to:18763182406] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17784026969] [to:17788098814] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17049700773] [to:19803194322] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17248035099] [to:12167895983] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16625676664] [to:+16465472246] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13154819583] [to:+18328045120] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12762987718] [to:+13477361378] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572551409] [to:19189467513] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13364657997] [to:+13369381769] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17573769963] [to:+12138064390] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17064479977] [to:+14788455036] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15165805507] [to:+13479378787] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12703126880] [to:+14703334922] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18329476392] [to:18087839843] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043769] [to:18654109482] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314592] [to:16183834010] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19083824652] [to:19089867336] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17165535457] [to:+17162790260] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477055110] [to:18168539801] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16315171419] [to:13476239573] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16466696824] [to:+16466876505] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017647814] [to:+12134788713] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477868593] [to:17174346280] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13134247784] [to:13136561648] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16026868441] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18622278967] [to:18625882361] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106407169] [to:+14422816738] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003270201] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377491] [to:12709401114] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18722259470] [to:16237036770] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13367018095] [to:13365809873] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479130625] [to:13235228906] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15612910466] [to:12487610369] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-10 mdr: 2016-02-01 11:59:49 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17026748997] [to:17169709180] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:49 ip-10-0-0-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12078444963] [to:+14388078584] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:49 ip-10-0-64-11 mdr: 2016-02-01 11:59:49 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14807403318] [to:+16233837133] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309441424] [to:+13302374156] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-20 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17122277678] [to:17248101425] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16164467909] [to:+16167948238] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-20 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447418328953] [to:+447538141626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128602870] [to:+17736690476] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142815094] [to:15188179182] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089418294] [to:+19086625921] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19106407169] [to:+14422816738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003270202] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13475808032] [to:15858311969] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14805276252] [to:+16026384088] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15172135299] [to:+17816024266] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19802084426] [to:+12138739319] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17073446615] [to:+17073464654] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15863153153] [to:12672067273] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16477992969] [to:14166483466] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17025003333] [to:+17207291211] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16083591745] [to:+12626481442] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13155324401] [to:+18508950377] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13609494454] [to:13608093253] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14433801834] [to:14437712804] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16463497333] [to:15618604006] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027004047] [to:19023048632] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17044373615] [to:+13369440623] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812158364] [to:+19177739538] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17402023943] [to:+14197767985] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065813362] [to:+14153408518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617666407] [to:15617971873] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13185060931] [to:+12134785610] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18086299041] [to:+18046242623] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16465479153] [to:12517695076] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15086856006] [to:+15085569535] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:50 ip-10-0-64-10 mdr: 2016-02-01 11:59:50 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12536917074] [to:+12532480110] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:50 ip-10-0-0-11 mdr: 2016-02-01 11:59:50 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15084168639] [to:15086674952] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12672302919] [to:+12039904243] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13122752490] [to:16038921899] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12627774723] [to:16089635531] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15177508757] [to:+15178615077] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262411282] [to:15193286148] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16122558545] [to:12482498228] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19026911492] [to:+19027056332] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19148486214] [to:15409312921] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16033394765] [to:+16034132168] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16136047629] [to:16132097098] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138225259] [to:19182260257] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19735479657] [to:18484046262] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17176860783] [to:+13366452470] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15855900474] [to:+14023874468] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174373286] [to:+13176444406] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15096550530] [to:+15094360330] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15029942090] [to:+15028041389] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16057897131] [to:16054316005] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12168565000] [to:+12167990741] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668001] [to:18186359949] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388072409] [to:15149676387] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12136348602] [to:13305196792] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12509006203] [to:12502188426] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867428410] [to:19044086791] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-10 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19028807119] [to:+19027021768] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15146132061] [to:15148151885] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672473640] [to:12158828306] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18609422539] [to:+13477735783] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-10 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18629551683] [to:19737566067] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:51 ip-10-0-64-11 mdr: 2016-02-01 11:59:51 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19365878635] [to:19362177816] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:51 ip-10-0-0-11 mdr: 2016-02-01 11:59:51 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16474541230] [to:+16474953474] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027043458] [to:19022371776] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13053405258] [to:12293953395] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19417256164] [to:13524785558] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12409889958] [to:+15204335678] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12293953395] [to:+13053405258] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13052038418] [to:15866101560] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409233599] [to:+12242140336] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12263500421] [to:+12262407758] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479803305] [to:15163766882] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103222816] [to:13305813308] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133582416] [to:+14132715402] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19024039616] [to:+19027046105] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13304285407] [to:+16503008374] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15742018502] [to:+14157127381] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13377062113] [to:+16785868124] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17403819746] [to:+17077556101] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13477696805] [to:16303372214] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366752694] [to:+19543142658] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14255630357] [to:+12138221291] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18572404307] [to:19043358380] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16788945236] [to:+14704446899] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:15127165626] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:6:050003080201] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14047322320] [to:+16785867634] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474950762] [to:12508009704] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14389334790] [to:+14388078360] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12267902023] [to:12262346627] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12672777385] [to:14844938924] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17065643091] [to:+13478082090] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:52 ip-10-0-64-10 mdr: 2016-02-01 11:59:52 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12074853028] [to:+13477868511] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:52 ip-10-0-0-11 mdr: 2016-02-01 11:59:52 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13478966229] [to:14232842398] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18638442916] [to:+17863726930] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206294048] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142286287] [to:12036152750] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12628886073] [to:19206294048] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15703973094] [to:15702909432] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16186101065] [to:+12132953702] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14088725734] [to:15593125271] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12169721775] [to:+12344017429] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15068045205] [to:15063002582] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027058325] [to:19024038844] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19142817241] [to:13153695405] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18484824135] [to:15512561439] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19317435476] [to:+15713262398] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128091631] [to:+17194265728] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15617664967] [to:14408236417] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19725285595] [to:12294001944] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12402814494] [to:+12407435839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18608976923] [to:+13477965592] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14388095850] [to:15145774474] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14133622375] [to:+14132715431] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17866515792] [to:18502519544] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17249895491] [to:+17249939159] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19147757104] [to:+19715129773] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12693323619] [to:+12692207783] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14199304531] [to:14192775562] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17173953521] [to:+16463498094] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18138585712] [to:+19175804951] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998644] [to:13476596356] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-10 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232984533] [to:+13219996282] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998644] [to:13476596356] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16466998644] [to:13476596356] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:53 ip-10-0-64-10 mdr: 2016-02-01 11:59:53 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474954070] [to:12044306787] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:53 ip-10-0-0-11 mdr: 2016-02-01 11:59:53 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103358801] [to:12532227825] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18478584910] [to:+14155494861] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14132182078] [to:+14136854965] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13302122436] [to:+13302373908] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17812621216] [to:15704193261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19194806784] [to:+13369381140] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15102547335] [to:16173224018] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17053005326] [to:17058227078] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14433733266] [to:+12405457893] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12133773185] [to:19372419520] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873151664] [to:17809654462] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15204337598] [to:12603485558] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17818037531] [to:16035814540] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262417977] [to:19053344550] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139215683] [to:15137800036] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19089021138] [to:+17097010526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-10 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16012599232] [to:+12139218006] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19703163304] [to:+19703156034] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14387945354] [to:15147965759] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19033075713] [to:18477220189] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15145039826] [to:+14388078076] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12693366500] [to:12697599618] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:54 ip-10-0-64-11 mdr: 2016-02-01 11:59:54 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17407382544] [to:+13478021758] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-10 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13176881202] [to:18123698768] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-11 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14703336490] [to:17066811381] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:54 ip-10-0-0-20 mdr: 2016-02-01 11:59:54 Sent SMS [SMSC:TISMIGB] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:+447451245428] [to:+447951238261] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13156228709] [to:+13477865042] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172833425] [to:12073321964] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12148149682] [to:15596231954] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14844124061] [to:14843476777] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17316088598] [to:+16466691792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262408597] [to:19054354275] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14106085176] [to:+14434530310] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13365201911] [to:+19196516865] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19292201167] [to:17133035933] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16472938048] [to:+18077887013] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15753225627] [to:+13477962579] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19044086791] [to:+13867428410] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12023045756] [to:+17037750812] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172668945] [to:13157207800] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17193561090] [to:18508656584] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027184314] [to:17024432840] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17068778145] [to:+13479378238] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19022136060] [to:+19028019374] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479787116] [to:15127165626] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138062671] [to:13233503925] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14078442958] [to:+14073374978] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18504192348] [to:+18506313910] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12138065523] [to:13163058021] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17575047621] [to:+13477982681] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15817022153] [to:15819844212] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19102345311] [to:+14157879138] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12262430662] [to:19058072762] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14342340670] [to:13364575176] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12894601587] [to:14165001427] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19086597537] [to:19084443665] [flags:-1:0:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13473897826] [to:18145982920] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12513593890] [to:+13479377526] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17606759641] [to:+17603145633] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15103631975] [to:+19164690523] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13128188818] [to:+17736669282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12564902241] [to:+15165977666] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18707532102] [to:+19785663432] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15016502039] [to:+14242768097] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086560633] [to:+13024391984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E60302] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16038333780] [to:+16034132239] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12094052568] [to:+18572193895] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12605795229] [to:+15612910501] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12056030376] [to:+12138220658] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17175575673] [to:+15169269339] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18508905580] [to:+13867423858] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12192862006] [to:+17603145227] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15017431490] [to:+14242835795] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18457026163] [to:+18459997065] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16626541217] [to:+12138029552] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15709264602] [to:+15128621361] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19043358380] [to:+18572404307] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19787619620] [to:+17029960696] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17736965208] [to:+12136036518] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14403713645] [to:+14402526274] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13157301293] [to:+13477970236] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12165777521] [to:+14402526143] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673492306] [to:+12677533815] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525297653] [to:+17865673766] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18084369266] [to:+14437201609] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14042072512] [to:+16784343209] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19105805637] [to:+14242838483] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18199683578] [to:+18194140881] [flags:-1:2:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13194298390] [to:+15072994933] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12673576343] [to:+18133088901] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16105743731] [to:+16109105859] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15074305942] [to:+15125597443] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12244077600] [to:+18477969260] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19282085430] [to:+17605896518] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13236359132] [to:+14242842709] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13525984956] [to:+18639493646] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12707767526] [to:+12139296570] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409601088] [to:+17027476275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18599409681] [to:+12132957848] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003140201] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13056809826] [to:+13053405507] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18434085218] [to:+19175638203] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15194027208] [to:+12262411282] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13233503925] [to:+12138062671] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17863609588] [to:+17863295670] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17018710762] [to:+17012892692] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003CD0302] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19086560633] [to:+13024391984] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:6:050003E60301] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16165169674] [to:+16162755166] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13178285159] [to:+15103131389] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19494686732] [to:+16784968263] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15125664535] [to:+12816033676] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19788945683] [to:+19175638969] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13174955021] [to:+13176889800] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12013724195] [to:+19404687149] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17204748758] [to:+13034987798] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19093590225] [to:+13478992620] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-10 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14195750855] [to:+13025850694] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:55 ip-10-0-0-11 mdr: 2016-02-01 11:59:55 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15084843684] [to:+15085569801] [flags:-1:2:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:55 ip-10-0-64-10 mdr: 2016-02-01 11:59:55 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715127369] [to:12704651959] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19128509829] [to:+19172592660] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16094121226] [to:+15163609976] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12044500524] [to:+12048088839] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14348513067] [to:+14342340638] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18122529574] [to:+17736667383] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14803296594] [to:+14804392377] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15089874966] [to:17743223867] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16017543027] [to:+19172669615] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18133087478] [to:17242621659] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14232273015] [to:+12137978772] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+13309441424] [to:+13302374156] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-21 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:TISMIGB] [SVC:] [ACT:] [BINF:CMT] [FID:] [from:BOSSREV] [to:+447451215738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18649063318] [to:+18572400372] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12045579990] [to:+12048180014] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14072160494] [to:14074853961] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16063155756] [to:+13474340738] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19014449157] [to:17314606859] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12015786956] [to:17705452284] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14179883942] [to:+12346507695] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14127356792] [to:+12679232337] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18648845299] [to:+13479066525] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+19544484449] [to:+13216136406] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16574008863] [to:17149008385] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13479377262] [to:12523951228] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17853079077] [to:+17125257028] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951716] [to:16472858749] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196954343] [to:+19282977949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094824] [to:19808885282] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12139356546] [to:16016203753] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18046242763] [to:16316788019] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19715124954] [to:12252793863] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12065959571] [to:+12679525177] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18639349844] [to:+18639493774] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12162393562] [to:16144466380] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15105006064] [to:+17027794231] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-10 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13306140624] [to:+13302374201] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:56 ip-10-0-64-11 mdr: 2016-02-01 11:59:56 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16035814540] [to:+17818037531] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:56 ip-10-0-0-11 mdr: 2016-02-01 11:59:56 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15103136895] [to:16625781666] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18563523091] [to:18562361670] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18044414346] [to:+19173834452] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17152182399] [to:+16477998345] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:6:050003080202] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+15402959567] [to:+19177730792] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14197459683] [to:14195519177] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13366752694] [to:+19543142658] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16317707610] [to:16319879457] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14035549466] [to:+15874050394] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18173637750] [to:18173746465] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17196954343] [to:+19282977949] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17346669208] [to:17345584204] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14402526274] [to:12163014678] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16474951758] [to:15192173382] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12679077721] [to:12152816039] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12398236475] [to:+15703977157] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19802094703] [to:17047130400] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14064043581] [to:16162911388] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+15409601088] [to:+17027476275] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14128608820] [to:+14122302945] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14044811500] [to:15852841759] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:16784123990] [to:16787698846] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14122194344] [to:+13479971091] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16812158364] [to:+19177739538] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19282975298] [to:16235127488] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13367758268] [to:+13369440450] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+19152014307] [to:+19083824084] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17547774491] [to:15203131757] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-64-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16043519938] [to:+16042396757] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-11 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14782974469] [to:+17729797537] [flags:-1:0:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+16504695271] [to:+14158538493] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:57 ip-10-0-0-10 mdr: 2016-02-01 11:59:57 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12542288898] [to:+15129525404] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18142896746] [to:+19172593500] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12163966733] [to:+12167990556] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12692207159] [to:12693325000] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17705452284] [to:+12015786956] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19717328501] [to:18569046191] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14238836824] [to:+12138023221] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+13345404817] [to:+18018907306] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15873232895] [to:14036131728] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13867425726] [to:16015047488] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+12267571033] [to:+12262411045] [flags:-1:2:-1:0:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172660155] [to:12057374489] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14044372611] [to:+17012892044] [flags:-1:0:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+16085185494] [to:+12626484457] [flags:-1:0:-1:0:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15108244250] [to:16093310629] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+12312391827] [to:+12313318202] [flags:-1:2:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14847976112] [to:+13479190842] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408518] [to:17065813362] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18477969430] [to:18104496806] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19172659918] [to:18434218859] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18123698768] [to:+13176881202] [flags:-1:2:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17185042100] [to:13475763406] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-11 mdr: 2016-02-01 11:59:58 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+18564730464] [to:+13477749164] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14153408633] [to:19165820506] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:58 ip-10-0-0-11 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17324433134] [to:17329126316] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:58 ip-10-0-64-10 mdr: 2016-02-01 11:59:58 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:15155057776] [to:18034638606] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17736664054] [to:17735402748] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+18194311666] [to:+16137024980] [flags:-1:0:-1:0:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17205997230] [to:19703718298] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027181324] [to:17752003027] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:13069927681] [to:16399998161] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14439737211] [to:14106246101] [flags:-1:0:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18038143418] [to:18034688231] [flags:-1:2:-1:-1:-1] [msg:101:paper, which is odd because on the whole it wasn't the small green pieces of paper that were unhappy.] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+17095719794] [to:+17097001505] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-11 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+17373466226] [to:+15172585968] [flags:-1:0:-1:0:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE2] [SVC:] [ACT:] [BINF:] [FID:] [from:+14388770122] [to:+14388078320] [flags:-1:0:-1:0:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:19027030880] [to:19029550301] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-0-10 mdr: 2016-02-01 11:59:59 Receive SMS [SMSC:SYBASE1] [SVC:] [ACT:] [BINF:] [FID:] [from:+14508069548] [to:+15817040494] [flags:-1:2:-1:0:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-11 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14506390822] [to:18194480177] [flags:-1:0:-1:-1:-1] [msg:136:Orbiting this at a distance of roughly ninety-two million miles is an utterly insignificant little blue green planet whose ape-descended] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE2] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:14437201268] [to:14438677099] [flags:-1:0:-1:-1:-1] [msg:132:Many solutions were suggested for this problem, but most of these were largely concerned with the movements of small green pieces of] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:12342314262] [to:13309372474] [flags:-1:2:-1:-1:-1] [msg:136:Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:17027794231] [to:15105006064] [flags:-1:0:-1:-1:-1] [msg:127:This planet has - or rather had - a problem, which was this: most of the people on it were unhappy for pretty much of the time.] [udh:0:] -Feb 1 11:59:59 ip-10-0-64-10 mdr: 2016-02-01 11:59:59 Sent SMS [SMSC:SYBASE1] [SVC:backendtextme] [ACT:] [BINF:] [FID:] [from:18506314686] [to:12255050363] [flags:-1:0:-1:-1:-1] [msg:99:life forms are so amazingly primitive that they still think digital watches are a pretty neat idea.] [udh:0:] diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model b/alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model deleted file mode 100644 index 51993f0..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/0-OSI_model +++ /dev/null @@ -1,2 +0,0 @@ -2 -2 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network b/alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network deleted file mode 100644 index 2d6976f..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/1-types_of_network +++ /dev/null @@ -1,3 +0,0 @@ -3 -2 -1 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address b/alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address deleted file mode 100644 index 5f1d0ec..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/2-MAC_and_IP_address +++ /dev/null @@ -1,2 +0,0 @@ -2 -1 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP b/alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP deleted file mode 100644 index e13c5bf..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/3-UDP_and_TCP +++ /dev/null @@ -1,3 +0,0 @@ -1 -2 -1 diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports b/alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports deleted file mode 100755 index 37044da..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/4-TCP_and_UDP_ports +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# script that displays TCP and UDP listening ports - -netstat -l diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network b/alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network deleted file mode 100755 index 4b21913..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/5-is_the_host_on_the_network +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -# script that pings an IP address passed as an argument - -# ip variable -IP="${1}" - -# filename variable -fn=$(basename "${BASH_SOURCE[@]}") - -if ! [ "$IP" ]; then - echo "Usage: ${fn} {IP_ADDRESS}" -else - ping -c 5 "${IP}" -fi diff --git a/alx-system_engineering-devops-main/0x07-networking_basics/README.md b/alx-system_engineering-devops-main/0x07-networking_basics/README.md deleted file mode 100644 index 3e4adaf..0000000 --- a/alx-system_engineering-devops-main/0x07-networking_basics/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# 0x07. Networking basics #0 - -## Resources - -- [OSI model](https://en.wikipedia.org/wiki/OSI_model) -- [Different types of network](https://www.lifewire.com/lans-wans-and-other-area-networks-817376) -- [LAN Network](https://en.wikipedia.org/wiki/Local_area_network) -- [WAN Network](https://en.wikipedia.org/wiki/Wide_area_network) -- [Internet](https://en.wikipedia.org/wiki/Internet) -- [MAC address](https://whatismyipaddress.com/mac-address) -- [What is an IP address](https://www.bleepingcomputer.com/tutorials/ip-addresses-explained/) -- [Private and public address](https://www.iplocation.net/public-vs-private-ip-address) -- [IPv4 and IPv6](https://www.webopedia.com/insights/ipv6-ipv4-difference/) -- [Localhost](https://en.wikipedia.org/wiki/Localhost) -- [TCP and UDP](https://www.howtogeek.com/190014/htg-explains-what-is-the-difference-between-tcp-and-udp/) -- [TCP/UDP ports List](https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers) -- [What is ping/ICMP](https://en.wikipedia.org/wiki/Ping_%28networking_utility%29) -- [Positional parameters](https://wiki.bash-hackers.org/scripting/posparams) - -## Tasks - -
-0. OSI model
-image -
- -
-1. Types of network
-image -
- -
-2. MAC and IP address
-image -
- -
-3. UDP and TCP
-image -
- -
-4. TCP and UDP ports
-image -
- -
-5. Is the host on the network
-image -
diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP b/alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP deleted file mode 100755 index 8a2b4f8..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/0-change_your_home_IP +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash -# changes the following domain resolve ips -# localhost from 127.0.0.1 to 127.0.0.2 -# facebook.com from 157.240.11.35 to 8.8.8.8 - -cp /etc/hosts ~/hosts.new -echo "127.0.0.2 localhost" > ~/hosts.new -echo "8.8.8.8 facebook.com" >> ~/hosts.new -cp -f ~/hosts.new /etc/hosts diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs b/alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs deleted file mode 100755 index dd4180d..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/1-show_attached_IPs +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash -# Displays all acive IPv4 addresses on the machine. - -# a different way using ifconfig but now ip is a new command and ifconfig can be missing in some os -#ifconfig | grep -Eo "inet (addr:)?([0-9]*\.){3}[0-9]*" | awk '{print $2}' - -ip -4 -o addr show | awk '{print $4}' | cut -d "/" -f 1 - diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost b/alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost deleted file mode 100755 index 4ae2491..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/100-port_listening_on_localhost +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# a script that listens on poer 98 on localhost - -nc -l localhost 98 diff --git a/alx-system_engineering-devops-main/0x08-networking_basics_2/README.md b/alx-system_engineering-devops-main/0x08-networking_basics_2/README.md deleted file mode 100644 index 5b819bb..0000000 --- a/alx-system_engineering-devops-main/0x08-networking_basics_2/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# 0x08. Networking basics #1 - -## Resource - -- [What is localhost](https://en.wikipedia.org/wiki/Localhost) -- [What is 0.0.0.0](https://en.wikipedia.org/wiki/0.0.0.0) -- [What is the hosts file](https://www.makeuseof.com/tag/modify-manage-hosts-file-linux/) -- [Netcat examples](https://www.thegeekstuff.com/2012/04/nc-command-examples/) - -## Tasks - -
-0. Change your home IP
-image - -
- -
-1. Show attached IPs
-image -
- -
-2. Port listening on localhost
-image -
diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.jpg b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.jpg deleted file mode 100644 index 7314a5b..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.jpg and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.pdf b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.pdf deleted file mode 100644 index a3b04e6..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/0-simple_web_stack.pdf and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.jpg b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.jpg deleted file mode 100644 index 35fffbb..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.jpg and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.pdf b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.pdf deleted file mode 100644 index 80156aa..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/1-distributed_web_infrastructure.pdf and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.jpg b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.jpg deleted file mode 100644 index 504f93b..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.jpg and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.pdf b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.pdf deleted file mode 100644 index 6373a88..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/2-secured_and_monitored_web_infrastructure.pdf and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.jpg b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.jpg deleted file mode 100644 index 898da20..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.jpg and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.pdf b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.pdf deleted file mode 100644 index e241bf6..0000000 Binary files a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/3-scale_up.pdf and /dev/null differ diff --git a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/README.md b/alx-system_engineering-devops-main/0x09-web_infrastructure_design/README.md deleted file mode 100644 index 6518aec..0000000 --- a/alx-system_engineering-devops-main/0x09-web_infrastructure_design/README.md +++ /dev/null @@ -1,51 +0,0 @@ -# 0x09. Web infrastructure design - -## Resource - -- [Web Infrastructure](https://youtu.be/lQNEW76KdYg) -- [What is a database](https://searchdatamanagement.techtarget.com/definition/database) -- [What’s the difference between a web server and an app server?](https://www.youtube.com/watch?v=S97eKyv2b9M) -- [DNS record types](https://pressable.com/?s=DNS&post_type=knowledgebase) -- [Single point of failure](https://en.wikipedia.org/wiki/Single_point_of_failure) -- [How to avoid downtime when deploying new code](https://softwareengineering.stackexchange.com/questions/35063/how-do-you-update-your-production-codebase-database-schema-without-causing-downt#answers-header) -- [High availability cluster (active-active/active-passive)](https://docs.oracle.com/cd/E17904_01/core.1111/e10106/intro.htm#ASHIA712) -- [What is HTTPS](https://www.instantssl.com/http-vs-https) -- [What is a firewall](https://www.webopedia.com/definitions/firewall/) -- [Load Balancing Algorithms and Techniques](https://kemptechnologies.com/load-balancer/load-balancing-algorithms-techniques/) -- [Active/Passive vs. Active/Active](https://kemptechnologies.com/fr/white-papers/unfog-confusion-active-passive-activeactive-load-balancing/) - -## Tasks - -
-0. Simple web stack
-image - -
- -
-1. Distributed web infrastructure
-image -
- -
-2. Secured and monitored web infrastructure
-image -
- -
-3. Scale up
-image - -
diff --git a/alx-system_engineering-devops-main/0x0A-configuration_management/0-create_a_file.pp b/alx-system_engineering-devops-main/0x0A-configuration_management/0-create_a_file.pp deleted file mode 100644 index 354d705..0000000 --- a/alx-system_engineering-devops-main/0x0A-configuration_management/0-create_a_file.pp +++ /dev/null @@ -1,9 +0,0 @@ -# Creates a file -file { '/tmp/school': - ensure => file, - path => '/tmp/school', - mode => '0744', - owner => 'www-data', - group => 'www-data', - content => 'I love Puppet' -} diff --git a/alx-system_engineering-devops-main/0x0A-configuration_management/1-install_a_package.pp b/alx-system_engineering-devops-main/0x0A-configuration_management/1-install_a_package.pp deleted file mode 100644 index a0164f1..0000000 --- a/alx-system_engineering-devops-main/0x0A-configuration_management/1-install_a_package.pp +++ /dev/null @@ -1,5 +0,0 @@ -# Install puppet-lint -package { 'puppet-lint': - ensure => '2.5.0', - provider => 'gem' -} diff --git a/alx-system_engineering-devops-main/0x0A-configuration_management/2-execute_a_command.pp b/alx-system_engineering-devops-main/0x0A-configuration_management/2-execute_a_command.pp deleted file mode 100644 index 2b6f661..0000000 --- a/alx-system_engineering-devops-main/0x0A-configuration_management/2-execute_a_command.pp +++ /dev/null @@ -1,5 +0,0 @@ -# execute pkill command to kill bashscript file killmenow -exec { 'pkill': - command => 'pkill -9 -f killmenow', - path => ['/usr/bin', '/usr/sbin', '/bin'] -} diff --git a/alx-system_engineering-devops-main/0x0A-configuration_management/README.md b/alx-system_engineering-devops-main/0x0A-configuration_management/README.md deleted file mode 100644 index f392670..0000000 --- a/alx-system_engineering-devops-main/0x0A-configuration_management/README.md +++ /dev/null @@ -1,44 +0,0 @@ -# 0x0A. Configuration management - -## Resource - -- [Intro to Configuration Management](https://www.digitalocean.com/community/tutorials/an-introduction-to-configuration-management) -- [Puppet resource type: file](https://puppet.com/docs/puppet/5.5/types/file.html) (*Check "Resource types" for all manifest types in the left menu*) -- [Puppet’s Declarative Language: Modeling Instead of Scripting](https://puppet.com/blog/puppets-declarative-language-modeling-instead-of-scripting/) -- [Puppet lint](http://puppet-lint.com/) -- [Puppet emacs mode](https://github.com/voxpupuli/puppet-mode) -- [Puppet CookBook](https://www.puppetcookbook.com/) - -## Installing `puppet` and `puppet-lint` - -```sh -# installing puppet and puppet-lint -wget https://apt.puppet.com/puppet7-release-focal.deb && \ - dpkg -i puppet7-release-focal.deb && \ - apt-get update && \ - apt-get install puppet-agent puppet-lint -y - -# confirming installation -puppet -V -puppet-lint -v - -# If you get an error saying puppet command not found, source the path -source /etc/profile.d/puppet-agent.sh -``` - -## Tasks - -
-0. Create a file
-image -
- -
-1. Install a package
-image -
- -
-2. Execute a command
-image -
diff --git a/alx-system_engineering-devops-main/0x0A-configuration_management/killmenow b/alx-system_engineering-devops-main/0x0A-configuration_management/killmenow deleted file mode 100755 index 48775e2..0000000 --- a/alx-system_engineering-devops-main/0x0A-configuration_management/killmenow +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -while [[ true ]] -do - sleep 2 -done diff --git a/alx-system_engineering-devops-main/0x0B-ssh/0-use_a_private_key b/alx-system_engineering-devops-main/0x0B-ssh/0-use_a_private_key deleted file mode 100755 index 2b9f66d..0000000 --- a/alx-system_engineering-devops-main/0x0B-ssh/0-use_a_private_key +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -# Allows us to connect to my server using the private key with user ubuntu -ssh -i ~/.ssh/school ubuntu@35.243.128.200 diff --git a/alx-system_engineering-devops-main/0x0B-ssh/1-create_ssh_key_pair b/alx-system_engineering-devops-main/0x0B-ssh/1-create_ssh_key_pair deleted file mode 100755 index 5ba9ba2..0000000 --- a/alx-system_engineering-devops-main/0x0B-ssh/1-create_ssh_key_pair +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -# Creates an RSA SSH key pair -ssh-keygen -f school -b 4096 -N betty diff --git a/alx-system_engineering-devops-main/0x0B-ssh/100-puppet_ssh_config.pp b/alx-system_engineering-devops-main/0x0B-ssh/100-puppet_ssh_config.pp deleted file mode 100644 index b8b4934..0000000 --- a/alx-system_engineering-devops-main/0x0B-ssh/100-puppet_ssh_config.pp +++ /dev/null @@ -1,40 +0,0 @@ -# using puppet to make changes to the default ssh config file -# so that one can connect to a server without typing a password. - -include stdlib - -file_line { 'SSH Private Key': - path => '/etc/ssh/ssh_config', - line => ' IdentityFile ~/.ssh/school', - match => '^[#]+[\s]*(?i)IdentityFile[\s]+~/.ssh/id_rsa$', - replace => true, - append_on_no_match => true -} - -# Regex match explanation -# -# ^ beginning of the line -# [#]* atleast one hash character -# [\s]* zero or more white space characters -# (?i)IdentityFile case insensitive "IdentityFile" -# [\s]+ at least one whitespace character -# ~/.ssh/id_rsa The ssh private key file path we want to replace -# $ end of the line - -file_line { 'Deny Password Auth': - path => '/etc/ssh/ssh_config', - line => ' PasswordAuthentication no', - match => '^[#]+[\s]*(?i)PasswordAuthentication[\s]+(yes|no)$', - replace => true, - append_on_no_match => true -} - -# Regex match explanation -# -# ^ beginning of the line -# [#]* atleast one hash character -# [\s]* zero or more white space characters -# (?i)PasswordAuthentication case insensitive "PasswordAuthentication" -# [\s]+ at least one whitespace character -# (yes|no) with the value "yes" or the value "no" -# $ end of the line diff --git a/alx-system_engineering-devops-main/0x0B-ssh/2-ssh_config b/alx-system_engineering-devops-main/0x0B-ssh/2-ssh_config deleted file mode 100644 index 9c74a3b..0000000 --- a/alx-system_engineering-devops-main/0x0B-ssh/2-ssh_config +++ /dev/null @@ -1,7 +0,0 @@ -# SSH Config File -# -Host web-01 - Hostname 35.243.128.200 - User ubuntu - PasswordAuthentication no - IdentityFile ~/.ssh/school diff --git a/alx-system_engineering-devops-main/0x0B-ssh/README.md b/alx-system_engineering-devops-main/0x0B-ssh/README.md deleted file mode 100644 index 3997c01..0000000 --- a/alx-system_engineering-devops-main/0x0B-ssh/README.md +++ /dev/null @@ -1,49 +0,0 @@ -# 0x0B. SSH - -## Resource - -- [What is a (physical) server - text](https://en.wikipedia.org/wiki/Server_%28computing%29#Hardware_requirement) -- [What is a (physical) server - video](https://www.youtube.com/watch?v=B1ANfsDyjeA) -- [SSH essentials](https://www.digitalocean.com/community/tutorials/ssh-essentials-working-with-ssh-servers-clients-and-keys) -- [SSH Config File](https://www.ssh.com/academy/ssh/config) -- [Public Key Authentication for SSH](https://www.ssh.com/academy/ssh/public-key-authentication) -- [How Secure Shell Works](https://www.youtube.com/watch?v=ORcvSkgdA58) -- [SSH Crash Course](https://www.youtube.com/watch?v=hQWRp-FdTpc) (*(Long, but highly informative. Watch this if configuring SSH is still confusing. It may be helpful to watch at x1.25 speed or above.*) - -### For reference: - -- [Understanding the SSH Encryption and Connection Process](https://www.digitalocean.com/community/tutorials/understanding-the-ssh-encryption-and-connection-process) -- [Secure Shell Wiki](https://en.wikipedia.org/wiki/Secure_Shell) -- [IETF RFC 4251 (Description of the SSH Protocol)](https://www.ietf.org/rfc/rfc4251.txt) -- [Internet Engineering Task Force](https://en.wikipedia.org/wiki/Internet_Engineering_Task_Force) -- [Request for Comments (RFCs)](https://en.wikipedia.org/wiki/Request_for_Comments) - -## Tasks - -
-0. Use a private key
-image -
- -
-1. Create an SSH key pair
-image -
- -
-2. Client configuration file
-image -
- -
-3. Let me in!
-image -
- -
-4. Client configuration file (w/ Puppet)
-image
- -
sudo puppet module install puppetlabs-stdlib
-
- diff --git a/alx-system_engineering-devops-main/0x0C-web_server/0-transfer_file b/alx-system_engineering-devops-main/0x0C-web_server/0-transfer_file deleted file mode 100755 index 40f81ba..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/0-transfer_file +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -# Transfers a file from our client to a server -# -# variables -path="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" -filename=$(basename "$BASH_SOURCE") -brown='\e[0;33m' -reset='\033[0m' -file="$1" -ip="$2" -user="$3" -key="$4" - -if [ $# -eq 4 ]; then - scp -i "$key" -o StrictHostKeyChecking=no "$path"/"$file" "$user"@"$ip":/home/"$user"/ -else - echo -e "Usage: ${brown}$filename PATH_TO_FILE IP USERNAME PATH_TO_SSH_KEY${reset}" -fi diff --git a/alx-system_engineering-devops-main/0x0C-web_server/1-install_nginx_web_server b/alx-system_engineering-devops-main/0x0C-web_server/1-install_nginx_web_server deleted file mode 100755 index ca3221d..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/1-install_nginx_web_server +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env bash -# Configures a new ubuntu machine by installing -# Nginx where it should be listening on port 80 -# Serve a page that would return a Hello World string -# -# colors -blue='\e[1;34m' -brown='\e[0;33m' -green='\e[1;32m' -reset='\033[0m' - -echo -e "${blue}Updating and installing ${brown}Nginx${blue}.${reset}\n" -sudo apt-get update -y -qq && \ - sudo apt-get install nginx -y - -echo -e "\n${blue}Setting up some minor stuff.${reset}\n" - -# starting nginx service -sudo service nginx start - -# allowing nginx on firewall -sudo ufw allow 'Nginx HTTP' - -# Give the user ownership to website files for easy editing -sudo chown -R "$USER":"$USER" /var/www/html -sudo chmod -R 755 /var/www - -# Backup default index -cp /var/www/html/index.nginx-debian.html /var/www/html/index.nginx-debian.html.bckp - -# Creating new index -echo -e "Hello World!" | dd status=none of=/var/www/html/index.nginx-debian.html - -# Restarting nginx -sudo service nginx restart - -echo -e "\n${green}Completed.${reset} ✅\n" diff --git a/alx-system_engineering-devops-main/0x0C-web_server/2-setup_a_domain_name b/alx-system_engineering-devops-main/0x0C-web_server/2-setup_a_domain_name deleted file mode 100644 index 9e40bcc..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/2-setup_a_domain_name +++ /dev/null @@ -1 +0,0 @@ -th3gr00t.tech diff --git a/alx-system_engineering-devops-main/0x0C-web_server/3-redirection b/alx-system_engineering-devops-main/0x0C-web_server/3-redirection deleted file mode 100755 index 267b9dd..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/3-redirection +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash -# Configures a new ubuntu machine by installing -# Nginx where it should be listening on port 80 -# Serve a page that would return a Hello World string -# -# colors -blue='\e[1;34m' -brown='\e[0;33m' -green='\e[1;32m' -reset='\033[0m' - -echo -e "${blue}Updating and installing ${brown}Nginx${blue}.${reset}\n" -sudo apt-get update -y -qq && \ - sudo apt-get install nginx -y - -echo -e "\n${blue}Setting up some minor stuff.${reset}\n" - -# starting nginx service -sudo service nginx start - -# allowing nginx on firewall -sudo ufw allow 'Nginx HTTP' - -# Give the user ownership to website files for easy editing -sudo chown -R "$USER":"$USER" /var/www/html -sudo chmod -R 755 /var/www - -# Backup default index -cp /var/www/html/index.nginx-debian.html /var/www/html/index.nginx-debian.html.bckp - -# Creating new index -echo -e "Hello World!" > /var/www/html/index.nginx-debian.html - -# Setting up /redirect_me to a youtube video -sudo sed -i '24i\ rewrite ^/redirect_me https://www.youtube.com/watch?v=QH2-TGUlwu4 permanent;' /etc/nginx/sites-available/default - -# Restarting nginx -sudo service nginx restart - -echo -e "\n${green}Completed.${reset} ✅\n" diff --git a/alx-system_engineering-devops-main/0x0C-web_server/4-not_found_page_404 b/alx-system_engineering-devops-main/0x0C-web_server/4-not_found_page_404 deleted file mode 100755 index 47bff1f..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/4-not_found_page_404 +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env bash -# Configures a new ubuntu machine by installing -# Nginx where it should be listening on port 80 -# Serve a page that would return a Hello World string -# -# colors -blue='\e[1;34m' -brown='\e[0;33m' -green='\e[1;32m' -reset='\033[0m' - -echo -e "${blue}Updating and installing ${brown}Nginx${blue}.${reset}\n" -sudo apt-get update -y -qq && \ - sudo apt-get install nginx -y - -echo -e "\n${blue}Setting up some minor stuff.${reset}\n" - -# starting nginx service -sudo service nginx start - -# allowing nginx on firewall -sudo ufw allow 'Nginx HTTP' - -# Give the user ownership to website files for easy editing -sudo chown -R "$USER":"$USER" /var/www/html -sudo chmod -R 755 /var/www - -# Backup default index -cp /var/www/html/index.nginx-debian.html /var/www/html/index.nginx-debian.html.bckp - -# Creating new index -echo -e "Hello World!" > /var/www/html/index.nginx-debian.html - -# Setting up /redirect_me to a youtube video -sudo sed -i '24i\ rewrite ^/redirect_me https://www.youtube.com/watch?v=QH2-TGUlwu4 permanent;' /etc/nginx/sites-available/default - -# Set up a 404 page -echo "Ceci n'est pas une page" >> /var/www/html/error_404.html -sudo sed -i '25i\ error_page 404 /error_404.html;' /etc/nginx/sites-available/default - -# Restarting nginx -sudo service nginx restart - -echo -e "\n${green}Completed.${reset} ✅\n" diff --git a/alx-system_engineering-devops-main/0x0C-web_server/7-puppet_install_nginx_web_server.pp b/alx-system_engineering-devops-main/0x0C-web_server/7-puppet_install_nginx_web_server.pp deleted file mode 100644 index 9920c3f..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/7-puppet_install_nginx_web_server.pp +++ /dev/null @@ -1,24 +0,0 @@ -# Setup New Ubuntu server with nginx - -exec { 'update system': - command => '/usr/bin/apt-get update', -} - -package { 'nginx': - ensure => 'installed', - require => Exec['update system'] -} - -file {'/var/www/html/index.html': - content => 'Hello World!' -} - -exec {'redirect_me': - command => 'sed -i "24i\ rewrite ^/redirect_me https://www.youtube.com/watch?v=QH2-TGUlwu4 permanent;" /etc/nginx/sites-available/default', - provider => 'shell' -} - -service {'nginx': - ensure => running, - require => Package['nginx'] -} diff --git a/alx-system_engineering-devops-main/0x0C-web_server/README.md b/alx-system_engineering-devops-main/0x0C-web_server/README.md deleted file mode 100644 index 22a7d5f..0000000 --- a/alx-system_engineering-devops-main/0x0C-web_server/README.md +++ /dev/null @@ -1,57 +0,0 @@ -# 0x0C. Web server - -

- -

- -## Resource - -
-Child Process
-image -
- -- [Background contenxt](https://www.youtube.com/watch?v=AZg4uJkEa-4) -- [How the web works](https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/How_the_Web_works) -- [Nginx](https://en.wikipedia.org/wiki/Nginx) -- [How to Configure Nginx](https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-server-blocks-virtual-hosts-on-ubuntu-16-04) -- [Root and sub domain](https://landingi.com/help/domains-vs-subdomains/) -- [HTTP requests](https://www.tutorialspoint.com/http/http_methods.htm) -- [HTTP redirection](https://moz.com/learn/seo/redirection) -- [Not found HTTP response code](https://en.wikipedia.org/wiki/HTTP_404) -- [Logs files on Linux](https://www.cyberciti.biz/faq/ubuntu-linux-gnome-system-log-viewer/) -- [RFC 7231 (HTTP/1.1)](https://datatracker.ietf.org/doc/html/rfc7231) -- [RFC 7540 (HTTP/2)](https://datatracker.ietf.org/doc/html/rfc7540) - -## Tasks - -
-0. Transfer a file to your server
-image -
- -
-1. Install nginx web server
-image -image -
- -
-2. Setup a domain name
-image -
- -
-3. Redirection
-image -
- -
-4. Not found page 404
-image -
- -
-5. Install Nginx web server (w/ Puppet)
-image -
diff --git a/alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/0-give_me_a_page b/alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/0-give_me_a_page deleted file mode 100755 index ddf4b43..0000000 --- a/alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/0-give_me_a_page +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -# Start Apache so as to return a -# page conatining Hello Holberton -service apache2 start diff --git a/alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/README.md b/alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/README.md deleted file mode 100644 index a540e00..0000000 --- a/alx-system_engineering-devops-main/0x0D-web_stack_debugging_0/README.md +++ /dev/null @@ -1,94 +0,0 @@ -# 0x0D. Web stack debugging #0 - -

- -

- -## Resource - -### Concepts - -
-Network basics
- -
- -
-Docker
- - -
-Let's first pull a Docker image and run a container:
-image -
- -Note that `docker` command will pull the Ubuntu docker container image from the Internet and run it. I let you look at the meaning of the flags using the command `docker run --help`, the main idea is that it keeps the container up and running. - -
-To execute a command on the Docker container, use *docker exec*:
-image -
- -
-If you want to connect to your Docker container and use Bash, you need to use *docker exec -ti*:
-image -
- -
-If you want to stop a container, use *docker stop*:
-image -
- -
- -
-Web stack debugging
- - -
-Test and verify your assumptions
-image -
- - - -
- -## Tasks - -
-0. Give me a page!
-image -
-
diff --git a/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/0-nginx_likes_port_80 b/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/0-nginx_likes_port_80 deleted file mode 100755 index 9c3c075..0000000 --- a/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/0-nginx_likes_port_80 +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -# configures a server to listening on port 80 of all server's active IPv4 IPs - -sudo sed -i "s/8080/80/" /etc/nginx/sites-enabled/default -sudo service nginx restart diff --git a/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/1-debugging_made_short b/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/1-debugging_made_short deleted file mode 100755 index 67fe22d..0000000 --- a/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/1-debugging_made_short +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash -# configures a server to listening on port 80 of all server's active IPv4 IPs -sudo sed -i "s/8080/80/" /etc/nginx/sites-enabled/default -sudo service nginx restart -echo "" | sudo dd status=none of=/run/nginx.pid diff --git a/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/README.md b/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/README.md deleted file mode 100644 index fb3c3e7..0000000 --- a/alx-system_engineering-devops-main/0x0E-web_stack_debugging_1/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# 0x0E. Web stack debugging #1 - -

- -

- -## Resource - -- [Resources from Web stack debugging #0](https://github.com/iAmG-r00t/alx-system_engineering-devops/tree/main/0x0D-web_stack_debugging_0#resource) - - -## Tasks - -
-0. Nginx likes port 80
-image -
- -
-1. Make it sweet and short
-image -
diff --git a/alx-system_engineering-devops-main/0x0F-load_balancer/0-custom_http_response_header b/alx-system_engineering-devops-main/0x0F-load_balancer/0-custom_http_response_header deleted file mode 100755 index a5dfbf2..0000000 --- a/alx-system_engineering-devops-main/0x0F-load_balancer/0-custom_http_response_header +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env bash -# duplicate web-01 to web-02 -# these scripts are an upgrade from the web-server scripts... - -# uncomment to see the script run in action -#set -x - -# colors -blue='\e[1;34m' -brown='\e[0;33m' -green='\e[1;32m' -reset='\033[0m' - -echo -e "${blue}Updating and doing some minor checks...${reset}\n" - -function install() { - command -v "$1" &> /dev/null - - #shellcheck disable=SC2181 - if [ $? -ne 0 ]; then - echo -e " Installing: ${brown}$1${reset}\n" - sudo apt-get update -y -qq && \ - sudo apt-get install -y "$1" -qq - echo -e "\n" - else - echo -e " ${green}${1} is already installed.${reset}\n" - fi -} - -install nginx #install nginx - -echo -e "\n${blue}Setting up some minor stuff.${reset}\n" - -# allowing nginx on firewall -sudo ufw allow 'Nginx HTTP' - -# Give the user ownership to website files for easy editing -if [ -d "/var/www" ]; then - sudo chown -R "$USER":"$USER" /var/www - sudo chmod -R 755 /var/www -else - sudo mkdir -p /var/www - sudo chown -R "$USER":"$USER" /var/www - sudo chmod -R 755 /var/www -fi - -# create directories if not present -for dir in /var/www/{html,error}; do - if ! [ -d "$dir" ]; then - mkdir -p "$dir" - fi -done - -# creating new index -echo "Hello World!" > /var/www/html/index.html - -# create new error page -echo "Ceci n'est pas une page" > /var/www/html/error_404.html - -# backup default server config file -sudo cp /etc/nginx/sites-enabled/default nginx-sites-enabled_default.backup - -server_config=\ -"server { - listen 80 default_server; - listen [::]:80 default_server; - root /var/www/html; - index index.html index.htm index.nginx-debian.html - server_name_; - add_header X-Served-By \$hostname; - location / { - try_files \$uri \$uri/ =404; - } - if (\$request_filename ~ redirect_me){ - rewrite ^ https://th3-gr00t.tk/ permanent; - } - error_page 404 /error_404.html; - location = /error_404.html { - internal; - } -}" - -#shellcheck disable=SC2154 -echo "$server_config" | sudo dd status=none of=/etc/nginx/sites-enabled/default - -if [ "$(pgrep -c nginx)" -le 0 ]; then - sudo service nginx start -else - sudo service nginx restart -fi diff --git a/alx-system_engineering-devops-main/0x0F-load_balancer/1-install_load_balancer b/alx-system_engineering-devops-main/0x0F-load_balancer/1-install_load_balancer deleted file mode 100755 index 2666d6a..0000000 --- a/alx-system_engineering-devops-main/0x0F-load_balancer/1-install_load_balancer +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env bash -# install load balancer - -# colors -blue='\e[1;34m' -brown='\e[0;33m' -green='\e[1;32m' -reset='\033[0m' - -echo -e "${blue}Updating and doing some minor checks...${reset}\n" - -function install() { - command -v "$1" &> /dev/null - - #shellcheck disable=SC2181 - if [ $? -ne 0 ]; then - echo -e " Installing: ${brown}$1${reset}\n" - sudo apt-get update -y -qq && \ - sudo apt-get install -y "$1" -qq - echo -e "\n" - else - echo -e " ${green}${1} is already installed.${reset}\n" - fi -} - -install haproxy #install haproxy - -echo -e "\n${blue}Setting up some minor stuff.${reset}\n" - -# backup default server config file -sudo cp /etc/haproxy/haproxy.cfg haproxy_default.backup - -server_config=\ -" -defaults - mode http - timeout client 15s - timeout connect 10s - timeout server 15s - timeout http-request 10s - -frontend th3gr00t-tech-frontend - bind *:80 - default_backend th3gr00t-tech-backend - -backend th3gr00t-tech-backend - balance roundrobin - server 453-web-01 35.243.128.200:80 check - server 453-web-02 3.239.120.96:80 check -" - -# shellcheck disable=SC2154 -echo "$server_config" | sudo dd status=none of=/etc/haproxy/haproxy.cfg - -# enable haproxy to be started by init script -echo "ENABLED=1" | sudo dd status=none of=/etc/default/haproxy - -if [ "$(pgrep -c haproxy)" -le 0 ]; then - sudo service haproxy start -else - sudo service haproxy restart -fi diff --git a/alx-system_engineering-devops-main/0x0F-load_balancer/2-puppet_custom_http_response_header.pp b/alx-system_engineering-devops-main/0x0F-load_balancer/2-puppet_custom_http_response_header.pp deleted file mode 100644 index 2fa71e3..0000000 --- a/alx-system_engineering-devops-main/0x0F-load_balancer/2-puppet_custom_http_response_header.pp +++ /dev/null @@ -1,30 +0,0 @@ -# Setup New Ubuntu server with nginx -# and add a custom HTTP header - -exec { 'update system': - command => '/usr/bin/apt-get update', -} - -package { 'nginx': - ensure => 'installed', - require => Exec['update system'] -} - -file {'/var/www/html/index.html': - content => 'Hello World!' -} - -exec {'redirect_me': - command => 'sed -i "24i\ rewrite ^/redirect_me https://th3-gr00t.tk/ permanent;" /etc/nginx/sites-available/default', - provider => 'shell' -} - -exec {'HTTP header': - command => 'sed -i "25i\ add_header X-Served-By \$hostname;" /etc/nginx/sites-available/default', - provider => 'shell' -} - -service {'nginx': - ensure => running, - require => Package['nginx'] -} diff --git a/alx-system_engineering-devops-main/0x0F-load_balancer/README.md b/alx-system_engineering-devops-main/0x0F-load_balancer/README.md deleted file mode 100644 index b1b7ee1..0000000 --- a/alx-system_engineering-devops-main/0x0F-load_balancer/README.md +++ /dev/null @@ -1,75 +0,0 @@ -# 0x0F. Load balancer - -

- -

- -## Resource - -
-Load balancer
- -
- -
-Web stack debugging
- - -
-Test and verify your assumptions
-image -
- - - -
- -- [Introduction to load-balancing and HAproxy](https://www.digitalocean.com/community/tutorials/an-introduction-to-haproxy-and-load-balancing-concepts) -- [HAProxy Configuration Basics: Load Balance Your Servers](https://www.haproxy.com/blog/haproxy-configuration-basics-load-balance-your-servers/) -- [The Four Essential Sections of an HAProxy Configuration](https://www.haproxy.com/blog/the-four-essential-sections-of-an-haproxy-configuration/) -- [HTTP Header](https://www.techopedia.com/definition/27178/http-header) -- [Debian/Ubuntu HAProxy packages](https://haproxy.debian.net/) - -## Tasks - -
-0. Double the number of webservers
-image -
- -
-1. Install your load balancer
-image -
- -
-2. Add a custom HTTP header with Puppet
-image -
diff --git a/alx-system_engineering-devops-main/0x10-https_ssl/0-world_wide_web b/alx-system_engineering-devops-main/0x10-https_ssl/0-world_wide_web deleted file mode 100755 index 7ea7c76..0000000 --- a/alx-system_engineering-devops-main/0x10-https_ssl/0-world_wide_web +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env bash -# Displays informtation about subdomains. - -# uncomment for debugging purposes. -#set -x - -# for the checker to work please remove the colors. - -# colors -blue='\e[1;34m' -brown='\e[0;33m' -reset='\033[0m' - -# variables & parameters -subdomains=( "www" "lb-01" "web-01" "web-02" ) -domain="$1" -sub="$2" - -dig_cmd () { - # func variables - sub="$2" - INFO="$(dig "$sub.$domain" | grep -A1 'ANSWER SECTION:' | awk 'NR==2')" - IP=$(echo "$INFO" | awk '{print $5}') - RECORD=$(echo "$INFO" | awk '{print $4}') - - echo -e "${brown}The subdomain ${blue}$sub${brown} is a ${blue}$RECORD${brown} record and points to ${blue}$IP${reset}" -} - -if [ $# -eq 1 ]; then - for subs in "${subdomains[@]}"; do - dig_cmd "$domain" "$subs" - done -elif [ $# -eq 2 ]; then - dig_cmd "$domain" "$sub" -fi diff --git a/alx-system_engineering-devops-main/0x10-https_ssl/1-haproxy_ssl_termination b/alx-system_engineering-devops-main/0x10-https_ssl/1-haproxy_ssl_termination deleted file mode 100644 index 53dc43f..0000000 --- a/alx-system_engineering-devops-main/0x10-https_ssl/1-haproxy_ssl_termination +++ /dev/null @@ -1,23 +0,0 @@ -global - log /dev/log local0 - stats socket /run/haproxy/admin.sock mode 660 level admin - -defaults - log global - mode http - option httplog - timeout connect 10s - timeout client 30s - timeout server 30s - -frontend th3gr00t-tech-frontend - bind *:80 - bind *:443 ssl crt /etc/haproxy/certs/th3gr00t.tech.pem - http-request redirect scheme https unless { ssl_fc } - http-request set-header X-Forwarded-Proto https - default_backend th3gr00t-tech-backend - -backend th3gr00t-tech-backend - balance roundrobin - server 453-web-01 35.243.128.200:80 check - server 453-web-02 3.239.120.96:80 check diff --git a/alx-system_engineering-devops-main/0x10-https_ssl/100-redirect_http_to_https b/alx-system_engineering-devops-main/0x10-https_ssl/100-redirect_http_to_https deleted file mode 100644 index dee4a9c..0000000 --- a/alx-system_engineering-devops-main/0x10-https_ssl/100-redirect_http_to_https +++ /dev/null @@ -1,23 +0,0 @@ -global - log /dev/log local0 - stats socket /run/haproxy/admin.sock mode 660 level admin - -defaults - log global - mode http - option httplog - timeout connect 10s - timeout client 30s - timeout server 30s - -frontend th3gr00t-tech-frontend - bind *:80 - bind *:443 ssl crt /etc/haproxy/certs/th3gr00t.tech.pem - http-request redirect scheme https code 301 unless { ssl_fc } - http-request set-header X-Forwarded-Proto https - default_backend th3gr00t-tech-backend - -backend th3gr00t-tech-backend - balance roundrobin - server 453-web-01 35.243.128.200:80 check - server 453-web-02 3.239.120.96:80 check diff --git a/alx-system_engineering-devops-main/0x10-https_ssl/README.md b/alx-system_engineering-devops-main/0x10-https_ssl/README.md deleted file mode 100644 index 2769cf8..0000000 --- a/alx-system_engineering-devops-main/0x10-https_ssl/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# 0x10. HTTPS SSL - -

- -

- -## Resource - -- [What is HTTPS?](https://www.instantssl.com/http-vs-https) -- [What are the 2 main elements that SSL is providing](https://www.sslshopper.com/why-ssl-the-purpose-of-using-ssl-certificates.html) -- [HAProxy SSL termination on Ubuntu16.04](https://devops.ionos.com/tutorials/install-and-configure-haproxy-load-balancer-on-ubuntu-1604/) -- [SSL termination](https://en.wikipedia.org/wiki/TLS_termination_proxy) -- [Bash function](https://tldp.org/LDP/abs/html/complexfunct.html) -- [How to Secure HAProxy with Let's Encrypt on Ubuntu 14.04](https://www.digitalocean.com/community/tutorials/how-to-secure-haproxy-with-let-s-encrypt-on-ubuntu-14-04) -- [HAProxy SSL Termination](https://www.haproxy.com/blog/haproxy-ssl-termination/) - -## Tasks - -
-0. World wide web
-image -
- -
-1. HAproxy SSL termination
-image -
- -
-2. No loophole in your website traffic
-image -
diff --git a/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/0-blog_post b/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/0-blog_post deleted file mode 100644 index 762ba6a..0000000 --- a/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/0-blog_post +++ /dev/null @@ -1 +0,0 @@ -https://gr00t.notion.site/What-Happens-846e145ce64f475f94f5a8bc713f171e diff --git a/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/1-what_happen_when_diagram b/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/1-what_happen_when_diagram deleted file mode 100644 index 762ba6a..0000000 --- a/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/1-what_happen_when_diagram +++ /dev/null @@ -1 +0,0 @@ -https://gr00t.notion.site/What-Happens-846e145ce64f475f94f5a8bc713f171e diff --git a/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/README.md b/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/README.md deleted file mode 100644 index 58f23b0..0000000 --- a/alx-system_engineering-devops-main/0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# 0x11. What happens when you type holbertonschool.com in your browser and press Enter - -

- -

- -
-Background Context - -- Being a Full-Stack Software Engineer means you’re comfortable interacting with any layer of the stack. -- A way to easily assess this is to simply ask an engineer to explain how a software system works. They can have a general overview of the flow or can choose to dig deep in a certain area. -- Let’s practice by exploring the infrastructure side (network, servers, security…) of the question. - -
- -
-0. What happens when...
-image -
- -
-1. Everything's better with a pretty diagram
- -image - - - - -
diff --git a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/0-iamsomeoneelse b/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/0-iamsomeoneelse deleted file mode 100755 index 1cd1e57..0000000 --- a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/0-iamsomeoneelse +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -# Runs whoami command under the user passed as an argument -su "$1" -s /bin/bash -c 'whoami' diff --git a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/1-run_nginx_as_nginx b/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/1-run_nginx_as_nginx deleted file mode 100755 index 51d8f09..0000000 --- a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/1-run_nginx_as_nginx +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash -# Fixes the issue with the server -chmod 644 /etc/nginx/nginx.conf -sed -Ei 's/\s*#?\s*user .*/user nginx;/' /etc/nginx/nginx.conf -sed -Ei 's/(listen (\[::\]:)?80) /\180 /' /etc/nginx/sites-enabled/default -pkill apache2 -su nginx -s /bin/bash -c 'service nginx restart' diff --git a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/100-fix_in_7_lines_or_less b/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/100-fix_in_7_lines_or_less deleted file mode 100755 index 51d8f09..0000000 --- a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/100-fix_in_7_lines_or_less +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash -# Fixes the issue with the server -chmod 644 /etc/nginx/nginx.conf -sed -Ei 's/\s*#?\s*user .*/user nginx;/' /etc/nginx/nginx.conf -sed -Ei 's/(listen (\[::\]:)?80) /\180 /' /etc/nginx/sites-enabled/default -pkill apache2 -su nginx -s /bin/bash -c 'service nginx restart' diff --git a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/README.md b/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/README.md deleted file mode 100644 index e8e021f..0000000 --- a/alx-system_engineering-devops-main/0x12-web_stack_debugging_2/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# 0x12. Web stack debugging #2 - -

- -

- -## Tasks - -
-0. Run software as another user
-power -image -
- -
-1. Run Nginx as Nginx
-image -
- -
-2. 7 lines or less
-image -
diff --git a/alx-system_engineering-devops-main/0x13-firewall/0-block_all_incoming_traffic_but b/alx-system_engineering-devops-main/0x13-firewall/0-block_all_incoming_traffic_but deleted file mode 100644 index 2f3a10d..0000000 --- a/alx-system_engineering-devops-main/0x13-firewall/0-block_all_incoming_traffic_but +++ /dev/null @@ -1,8 +0,0 @@ -sudo apt-get install ufw -y -sudo ufw default deny incoming -sudo ufw default allow outgoing -sudo ufw allow 22/tcp -sudo ufw allow 443/tcp -sudo ufw allow 80/tcp -sudo ufw enable -y -sudo ufw status diff --git a/alx-system_engineering-devops-main/0x13-firewall/100-port_forwarding b/alx-system_engineering-devops-main/0x13-firewall/100-port_forwarding deleted file mode 100644 index bbe4529..0000000 --- a/alx-system_engineering-devops-main/0x13-firewall/100-port_forwarding +++ /dev/null @@ -1,83 +0,0 @@ -# -# /etc/ufw/before.rules -# -# rules.before -# -# Rules that should be run before the ufw command line added rules. Custom -# rules should be added to one of these chains: -# ufw-before-input -# ufw-before-output -# ufw-before-forward -# - -# Don't delete these required lines, otherwise there will be errors -*filter -:ufw-before-input - [0:0] -:ufw-before-output - [0:0] -:ufw-before-forward - [0:0] -:ufw-not-local - [0:0] -# End required lines - -# Allow port forwarding from port 8080/TCP to port 80/TCP -*nat -:PREROUTING ACCEPT [0:0] --A PREROUTING -p tcp --dport 8080 -j REDIRECT --to-port 80 -COMMIT - - -# allow all on loopback --A ufw-before-input -i lo -j ACCEPT --A ufw-before-output -o lo -j ACCEPT - -# quickly process packets for which we already have a connection --A ufw-before-input -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT --A ufw-before-output -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT --A ufw-before-forward -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT - -# drop INVALID packets (logs these in loglevel medium and higher) --A ufw-before-input -m conntrack --ctstate INVALID -j ufw-logging-deny --A ufw-before-input -m conntrack --ctstate INVALID -j DROP - -# ok icmp codes for INPUT --A ufw-before-input -p icmp --icmp-type destination-unreachable -j ACCEPT --A ufw-before-input -p icmp --icmp-type time-exceeded -j ACCEPT --A ufw-before-input -p icmp --icmp-type parameter-problem -j ACCEPT --A ufw-before-input -p icmp --icmp-type echo-request -j ACCEPT - -# ok icmp code for FORWARD --A ufw-before-forward -p icmp --icmp-type destination-unreachable -j ACCEPT --A ufw-before-forward -p icmp --icmp-type time-exceeded -j ACCEPT --A ufw-before-forward -p icmp --icmp-type parameter-problem -j ACCEPT --A ufw-before-forward -p icmp --icmp-type echo-request -j ACCEPT - -# allow dhcp client to work --A ufw-before-input -p udp --sport 67 --dport 68 -j ACCEPT - -# -# ufw-not-local -# --A ufw-before-input -j ufw-not-local - -# if LOCAL, RETURN --A ufw-not-local -m addrtype --dst-type LOCAL -j RETURN - -# if MULTICAST, RETURN --A ufw-not-local -m addrtype --dst-type MULTICAST -j RETURN - -# if BROADCAST, RETURN --A ufw-not-local -m addrtype --dst-type BROADCAST -j RETURN - -# all other non-local packets are dropped --A ufw-not-local -m limit --limit 3/min --limit-burst 10 -j ufw-logging-deny --A ufw-not-local -j DROP - -# allow MULTICAST mDNS for service discovery (be sure the MULTICAST line above -# is uncommented) --A ufw-before-input -p udp -d 224.0.0.251 --dport 5353 -j ACCEPT - -# allow MULTICAST UPnP for service discovery (be sure the MULTICAST line above -# is uncommented) --A ufw-before-input -p udp -d 239.255.255.250 --dport 1900 -j ACCEPT - -# don't delete the 'COMMIT' line or these rules won't be processed -COMMIT diff --git a/alx-system_engineering-devops-main/0x13-firewall/README.md b/alx-system_engineering-devops-main/0x13-firewall/README.md deleted file mode 100644 index 371bd2e..0000000 --- a/alx-system_engineering-devops-main/0x13-firewall/README.md +++ /dev/null @@ -1,96 +0,0 @@ -# 0x13. Firewall - -

- -

- -### Your servers without a firewall... - -

- -

- - -## Resource - -- [What is a firewall](https://en.wikipedia.org/wiki/Firewall_%28computing%29) -- [Port forwarding with iptables](https://www.cogini.com/blog/port-forwarding-with-iptables/) - -## Tasks - -
-0. Block all incoming traffic but
-image -
- -
-1. Port forwarding
- -Firewalls can not only filter requests, they can also forward them. - -Requirements: - - - Configure web-01 so that its firewall redirects port `8080/TCP` to port `80/TCP`. - - Your answer file should be a copy of the `ufw` configuration file that you modified to make this happen -Terminal in `web-01`: - -```sh -root@03-web-01:~# netstat -lpn -Active Internet connections (only servers) -Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name -tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 2473/nginx -tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 978/sshd -tcp6 0 0 :::80 :::* LISTEN 2473/nginx -tcp6 0 0 :::22 :::* LISTEN 978/sshd -udp 0 0 0.0.0.0:68 0.0.0.0:* 594/dhclient -udp 0 0 0.0.0.0:54432 0.0.0.0:* 594/dhclient -udp6 0 0 :::32563 :::* 594/dhclient -Active UNIX domain sockets (only servers) -Proto RefCnt Flags Type State I-Node PID/Program name Path -unix 2 [ ACC ] SEQPACKET LISTENING 7175 433/systemd-udevd /run/udev/control -unix 2 [ ACC ] STREAM LISTENING 6505 1/init @/com/ubuntu/upstart -unix 2 [ ACC ] STREAM LISTENING 8048 741/dbus-daemon /var/run/dbus/system_bus_socket -unix 2 [ ACC ] STREAM LISTENING 8419 987/acpid /var/run/acpid.socket -root@03-web-01:~# -root@03-web-01:~# grep listen /etc/nginx/sites-enabled/default - listen 80 default_server; - listen [::]:80 default_server ipv6only=on; - # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 -# listen 8000; -# listen somename:8080; -# listen 443; -root@03-web-01:~# -``` - -- My web server `nginx` is only listening on port `80` -- `netstat` shows that nothing is listening on `8080` -Terminal in `web-02`: - -```sh -ubuntu@03-web-02:~$ curl -sI web-01.holberton.online:80 -HTTP/1.1 200 OK -Server: nginx/1.4.6 (Ubuntu) -Date: Tue, 07 Mar 2017 02:14:41 GMT -Content-Type: text/html -Content-Length: 612 -Last-Modified: Tue, 04 Mar 2014 11:46:45 GMT -Connection: keep-alive -ETag: "5315bd25-264" -Accept-Ranges: bytes - -ubuntu@03-web-02:~$ curl -sI web-01.holberton.online:8080 -HTTP/1.1 200 OK -Server: nginx/1.4.6 (Ubuntu) -Date: Tue, 07 Mar 2017 02:14:43 GMT -Content-Type: text/html -Content-Length: 612 -Last-Modified: Tue, 04 Mar 2014 11:46:45 GMT -Connection: keep-alive -ETag: "5315bd25-264" -Accept-Ranges: bytes - -ubuntu@03-web-02:~$ -``` -I use curl to query `web-01.holberton.online`, and since my firewall is forwarding the ports, I get a `HTTP 200` response on port `80/TCP` and also on port `8080/TCP`. - -
diff --git a/alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_primary b/alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_primary deleted file mode 100644 index c330089..0000000 --- a/alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_primary +++ /dev/null @@ -1,19 +0,0 @@ -# -# The MySQL Server configuration file. -# - -[mysqld] -pid-file = /var/run/mysqld/mysqld.pid -socket = /var/run/mysqld/mysqld.sock -datadir = /var/lib/mysql -log-error = /var/log/mysql/error.log -# By default we only accept connections from localhost -bind-address = 0.0.0.0 -# Disabling symbolic-links is recommended to prevent assorted security risks -symbolic-links=0 -# Distinguish servers in a replication setup -server-id = 1 -# MySQL's Binary Log File -log_bin = /var/log/mysql/mysql-bin.log -# Database we want to replicate -binlog_do_db = tyrell_corp diff --git a/alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_replica b/alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_replica deleted file mode 100644 index 00dbaaf..0000000 --- a/alx-system_engineering-devops-main/0x14-mysql/4-mysql_configuration_replica +++ /dev/null @@ -1,21 +0,0 @@ -# -# The MySQL Server configuration file. -# - -[mysqld] -pid-file = /var/run/mysqld/mysqld.pid -socket = /var/run/mysqld/mysqld.sock -datadir = /var/lib/mysql -log-error = /var/log/mysql/error.log -# By default we only accept connections from localhost -bind-address = 127.0.0.1 -# Disabling symbolic-links is recommended to prevent assorted security risks -symbolic-links=0 -# Distinguish servers in a replication setup -server-id = 2 -# MySQL's Binary Log File -log_bin = /var/log/mysql/mysql-bin.log -# Database we want to replicate -binlog_do_db = tyrell_corp -# Defines the location of the replica's relay log -relay-log = /var/log/mysql/mysql-relay-bin.log diff --git a/alx-system_engineering-devops-main/0x14-mysql/5-mysql_backup b/alx-system_engineering-devops-main/0x14-mysql/5-mysql_backup deleted file mode 100755 index ce204ee..0000000 --- a/alx-system_engineering-devops-main/0x14-mysql/5-mysql_backup +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -# backup and compress my databases - -# variables -day=$(date +"%d") -month=$(date +"%m") -year=$(date +"%Y") -file_name="$day-$month-$year.tar.gz" - -mysqldump --all-databases -u root --password="$1" > backup.sql -tar -czvf "$file_name" backup.sql diff --git a/alx-system_engineering-devops-main/0x14-mysql/README.md b/alx-system_engineering-devops-main/0x14-mysql/README.md deleted file mode 100644 index 6892900..0000000 --- a/alx-system_engineering-devops-main/0x14-mysql/README.md +++ /dev/null @@ -1,138 +0,0 @@ -# 0x14. MySQL - -

- - -## Resource - -- [What is a database](https://searchdatamanagement.techtarget.com/definition/database) -- [What is a database primary/replicate cluster](https://www.digitalocean.com/community/tutorials/how-to-choose-a-redundancy-plan-to-ensure-high-availability#sql-replication) -- [MySQL primary/replicate setup](https://www.digitalocean.com/community/tutorials/how-to-set-up-replication-in-mysql) -- [Build a robust database backup strategy](https://www.databasejournal.com/ms-sql/developing-a-sql-server-backup-strategy/) -- [Privileges Provided by MySQL](https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_replication-client) (***Replication Client***) -- [Creating User for Replication](https://dev.mysql.com/doc/refman/8.0/en/replication-howto-repuser.html) -- [Setting up replicas](https://dev.mysql.com/doc/refman/5.7/en/replication-setup-replicas.html) (***MySQL 5.7.x***) - -## Tasks - -

-0. Install MySQL
-image -
- -
-1. Let us in!
- -image -```sh -mysql> CREATE USER 'holberton_user'@'localhost' IDENTIFIED BY 'projectcorrection280hbtn'; -mysql> GRANT REPLICATION CLIENT ON *.* to 'holberton_user'@'localhost'; -mysql> FLUSH PRIVILEGES; -``` - -
- -
-2. If only you could see what I've seen with your eyes
- -image -```sh -mysql> CREATE DATABASE tyrell_corp; -mysql> USE tyrell_corp; -mysql> CREATE TABLE nexus6 (id INT, name VARCHAR(256)); -mysql> INSERT INTO nexus6 (id, name) VALUES ('1', 'Leon'); -mysql> GRANT SELECT ON tyrell_corp.nexus6 TO 'holberton_user'@'localhost'; -``` - -
- -
-3. Quite an experience to live in fear, isn't it?
- -image -```sh -msql> CREATE USER 'replica_user'@'%' IDENTIFIED BY 'password'; -mysql> GRANT SELECT ON mysql.user TO 'holberton_user'@'localhost'; -mysql> GRANT REPLICATION SLAVE ON *.* TO 'replica_user'@'%'; -``` - -
- -
-4. Setup a Primary-Replica infrastructure using MySQL
- -09e83e914f0d6865ce320a47f2f14837a5b190b6 -image -image -image - -+ [MySQL primary configuration](./4-mysql_configuration_primary) -+ [MySQL replica configuration](./4-mysql_configuration_replica) - -
- -
-5. MySQL backup
- -[![IMAGE ALT TEXT HERE](https://i.postimg.cc/3NtKg0gR/verizon.jpg)](https://www.youtube.com/watch?v=ANU-oSE5_hU) -image - -```sh -ubuntu@03-web-01:~$ ls -5-mysql_backup -ubuntu@03-web-01:~$ ./5-mysql_backup mydummypassword -backup.sql -ubuntu@03-web-01:~$ ls -01-03-2017.tar.gz 5-mysql_backup backup.sql -ubuntu@03-web-01:~$ more backup.sql --- MySQL dump 10.13 Distrib 5.7.25, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: --- ------------------------------------------------------ --- Server version 5.7.25-0ubuntu0.14.04.1 - -/*!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 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!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 */; - --- --- Current Database: `tyrell_corp` --- - -CREATE DATABASE /*!32312 IF NOT EXISTS*/ `tyrell_corp` /*!40100 DEFAULT CHARACTER SET latin1 */; - -USE `tyrell_corp`; - --- --- Table structure for table `nexus6` --- - -DROP TABLE IF EXISTS `nexus6`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `nexus6` ( - `id` int(6) unsigned NOT NULL AUTO_INCREMENT, - `firstname` varchar(30) NOT NULL, - `lastname` varchar(30) NOT NULL, - `email` varchar(50) DEFAULT NULL, - `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; -ubuntu@03-web-01:~$ -ubuntu@03-web-01:~$ file 01-03-2017.tar.gz -01-03-2017.tar.gz: gzip compressed data, from Unix, last modified: Wed Mar 1 23:38:09 2017 -ubuntu@03-web-01:~$ -``` - -+ [Backup script](./5-mysql_backup) - -
diff --git a/alx-system_engineering-devops-main/0x15-api/0-gather_data_from_an_API.py b/alx-system_engineering-devops-main/0x15-api/0-gather_data_from_an_API.py deleted file mode 100644 index 9ab98b2..0000000 --- a/alx-system_engineering-devops-main/0x15-api/0-gather_data_from_an_API.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/python3 -'''A script that gathers employee name completed -tasks and total number of tasks from an API -''' - -import re -import requests -import sys - -REST_API = "https://jsonplaceholder.typicode.com" - -if __name__ == '__main__': - if len(sys.argv) > 1: - if re.fullmatch(r'\d+', sys.argv[1]): - id = int(sys.argv[1]) - emp_req = requests.get('{}/users/{}'.format(REST_API, id)).json() - task_req = requests.get('{}/todos'.format(REST_API)).json() - emp_name = emp_req.get('name') - tasks = list(filter(lambda x: x.get('userId') == id, task_req)) - completed_tasks = list(filter(lambda x: x.get('completed'), tasks)) - print( - 'Employee {} is done with tasks({}/{}):'.format( - emp_name, - len(completed_tasks), - len(tasks) - ) - ) - if len(completed_tasks) > 0: - for task in completed_tasks: - print('\t {}'.format(task.get('title'))) diff --git a/alx-system_engineering-devops-main/0x15-api/README.md b/alx-system_engineering-devops-main/0x15-api/README.md deleted file mode 100644 index 2f2670b..0000000 --- a/alx-system_engineering-devops-main/0x15-api/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# 0x15. API - -## Resource - -- [Friends don’t let friends program in shell script](https://www.turnkeylinux.org/blog/friends-dont-let-friends-program-shell-script) -- [What is an API](https://www.webopedia.com/definitions/api/) -- [What is an API? In English, please](https://www.freecodecamp.org/news/what-is-an-api-in-english-please-b880a3214a82/) -- [What is a REST API](https://www.sitepoint.com/rest-api/) -- [What are microservices](https://smartbear.com/solutions/microservices/) -- [PEP8 Python style - having a clean code respecting style guide is really appreciated in the industry](https://www.python.org/dev/peps/pep-0008/) - -## Tasks - -
-0. Gather data from an API
-image -
diff --git a/alx-system_engineering-devops-main/README.md b/alx-system_engineering-devops-main/README.md deleted file mode 100644 index 5c55ebe..0000000 --- a/alx-system_engineering-devops-main/README.md +++ /dev/null @@ -1,35 +0,0 @@ -![img](https://assets.imaginablefutures.com/media/images/ALX_Logo.max-200x150.png) - -# 0x00 ALX System Engineering and DevOps 💥 - ->Learning bash, scripting, networking and web infra right now, been wanting to get on this. It's going to be FUN !!. - -## About - -- This repository consists of all the .Subject projects done with [ALX Africa](https://www.alxafrica.com/) Full stack Software Engineering course in partnership with [Holberton School](https://www.holbertonschool.com/) by [th3\_gr00t](https://th3-gr00t.tk/). - ---- - -- [0x00](./0x00-shell_basics) : Writing basic bash scripts that perform basic stuff. -- [0x01](./0x01-shell_permissions) : Linux permissions. -- [0x02](./0x02-shell_redirections) : Shell, I/O Redirections and filters. -- [0x03](./0x03-shell_variables_expansions) : Shell, init files, variables and expansions. -- [0x04](./0x04-loops_conditions_and_parsing) : Loops, conditions and parsing. -- [0x05](./0x05-processes_and_signals) : Processes and signals. -- [0x06](./0x06-regular_expressions) : Regular expression. -- [0x07](./0x07-networking_basics) : Networking basics #0. -- [0x08](./0x08-networking_basics_2) : Networking basics #1. -- [0x09](./0x09-web_infrastructure_design) : Web infrastructure design. -- [0x0A](./0x0A-configuration_management) : Configuration management. -- [0x0B](./0x0B-ssh) : SSH. -- [0x0C](./0x0C-web_server) : Web server. -- [0x0D](./0x0D-web_stack_debugging_0) : Web stack debugging #0. -- [0x0E](./0x0E-web_stack_debugging_1) : Web stack debugging #1. -- [0x0F](./0x0F-load_balancer) : Load balancer. -- [0x10](./0x10-https_ssl) : HTTPS SSL. -- [0x11](./0x11-what_happens_when_your_type_google_com_in_your_browser_and_press_enter) : What happens when you type holbertonschool.com in your browser and press Enter. -- [0x12](./0x12-web_stack_debugging_2) : Web stack debugging #2. -- [0x13](./0x13-firewall) : Firewall. -- [0x14](./0x14-mysql) : MySQL. -- [0x15](./0x15-api) : API. -- [Attack is the best defense.](./attack_is_the_best_defense) diff --git a/alx-system_engineering-devops-main/attack_is_the_best_defense/0-sniffing b/alx-system_engineering-devops-main/attack_is_the_best_defense/0-sniffing deleted file mode 100644 index 2862870..0000000 --- a/alx-system_engineering-devops-main/attack_is_the_best_defense/0-sniffing +++ /dev/null @@ -1 +0,0 @@ -mypassword9898! diff --git a/alx-system_engineering-devops-main/attack_is_the_best_defense/1-dictionary_attack b/alx-system_engineering-devops-main/attack_is_the_best_defense/1-dictionary_attack deleted file mode 100644 index ad366d9..0000000 --- a/alx-system_engineering-devops-main/attack_is_the_best_defense/1-dictionary_attack +++ /dev/null @@ -1 +0,0 @@ -password123 diff --git a/alx-system_engineering-devops-main/attack_is_the_best_defense/README.md b/alx-system_engineering-devops-main/attack_is_the_best_defense/README.md deleted file mode 100644 index 814e8a1..0000000 --- a/alx-system_engineering-devops-main/attack_is_the_best_defense/README.md +++ /dev/null @@ -1,83 +0,0 @@ -# Attack is the best defense - -## Resource - -- [Network sniffing](https://www.lifewire.com/definition-of-sniffer-817996) -- [ARP spoofing](https://www.veracode.com/security/arp-spoofing) -- [Connect to SendGrid’s SMTP relay using telnet](https://docs.sendgrid.com/ui/account-and-settings/troubleshooting-delays-and-latency) -- [What is Docker and why is it popular?](https://www.zdnet.com/article/what-is-docker-and-why-is-it-so-darn-popular/) -- [Dictionary attack](https://en.wikipedia.org/wiki/Dictionary_attack) - -## Tasks - -
-0. ARP spoofing and sniffing unencrypted traffic
- -image - -```sh -sylvain@ubuntu$ telnet smtp.sendgrid.net 587 -Trying 167.89.121.145... -Connected to smtp.sendgrid.net. -Escape character is '^]'. -220 SG ESMTP service ready at ismtpd0013p1las1.sendgrid.net -EHLO ismtpd0013p1las1.sendgrid.net -250-smtp.sendgrid.net -250-8BITMIME -250-PIPELINING -250-SIZE 31457280 -250-STARTTLS -250-AUTH PLAIN LOGIN -250 AUTH=PLAIN LOGIN -auth login -334 VXNlcm5hbWU6 -VGhpcyBpcyBteSBsb2dpbg== -334 UGFzc3dvcmQ6 -WW91IHJlYWxseSB0aG91Z2h0IEkgd291bGQgbGV0IG15IHBhc3N3b3JkIGhlcmU/ISA6RA== -235 Authentication successful -mail from: sylvain@kalache.fr -250 Sender address accepted -rcpt to: julien@google.com -250 Recipient address accepted -data -354 Continue -To: Julien -From: Sylvain -Subject: Hello from the insecure world - -I am sending you this email from a Terminal. -. -250 Ok: queued as Aq1zhMM3QYeEprixUiFYNg -quit -221 See you later -Connection closed by foreign host. -sylvain@ubuntu$ -``` - -image - -```sh -# Run this when there is no other process running, -# ...tried to find a way to specifically filter the specif process but -# ...the best option was to run it in a virtual enviroment -# ...also base64 should be your best friend -sudo tcpdump -A -l -``` - -- [user\_authenticating\_into\_server](./user_authenticating_into_server) binary script file. - -
- -
-1. Dictionary attack
- -image - -- [Wordlist](https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt) **Rockyou.txt** - -```sh -# command -hydra -V -s 2222 -l sylvain -P rockyou.txt 127.0.0.1 ssh -t 64 -``` - -
diff --git a/alx-system_engineering-devops-main/attack_is_the_best_defense/user_authenticating_into_server b/alx-system_engineering-devops-main/attack_is_the_best_defense/user_authenticating_into_server deleted file mode 100755 index d879e6d..0000000 Binary files a/alx-system_engineering-devops-main/attack_is_the_best_defense/user_authenticating_into_server and /dev/null differ diff --git a/command_line_for_the_win/0-first_9_tasks.png b/command_line_for_the_win/0-first_9_tasks.png old mode 100755 new mode 100644 index 9b9aca8..e72a72d Binary files a/command_line_for_the_win/0-first_9_tasks.png and b/command_line_for_the_win/0-first_9_tasks.png differ diff --git a/command_line_for_the_win/1-next_9_tasks.png b/command_line_for_the_win/1-next_9_tasks.png new file mode 100644 index 0000000..840a53e Binary files /dev/null and b/command_line_for_the_win/1-next_9_tasks.png differ diff --git a/command_line_for_the_win/2-next_9_tasks.png b/command_line_for_the_win/2-next_9_tasks.png new file mode 100644 index 0000000..5c0f933 Binary files /dev/null and b/command_line_for_the_win/2-next_9_tasks.png differ diff --git a/command_line_for_the_win/README.md b/command_line_for_the_win/README.md index d29bec7..2e63721 100644 --- a/command_line_for_the_win/README.md +++ b/command_line_for_the_win/README.md @@ -1,5 +1 @@ -# Command Line for the Win - -For this project, I completed the [Commandline Challenge](https://cmdchallenge.com/). -Each file is a PNG screenshot signifying my completion of all levels. - +# Solutions to the command line challenge \ No newline at end of file